-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathconstants.js
263 lines (240 loc) · 8.79 KB
/
constants.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
export const fileStoreProviders = {
LOCAL: "local",
AMAZON_S3: "amazon-s3",
GCP_STORAGE: "gcp-storage"
}
export const endpointTypes = {
INTERNAL: "internal",
EXTERNAL: "external",
PREPARED: "prepared"
}
export const permissionVerbs = {
READ: "read",
MODIFY: "modify"
}
export const configResourceTypes = {
DB_CONFIG: "db-config",
DB_RULES: "db-rule",
DB_SCHEMA: "db-schema",
DB_PREPARED_QUERIES: "db-prepared-query",
FILESTORE_CONFIG: "filestore-config",
FILESTORE_RULES: "filestore-rule",
CACHE_CONFIG: "cache-config",
EVENTING_CONFIG: "eventing-config",
EVENTING_TRIGGERS: "eventing-trigger",
EVENTING_RULES: "eventing-rule",
EVENTING_SCHEMA: "eventing-schema",
REMOTE_SERVICES: "remote-service",
SERVICES: "service",
SERVICE_LOGS: "service-logs",
SERVICE_ROUTES: "service-route",
SERVICE_ROlES: "service-role",
SECRETS: "secret",
INGRESS_ROUTES: "ingress-route",
INGRESS_GLOBAL: "ingress-global",
USER_MANAGEMENT: "auth-provider",
PROJECT_CONFIG: "project",
CLUSTER_CONFIG: "cluster",
LETSENCRYPT: "letsencrypt",
INTEGRATIONS: "integration",
INTEGRATION_HOOKS: "integration-hook"
}
export const apiResourceTypes = {
DB_CREATE: "db-create",
DB_READ: "db-read",
DB_UPDATE: "db-update",
DB_DELETE: "db-delete",
DB_AGGREGATE: "db-aggregate",
DB_PREPARED_QUERY: "db-prepared-query",
EVENTING_QUEUE: "eventing-queue",
EVENTING_LOGS: "eventing-logs",
FILE_CREATE: "file-create",
FILE_READ: "file-read",
FILE_DELETE: "file-delete",
SERVICE_CALL: "service-call",
INTERNAL_API_ACCESS: "internal-api-access"
}
// These are UI modules/sections (sidenav items). These should not be confused with the space cloud modules
export const projectModules = {
OVERVIEW: "overview",
DATABASE: "database",
FILESTORE: "file-storage",
CACHE: "cache",
EVENTING: "eventing",
REMOTE_SERVICES: "remote-services",
DEPLOYMENTS: "deployments",
SECRETS: "secrets",
INGRESS_ROUTES: "ingress-routes",
USER_MANAGEMENT: "auth-provider",
INTEGRATIONS: "integrations",
EXPLORER: "explorer",
SETTINGS: "settings",
SECURITY_RULES: "security-rules"
}
export const moduleResources = {
[projectModules.OVERVIEW]: [],
[projectModules.DATABASE]: [configResourceTypes.DB_CONFIG, configResourceTypes.DB_RULES, configResourceTypes.DB_SCHEMA, configResourceTypes.DB_PREPARED_QUERIES],
[projectModules.FILESTORE]: [configResourceTypes.FILESTORE_CONFIG, configResourceTypes.FILESTORE_RULES],
[projectModules.CACHE]: [],
[projectModules.EVENTING]: [configResourceTypes.EVENTING_CONFIG, configResourceTypes.EVENTING_RULES, configResourceTypes.EVENTING_SCHEMA, configResourceTypes.EVENTING_TRIGGER],
[projectModules.REMOTE_SERVICES]: [configResourceTypes.REMOTE_SERVICES],
[projectModules.DEPLOYMENTS]: [configResourceTypes.SERVICES, configResourceTypes.SERVICE_ROUTES, configResourceTypes.SERVICE_ROlES],
[projectModules.SECRETS]: [configResourceTypes.SECRETS],
[projectModules.INGRESS_ROUTES]: [configResourceTypes.INGRESS_ROUTES, configResourceTypes.INGRESS_GLOBAL],
[projectModules.USER_MANAGEMENT]: [configResourceTypes.USER_MANAGEMENT],
[projectModules.INTEGRATIONS]: [],
[projectModules.EXPLORER]: [],
[projectModules.SETTINGS]: [],
[projectModules.SECURITY_RULES]: []
}
export const configResourceTypeLabels = {
[configResourceTypes.DB_CONFIG]: "Database config",
[configResourceTypes.DB_RULES]: "Database rules",
[configResourceTypes.DB_SCHEMA]: "Database schema",
[configResourceTypes.DB_PREPARED_QUERIES]: "Database prepared queries",
[configResourceTypes.FILESTORE_CONFIG]: "Filestore config",
[configResourceTypes.FILESTORE_RULES]: "Filestore rules",
[configResourceTypes.CACHE_CONFIG]: "Cache config",
[configResourceTypes.EVENTING_CONFIG]: "Eventing config",
[configResourceTypes.EVENTING_TRIGGERS]: "Eventing triggers",
[configResourceTypes.EVENTING_SCHEMA]: "Eventing schema",
[configResourceTypes.EVENTING_RULES]: "Eventing rules",
[configResourceTypes.REMOTE_SERVICES]: "Remote services",
[configResourceTypes.SERVICES]: "Services",
[configResourceTypes.SERVICE_LOGS]: "Service logs",
[configResourceTypes.SERVICE_ROUTES]: "Service routes",
[configResourceTypes.SERVICE_ROlES]: "Service roles",
[configResourceTypes.SECRETS]: "Secrets",
[configResourceTypes.INGRESS_GLOBAL]: "Ingress global config",
[configResourceTypes.INGRESS_ROUTES]: "Ingress routes",
[configResourceTypes.USER_MANAGEMENT]: "User Management",
[configResourceTypes.INTEGRATIONS]: "Integrations",
[configResourceTypes.INTEGRATION_HOOKS]: "Integration hooks",
[configResourceTypes.LETSENCRYPT]: "Letsencrypt",
[configResourceTypes.PROJECT_CONFIG]: "Project config",
[configResourceTypes.CLUSTER_CONFIG]: "Cluster config"
}
export const apiResourceTypeLabels = {
[apiResourceTypes.DB_CREATE]: "Database create",
[apiResourceTypes.DB_READ]: "Database read",
[apiResourceTypes.DB_UPDATE]: "Database update",
[apiResourceTypes.DB_DELETE]: "Database delete",
[apiResourceTypes.DB_AGGREGATE]: "Database aggregate",
[apiResourceTypes.DB_PREPARED_QUERY]: "Database prepared query",
[apiResourceTypes.EVENTING_QUEUE]: "Queue Custom events",
[apiResourceTypes.EVENTING_LOGS]: "View Custom events",
[apiResourceTypes.FILE_CREATE]: "File create",
[apiResourceTypes.FILE_READ]: "File read",
[apiResourceTypes.FILE_DELETE]: "File delete",
[apiResourceTypes.SERVICE_CALL]: "Remote service call",
[apiResourceTypes.INTERNAL_API_ACCESS]: "Internal API access"
}
export const dbTypes = {
MONGO: "mongo",
POSTGRESQL: "postgres",
MYSQL: "mysql",
SQLSERVER: "sqlserver",
EMBEDDED: "embedded"
}
export const defaultDbConnectionStrings = {
[dbTypes.MONGO]: "mongodb://localhost:27017",
[dbTypes.POSTGRESQL]: "postgres://postgres:mysecretpassword@localhost:5432/postgres?sslmode=disable",
[dbTypes.MYSQL]: "root:my-secret-pw@tcp(localhost:3306)/",
[dbTypes.SQLSERVER]: "sqlserver://username:password@hostIP:1433?database=master",
[dbTypes.EMBEDDED]: "embedded.db"
}
export const securityRuleGroups = {
DB_COLLECTIONS: "collections",
DB_PREPARED_QUERIES: "prepared-queries",
FILESTORE: "file-store",
EVENTING: "eventing",
EVENTING_FILTERS: "eventing-filters",
REMOTE_SERVICES: "remote-services",
INGRESS_ROUTES: "ingress-routes"
}
export const defaultDBRules = {
create: {
rule: 'allow'
},
read: {
rule: 'allow'
},
update: {
rule: 'allow'
},
delete: {
rule: 'allow'
}
}
export const defaultFileRule = {
create: {
rule: "allow"
},
read: {
rule: "allow"
},
delete: {
rule: "allow"
}
}
export const defaultEventRule = {
rule: "allow"
}
export const defaultEventFilterRule = {
rule: "match"
}
export const defaultEndpointRule = {
rule: "allow"
}
export const defaultIngressRoutingRule = {
rule: "allow"
}
export const defaultPreparedQueryRule = {
rule: "allow"
}
export const deploymentStatuses = {
PENDING: "PENDING",
SUCCEEDED: "SUCCEEDED",
RUNNING: "RUNNING",
FAILED: "FAILED",
UNKNOWN: "UNKOWN"
}
export const actionQueuedMessage = "Action queued successfully"
export const kedaTriggerTypes = [
{ label: "ActiveMQ Artemis", value: "artemis-queue" },
{ label: "Apache Kafka", value: "kafka" },
{ label: "AWS Cloud Watch", value: "aws-cloudwatch" },
{ label: "AWS Kinesis Stream", value: "aws-kinesis-stream" },
{ label: "AWS SQS Queue", value: "aws-sqs-queue" },
{ label: "Azure Blob Storage", value: "azure-blob" },
{ label: "Azure Event Hubs", value: "azure-eventhub" },
{ label: "Azure Log Analytics", value: "azure-log-analytics" },
{ label: "Azure Monitor", value: "azure-monitor" },
{ label: "Azure Service Bus", value: "azure-servicebus" },
{ label: "Azure Storage Queue", value: "azure-queue" },
{ label: "Cron", value: "cron" },
{ label: "External", value: "external" },
{ label: "External Push", value: "external-push" },
{ label: "Google Cloud Platform Pub/Sub", value: "gcp-pubsub" },
{ label: "Huawei Cloudeye", value: "huawei-cloudeye" },
{ label: "Liiklus Topic", value: "liiklus" },
{ label: "Metrics API", value: "metric-api" },
{ label: "MySQL", value: "mysql" },
{ label: "NATS Streaming", value: "stan" },
{ label: "PostgreSQL", value: "postgresql" },
{ label: "Prometheus", value: "prometheus" },
{ label: "RabbitMQ Queue", value: "rabbitmq" },
{ label: "Redis Lists", value: "redis" },
{ label: "Redis Streams", value: "redis-streams" }
]
const getURL = (productionURL, developmentURL, mockURL) => {
if (process.env.NODE_ENV === "production") {
return productionURL
}
if (process.env.REACT_APP_ENABLE_MOCK === "true") {
return mockURL
}
return developmentURL
}
export const spaceCloudClusterOrigin = getURL(undefined, "http://localhost:4122", undefined)
export const spaceUpAPIGraphQLURL = getURL("https://api.spaceuptech.com/v1/api/spacecloud/graphql", "https://testing.spaceuptech.com/v1/api/spacecloud/graphql", "/v1/api/spacecloud/graphql")