eitri-cli 1.1.0-beta.3 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/dev.js +43 -37
- package/config/k8s-eitri.js +1 -3
- package/config/loc-eitri.js +46 -42
- package/config/prod-eitri.js +43 -39
- package/package.json +2 -1
- package/src/cmd/login.js +4 -3
- package/src/cmd/version.js +1 -1
- package/src/service/Server.js +6 -1
package/config/dev.js
CHANGED
|
@@ -1,40 +1,44 @@
|
|
|
1
1
|
/* eslint-disable no-undef */
|
|
2
|
-
const HOST =
|
|
3
|
-
const packageJson = require(
|
|
4
|
-
const path = require(
|
|
2
|
+
const HOST = "dev.eitri.calindra.com.br";
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
const path = require("path");
|
|
5
5
|
|
|
6
6
|
const config = {
|
|
7
7
|
userAgent: packageJson.name,
|
|
8
8
|
signup: {
|
|
9
|
-
configFilePath: `.eitri/${path
|
|
10
|
-
|
|
9
|
+
configFilePath: `.eitri/${path
|
|
10
|
+
.basename(__filename)
|
|
11
|
+
.replace(".js", ".")}conf.js`,
|
|
12
|
+
oldConfigFilePath: `.miniapp/${path
|
|
13
|
+
.basename(__filename)
|
|
14
|
+
.replace(".js", ".")}conf.js`,
|
|
11
15
|
},
|
|
12
16
|
doc: {
|
|
13
|
-
createUrl: `https://admin.${HOST}/docs
|
|
17
|
+
createUrl: `https://admin.${HOST}/docs`,
|
|
14
18
|
},
|
|
15
19
|
blindGuardian: {
|
|
16
|
-
url: `https://${HOST}/blind-guardian-api
|
|
20
|
+
url: `https://${HOST}/blind-guardian-api`,
|
|
17
21
|
},
|
|
18
22
|
shareApi: {
|
|
19
23
|
url: `https://${HOST}/share-api/share`,
|
|
20
24
|
},
|
|
21
25
|
workspace: {
|
|
22
26
|
url: `https://${HOST}`,
|
|
23
|
-
basePath:
|
|
24
|
-
targetPath:
|
|
27
|
+
basePath: "foundry",
|
|
28
|
+
targetPath: "/foundry/targets",
|
|
25
29
|
target: {
|
|
26
30
|
knownTargets: [
|
|
27
31
|
{
|
|
28
32
|
default: true,
|
|
29
|
-
code:
|
|
30
|
-
description:
|
|
31
|
-
bootstrapBaseUrl: `https://${HOST}
|
|
32
|
-
}
|
|
33
|
-
]
|
|
33
|
+
code: "CALINDRA_MOBILE",
|
|
34
|
+
description: "CALINDRA_MOBILE",
|
|
35
|
+
bootstrapBaseUrl: `https://${HOST}`,
|
|
36
|
+
},
|
|
37
|
+
],
|
|
34
38
|
},
|
|
35
39
|
apiVersion: {
|
|
36
|
-
v1Header:
|
|
37
|
-
v2Header:
|
|
40
|
+
v1Header: "application/vnd.workspace.api.v1+json",
|
|
41
|
+
v2Header: "application/vnd.workspace.api.v2+json",
|
|
38
42
|
},
|
|
39
43
|
colossus: {
|
|
40
44
|
// url: 'https://colossus.lab.calindra.com.br/colossus-api/v1',
|
|
@@ -42,49 +46,51 @@ const config = {
|
|
|
42
46
|
url: `https://${HOST}/workspace/server`,
|
|
43
47
|
|
|
44
48
|
// pasta do miniapp dentro de src
|
|
45
|
-
watchUserDir:
|
|
49
|
+
watchUserDir: "/server",
|
|
46
50
|
},
|
|
47
51
|
credentials: {
|
|
48
|
-
approvalUrlPath:
|
|
49
|
-
upsertUrlPath:
|
|
50
|
-
defaultGrantType:
|
|
52
|
+
approvalUrlPath: "workspace/credential-approval",
|
|
53
|
+
upsertUrlPath: "workspace/miniapps/:publicKey/credential",
|
|
54
|
+
defaultGrantType: "client_credentials",
|
|
51
55
|
},
|
|
52
56
|
libs: {
|
|
53
|
-
updateLibsEndpointVersion:
|
|
54
|
-
}
|
|
57
|
+
updateLibsEndpointVersion: "application/vnd.workspace.api.v2+json",
|
|
58
|
+
},
|
|
55
59
|
},
|
|
56
60
|
qrCode: {
|
|
57
|
-
url:
|
|
61
|
+
url: "https://dev.eitri.calindra.com.br/workspace/share",
|
|
58
62
|
},
|
|
59
63
|
miniLog: {
|
|
60
64
|
url: `https://${HOST}/mini-log/rooms`,
|
|
61
|
-
path:
|
|
65
|
+
path: "/mini-log/socket.io",
|
|
62
66
|
},
|
|
63
67
|
managerApi: {
|
|
64
68
|
url: `https://${HOST}/miniapp-manager-api`,
|
|
65
69
|
invites: {
|
|
66
|
-
send:
|
|
67
|
-
slug:
|
|
68
|
-
my:
|
|
69
|
-
remove:
|
|
70
|
-
accept:
|
|
70
|
+
send: "/p/invites",
|
|
71
|
+
slug: "/p/invites/s/:slug",
|
|
72
|
+
my: "/p/myInvites",
|
|
73
|
+
remove: "/p/invites/:inviteToken",
|
|
74
|
+
accept: "/p/invites/accept",
|
|
75
|
+
},
|
|
76
|
+
miniapp: {
|
|
77
|
+
miniAppsPath: "/o/mini-apps",
|
|
71
78
|
},
|
|
72
|
-
miniapp:{
|
|
73
|
-
miniAppsPath: '/o/mini-apps',
|
|
74
|
-
}
|
|
75
79
|
},
|
|
76
80
|
workspaceManager: {
|
|
77
81
|
url: `https://${HOST}`,
|
|
78
|
-
path:
|
|
79
|
-
contextPath:
|
|
82
|
+
path: "/workspace-manager/socket.io",
|
|
83
|
+
contextPath: "/workspace-manager",
|
|
80
84
|
},
|
|
81
85
|
eitriAnalytics: {
|
|
82
|
-
url: "https://analytics.dev.eitri.calindra.com.br/analytics/event/cli"
|
|
86
|
+
url: "https://analytics.dev.eitri.calindra.com.br/analytics/event/cli",
|
|
83
87
|
},
|
|
84
88
|
managerFront: {
|
|
85
89
|
url: `https://admin.${HOST}`,
|
|
86
90
|
managerCredential: "/settings/manager-credential",
|
|
87
91
|
cliGenerateLoginCredential: "/settings/cli-generate-credential",
|
|
92
|
+
|
|
93
|
+
url: `https://admin.${HOST}`,
|
|
88
94
|
},
|
|
89
95
|
vegvisir: {
|
|
90
96
|
url: `https://${HOST}`,
|
|
@@ -96,6 +102,6 @@ const config = {
|
|
|
96
102
|
eitriManager: {
|
|
97
103
|
url: `https://${HOST}/eitri-manager-api`,
|
|
98
104
|
},
|
|
99
|
-
}
|
|
105
|
+
};
|
|
100
106
|
|
|
101
|
-
module.exports = config
|
|
107
|
+
module.exports = config;
|
package/config/k8s-eitri.js
CHANGED
|
@@ -83,9 +83,7 @@ const config = {
|
|
|
83
83
|
url: "https://analytics.dev.eitri.calindra.com.br/analytics/event/cli"
|
|
84
84
|
},
|
|
85
85
|
managerFront: {
|
|
86
|
-
url: `https://admin.k8s.eitri.calindra.com.br
|
|
87
|
-
managerCredential: "/settings/manager-credential",
|
|
88
|
-
cliGenerateLoginCredential: "/settings/cli-generate-credential",
|
|
86
|
+
url: `https://admin.k8s.eitri.calindra.com.br`
|
|
89
87
|
}
|
|
90
88
|
}
|
|
91
89
|
|
package/config/loc-eitri.js
CHANGED
|
@@ -1,42 +1,46 @@
|
|
|
1
|
-
const ipv4 = require(
|
|
2
|
-
const HOST = ipv4()[0]
|
|
3
|
-
const packageJson = require(
|
|
4
|
-
const PORT = process.env.EITRI_APP_TOOLS_PORT || 3333
|
|
5
|
-
const path = require(
|
|
6
|
-
const HOST_EITRIAPPS =
|
|
1
|
+
const ipv4 = require("../src/util/ipv4");
|
|
2
|
+
const HOST = ipv4()[0];
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
const PORT = process.env.EITRI_APP_TOOLS_PORT || 3333;
|
|
5
|
+
const path = require("path");
|
|
6
|
+
const HOST_EITRIAPPS = "dev.eitri.calindra.com.br";
|
|
7
7
|
|
|
8
8
|
const config = {
|
|
9
9
|
userAgent: packageJson.name,
|
|
10
10
|
signup: {
|
|
11
|
-
configFilePath: `.eitri/${path
|
|
12
|
-
|
|
11
|
+
configFilePath: `.eitri/${path
|
|
12
|
+
.basename(__filename)
|
|
13
|
+
.replace(".js", ".")}conf.js`,
|
|
14
|
+
oldConfigFilePath: `.miniapp/${path
|
|
15
|
+
.basename(__filename)
|
|
16
|
+
.replace(".js", ".")}conf.js`,
|
|
13
17
|
},
|
|
14
18
|
doc: {
|
|
15
|
-
createUrl:
|
|
19
|
+
createUrl: "https://developer.eitri.calindra.com.br/#/?id=create",
|
|
16
20
|
},
|
|
17
21
|
blindGuardian: {
|
|
18
|
-
url: `https://${HOST_EITRIAPPS}/blind-guardian-api
|
|
22
|
+
url: `https://${HOST_EITRIAPPS}/blind-guardian-api`,
|
|
19
23
|
},
|
|
20
24
|
shareApi: {
|
|
21
25
|
url: `https://${HOST_EITRIAPPS}/share-api/share`,
|
|
22
26
|
},
|
|
23
27
|
workspace: {
|
|
24
28
|
url: `http://${HOST}:3000`,
|
|
25
|
-
targetPath:
|
|
26
|
-
basePath:
|
|
29
|
+
targetPath: "/runes-foundry/targets",
|
|
30
|
+
basePath: "runes-foundry",
|
|
27
31
|
target: {
|
|
28
32
|
knownTargets: [
|
|
29
33
|
{
|
|
30
34
|
default: true,
|
|
31
|
-
code:
|
|
32
|
-
description:
|
|
33
|
-
bootstrapBaseUrl: `https://${HOST}
|
|
34
|
-
}
|
|
35
|
-
]
|
|
35
|
+
code: "CALINDRA_MOBILE",
|
|
36
|
+
description: "CALINDRA_MOBILE",
|
|
37
|
+
bootstrapBaseUrl: `https://${HOST}`,
|
|
38
|
+
},
|
|
39
|
+
],
|
|
36
40
|
},
|
|
37
41
|
apiVersion: {
|
|
38
|
-
v1Header:
|
|
39
|
-
v2Header:
|
|
42
|
+
v1Header: "application/vnd.workspace.api.v1+json",
|
|
43
|
+
v2Header: "application/vnd.workspace.api.v2+json",
|
|
40
44
|
},
|
|
41
45
|
colossus: {
|
|
42
46
|
// url: 'https://colossus.lab.calindra.com.br/colossus-api/v1',
|
|
@@ -44,47 +48,47 @@ const config = {
|
|
|
44
48
|
url: `http://${HOST}:3000/workspace/server`,
|
|
45
49
|
|
|
46
50
|
// pasta do miniapp dentro de src
|
|
47
|
-
watchUserDir:
|
|
51
|
+
watchUserDir: "/server",
|
|
48
52
|
},
|
|
49
53
|
credentials: {
|
|
50
|
-
approvalUrlPath:
|
|
51
|
-
upsertUrlPath:
|
|
52
|
-
defaultGrantType:
|
|
54
|
+
approvalUrlPath: "workspace/credential-approval",
|
|
55
|
+
upsertUrlPath: "workspace/miniapps/:publicKey/credential",
|
|
56
|
+
defaultGrantType: "client_credentials",
|
|
53
57
|
},
|
|
54
58
|
libs: {
|
|
55
|
-
updateLibsEndpointVersion:
|
|
56
|
-
}
|
|
59
|
+
updateLibsEndpointVersion: "application/vnd.workspace.api.v2+json",
|
|
60
|
+
},
|
|
57
61
|
},
|
|
58
62
|
qrCode: {
|
|
59
|
-
url:
|
|
63
|
+
url: "https://prod.eitri.calindra.com.br/workspace/share",
|
|
60
64
|
},
|
|
61
65
|
miniLog: {
|
|
62
66
|
url: `https://${HOST_EITRIAPPS}/mini-log/rooms`,
|
|
63
|
-
path:
|
|
67
|
+
path: "/mini-log/socket.io",
|
|
64
68
|
},
|
|
65
69
|
managerApi: {
|
|
66
70
|
url: `https://${HOST_EITRIAPPS}/miniapp-manager-api`,
|
|
67
71
|
invites: {
|
|
68
|
-
send:
|
|
69
|
-
slug:
|
|
70
|
-
my:
|
|
71
|
-
remove:
|
|
72
|
-
accept:
|
|
72
|
+
send: "/p/invites",
|
|
73
|
+
slug: "/p/invites/s/:slug",
|
|
74
|
+
my: "/p/myInvites",
|
|
75
|
+
remove: "/p/invites/:inviteToken",
|
|
76
|
+
accept: "/p/invites/accept",
|
|
77
|
+
},
|
|
78
|
+
miniapp: {
|
|
79
|
+
miniAppsPath: "/o/mini-apps",
|
|
73
80
|
},
|
|
74
|
-
miniapp:{
|
|
75
|
-
miniAppsPath: '/o/mini-apps',
|
|
76
|
-
}
|
|
77
81
|
},
|
|
78
82
|
eitriManager: {
|
|
79
|
-
url: `https://${HOST_EITRIAPPS}/eitri-manager-api
|
|
83
|
+
url: `https://${HOST_EITRIAPPS}/eitri-manager-api`,
|
|
80
84
|
},
|
|
81
85
|
workspaceManager: {
|
|
82
86
|
url: `https://${HOST_EITRIAPPS}`,
|
|
83
|
-
path:
|
|
84
|
-
contextPath:
|
|
87
|
+
path: "/workspace-manager/socket.io",
|
|
88
|
+
contextPath: "/workspace-manager",
|
|
85
89
|
},
|
|
86
90
|
eitriAnalytics: {
|
|
87
|
-
url: "https://analytics.dev.eitri.calindra.com.br/analytics/event/cli"
|
|
91
|
+
url: "https://analytics.dev.eitri.calindra.com.br/analytics/event/cli",
|
|
88
92
|
},
|
|
89
93
|
managerFront: {
|
|
90
94
|
url: `https://admin.${HOST}`,
|
|
@@ -97,7 +101,7 @@ const config = {
|
|
|
97
101
|
workspace: "/workspace",
|
|
98
102
|
my: "/workspace/my",
|
|
99
103
|
check: "/workspace/check",
|
|
100
|
-
}
|
|
101
|
-
}
|
|
104
|
+
},
|
|
105
|
+
};
|
|
102
106
|
|
|
103
|
-
module.exports = config
|
|
107
|
+
module.exports = config;
|
package/config/prod-eitri.js
CHANGED
|
@@ -1,41 +1,45 @@
|
|
|
1
1
|
/* eslint-disable no-undef */
|
|
2
|
-
const HOST =
|
|
3
|
-
const packageJson = require(
|
|
4
|
-
const path = require(
|
|
5
|
-
const HOST_MINIAPPS =
|
|
2
|
+
const HOST = "prod.eitri.calindra.com.br";
|
|
3
|
+
const packageJson = require("../package.json");
|
|
4
|
+
const path = require("path");
|
|
5
|
+
const HOST_MINIAPPS = "prod.eitri.calindra.com.br";
|
|
6
6
|
|
|
7
7
|
const config = {
|
|
8
8
|
userAgent: packageJson.name,
|
|
9
9
|
signup: {
|
|
10
|
-
configFilePath: `.eitri/${path
|
|
11
|
-
|
|
10
|
+
configFilePath: `.eitri/${path
|
|
11
|
+
.basename(__filename)
|
|
12
|
+
.replace(".js", ".")}conf.js`,
|
|
13
|
+
oldConfigFilePath: `.miniapp/${path
|
|
14
|
+
.basename(__filename)
|
|
15
|
+
.replace(".js", ".")}conf.js`,
|
|
12
16
|
},
|
|
13
17
|
doc: {
|
|
14
|
-
createUrl: `https://admin.${HOST_MINIAPPS}/docs
|
|
18
|
+
createUrl: `https://admin.${HOST_MINIAPPS}/docs`,
|
|
15
19
|
},
|
|
16
20
|
blindGuardian: {
|
|
17
|
-
url: `https://${HOST_MINIAPPS}/blind-guardian-api
|
|
21
|
+
url: `https://${HOST_MINIAPPS}/blind-guardian-api`,
|
|
18
22
|
},
|
|
19
23
|
shareApi: {
|
|
20
24
|
url: `https://${HOST_MINIAPPS}/share-api/share`,
|
|
21
25
|
},
|
|
22
26
|
workspace: {
|
|
23
27
|
url: `https://${HOST}`,
|
|
24
|
-
basePath:
|
|
25
|
-
targetPath:
|
|
28
|
+
basePath: "foundry",
|
|
29
|
+
targetPath: "/foundry/targets",
|
|
26
30
|
target: {
|
|
27
31
|
knownTargets: [
|
|
28
32
|
{
|
|
29
33
|
default: true,
|
|
30
|
-
code:
|
|
31
|
-
description:
|
|
32
|
-
bootstrapBaseUrl: `https://${HOST}
|
|
33
|
-
}
|
|
34
|
-
]
|
|
34
|
+
code: "CALINDRA_MOBILE",
|
|
35
|
+
description: "CALINDRA_MOBILE",
|
|
36
|
+
bootstrapBaseUrl: `https://${HOST}`,
|
|
37
|
+
},
|
|
38
|
+
],
|
|
35
39
|
},
|
|
36
40
|
apiVersion: {
|
|
37
|
-
v1Header:
|
|
38
|
-
v2Header:
|
|
41
|
+
v1Header: "application/vnd.workspace.api.v1+json",
|
|
42
|
+
v2Header: "application/vnd.workspace.api.v2+json",
|
|
39
43
|
},
|
|
40
44
|
colossus: {
|
|
41
45
|
// url: 'https://colossus.lab.calindra.com.br/colossus-api/v1',
|
|
@@ -43,47 +47,47 @@ const config = {
|
|
|
43
47
|
url: `https://${HOST}/workspace/server`,
|
|
44
48
|
|
|
45
49
|
// pasta do miniapp dentro de src
|
|
46
|
-
watchUserDir:
|
|
50
|
+
watchUserDir: "/server",
|
|
47
51
|
},
|
|
48
52
|
credentials: {
|
|
49
|
-
approvalUrlPath:
|
|
50
|
-
upsertUrlPath:
|
|
51
|
-
defaultGrantType:
|
|
53
|
+
approvalUrlPath: "workspace/credential-approval",
|
|
54
|
+
upsertUrlPath: "workspace/miniapps/:publicKey/credential",
|
|
55
|
+
defaultGrantType: "client_credentials",
|
|
52
56
|
},
|
|
53
57
|
libs: {
|
|
54
|
-
updateLibsEndpointVersion:
|
|
55
|
-
}
|
|
58
|
+
updateLibsEndpointVersion: "application/vnd.workspace.api.v2+json",
|
|
59
|
+
},
|
|
56
60
|
},
|
|
57
61
|
qrCode: {
|
|
58
|
-
url:
|
|
62
|
+
url: "https://prod.eitri.calindra.com.br/workspace/share",
|
|
59
63
|
},
|
|
60
64
|
miniLog: {
|
|
61
65
|
url: `https://${HOST_MINIAPPS}/mini-log/rooms`,
|
|
62
|
-
path:
|
|
66
|
+
path: "/mini-log/socket.io",
|
|
63
67
|
},
|
|
64
68
|
managerApi: {
|
|
65
69
|
url: `https://${HOST_MINIAPPS}/miniapp-manager-api`,
|
|
66
70
|
invites: {
|
|
67
|
-
send:
|
|
68
|
-
slug:
|
|
69
|
-
my:
|
|
70
|
-
remove:
|
|
71
|
-
accept:
|
|
71
|
+
send: "/p/invites",
|
|
72
|
+
slug: "/p/invites/s/:slug",
|
|
73
|
+
my: "/p/myInvites",
|
|
74
|
+
remove: "/p/invites/:inviteToken",
|
|
75
|
+
accept: "/p/invites/accept",
|
|
76
|
+
},
|
|
77
|
+
miniapp: {
|
|
78
|
+
miniAppsPath: "/o/mini-apps",
|
|
72
79
|
},
|
|
73
|
-
miniapp:{
|
|
74
|
-
miniAppsPath: '/o/mini-apps',
|
|
75
|
-
}
|
|
76
80
|
},
|
|
77
81
|
eitriManager: {
|
|
78
|
-
url: `https://${HOST_MINIAPPS}/eitri-manager-api
|
|
82
|
+
url: `https://${HOST_MINIAPPS}/eitri-manager-api`,
|
|
79
83
|
},
|
|
80
84
|
workspaceManager: {
|
|
81
85
|
url: `https://${HOST_MINIAPPS}`,
|
|
82
|
-
path:
|
|
83
|
-
contextPath:
|
|
86
|
+
path: "/workspace-manager/socket.io",
|
|
87
|
+
contextPath: "/workspace-manager",
|
|
84
88
|
},
|
|
85
89
|
eitriAnalytics: {
|
|
86
|
-
url: "https://analytics.dev.eitri.calindra.com.br/analytics/event/cli"
|
|
90
|
+
url: "https://analytics.dev.eitri.calindra.com.br/analytics/event/cli",
|
|
87
91
|
},
|
|
88
92
|
managerFront: {
|
|
89
93
|
url: `https://admin.eitri.calindra.com.br`,
|
|
@@ -97,6 +101,6 @@ const config = {
|
|
|
97
101
|
my: "/workspace/my",
|
|
98
102
|
check: "/workspace/check",
|
|
99
103
|
},
|
|
100
|
-
}
|
|
104
|
+
};
|
|
101
105
|
|
|
102
|
-
module.exports = config
|
|
106
|
+
module.exports = config;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eitri-cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Command Line Interface to make \"eitri app\" with code and fire.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"cli-progress": "^3.4.0",
|
|
37
37
|
"commander": "^9.2.0",
|
|
38
38
|
"config": "^3.3.0",
|
|
39
|
+
"cors": "^2.8.5",
|
|
39
40
|
"emojilib": "^2.4.0",
|
|
40
41
|
"express": "^4.17.3",
|
|
41
42
|
"express-rate-limit": "^6.3.0",
|
package/src/cmd/login.js
CHANGED
|
@@ -16,12 +16,13 @@ module.exports = async function login(args) {
|
|
|
16
16
|
},
|
|
17
17
|
])
|
|
18
18
|
|
|
19
|
-
const urlAdminManagerCredential = `${config.get("managerFront").url}${config.get("managerFront").cliGenerateLoginCredential}`
|
|
20
19
|
const res = Server.startCliLogin()
|
|
21
|
-
|
|
20
|
+
|
|
21
|
+
const urlAdminManagerCredential = `${config.get("managerFront").url}`
|
|
22
|
+
const urlAdminManagerCredentialWithParams = `${urlAdminManagerCredential}?loginType=EITRI_CLI&port=${res?.port}`
|
|
23
|
+
|
|
22
24
|
let portalOpenMessage = ""
|
|
23
25
|
|
|
24
|
-
|
|
25
26
|
if (openPortalAnwser) {
|
|
26
27
|
console.log("\n", "Abrindo o portal...")
|
|
27
28
|
try {
|
package/src/cmd/version.js
CHANGED
|
@@ -14,7 +14,7 @@ function version() {
|
|
|
14
14
|
`\n> Você está usando a versão ${packageJson.version}, temos uma nova versão: ${publishedVersion}!`
|
|
15
15
|
)
|
|
16
16
|
console.log(
|
|
17
|
-
`> Para atualizar use o comando:
|
|
17
|
+
`> Para atualizar use o comando: eitri self-update`
|
|
18
18
|
)
|
|
19
19
|
} else {
|
|
20
20
|
console.log(packageJson.version)
|
package/src/service/Server.js
CHANGED
|
@@ -11,7 +11,9 @@ const TERMINAL_PRINTER_NAME = 'terminal'
|
|
|
11
11
|
let serverInstance
|
|
12
12
|
const requestListenerHelper = require('../helpers/request-listener-helper')
|
|
13
13
|
const CliLogin = require('./CliLogin')
|
|
14
|
+
const cors = require("cors")
|
|
14
15
|
|
|
16
|
+
const WHITE_LIST = ["https://admin.eitri.calindra.com.br", "https://admin.dev.eitri.calindra.com.br"]
|
|
15
17
|
|
|
16
18
|
const expressRateLimiter = rateLimit({
|
|
17
19
|
windowMs: 15 * 60 * 1000,
|
|
@@ -199,7 +201,10 @@ class Server {
|
|
|
199
201
|
}
|
|
200
202
|
})
|
|
201
203
|
|
|
202
|
-
|
|
204
|
+
const myRouteOptions = {
|
|
205
|
+
origin: WHITE_LIST,
|
|
206
|
+
}
|
|
207
|
+
serverInstance.get('/cli-login', cors(myRouteOptions) ,async (req, res) => {
|
|
203
208
|
const {email, credential} = req?.query || {}
|
|
204
209
|
res.send('hello world')
|
|
205
210
|
await new CliLogin().saveCredentials({
|