exodus-framework 2.0.697 → 2.0.699
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/lib/app/settings.d.ts.map +1 -1
- package/lib/contracts/messaging.d.ts +28 -1
- package/lib/contracts/messaging.d.ts.map +1 -1
- package/lib/contracts/security.d.ts +11 -0
- package/lib/contracts/security.d.ts.map +1 -0
- package/lib/contracts/settings.d.ts +6 -0
- package/lib/contracts/settings.d.ts.map +1 -1
- package/lib/controllers/messaging/database.d.ts +9 -0
- package/lib/controllers/messaging/database.d.ts.map +1 -0
- package/lib/controllers/messaging/environment.d.ts +10 -0
- package/lib/controllers/messaging/environment.d.ts.map +1 -0
- package/lib/middlewares/access.d.ts.map +1 -1
- package/lib/middlewares/authentication.d.ts +1 -1
- package/lib/middlewares/authentication.d.ts.map +1 -1
- package/lib/models/Application.d.ts +13 -0
- package/lib/models/Application.d.ts.map +1 -0
- package/lib/models/Connection.d.ts +1 -0
- package/lib/models/Connection.d.ts.map +1 -1
- package/lib/models/EnvConnection.d.ts +9 -0
- package/lib/models/EnvConnection.d.ts.map +1 -0
- package/lib/models/index.d.ts +4 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/routes/index.d.ts +2 -0
- package/lib/routes/index.d.ts.map +1 -0
- package/lib/routes/messaging/index.d.ts +4 -0
- package/lib/routes/messaging/index.d.ts.map +1 -0
- package/lib/services/rabitmq.d.ts.map +1 -1
- package/lib/services/security.d.ts +29 -0
- package/lib/services/security.d.ts.map +1 -0
- package/lib/services/sequelize.d.ts.map +1 -1
- package/lib/utils/index.d.ts +1 -0
- package/lib/utils/index.d.ts.map +1 -1
- package/package.json +3 -1
- package/lib/app/app.js +0 -84
- package/lib/app/controller.js +0 -95
- package/lib/app/core.js +0 -66
- package/lib/app/index.js +0 -60
- package/lib/app/service.js +0 -24
- package/lib/app/settings.js +0 -130
- package/lib/app/singleton.js +0 -29
- package/lib/contracts/console.js +0 -5
- package/lib/contracts/entity.js +0 -5
- package/lib/contracts/http.js +0 -50
- package/lib/contracts/index.js +0 -104
- package/lib/contracts/messaging.js +0 -14
- package/lib/contracts/service.js +0 -5
- package/lib/contracts/session.js +0 -5
- package/lib/contracts/settings.js +0 -5
- package/lib/contracts/singleton.js +0 -5
- package/lib/contracts/socket.js +0 -11
- package/lib/contracts/tenant.d.ts +0 -1
- package/lib/contracts/tenant.d.ts.map +0 -1
- package/lib/contracts/tenant.js +0 -1
- package/lib/controllers/api/file.js +0 -24
- package/lib/controllers/api/index.js +0 -13
- package/lib/controllers/index.js +0 -16
- package/lib/express.d.js +0 -5
- package/lib/index.js +0 -92
- package/lib/middlewares/access.js +0 -35
- package/lib/middlewares/authentication.js +0 -27
- package/lib/middlewares/file.js +0 -41
- package/lib/middlewares/index.js +0 -27
- package/lib/models/Connection.js +0 -50
- package/lib/models/index.js +0 -16
- package/lib/services/error.js +0 -49
- package/lib/services/express.js +0 -140
- package/lib/services/file.js +0 -65
- package/lib/services/index.js +0 -80
- package/lib/services/rabitmq.js +0 -87
- package/lib/services/redis.js +0 -60
- package/lib/services/sequelize.js +0 -238
- package/lib/services/socket.js +0 -56
- package/lib/services/task.js +0 -162
- package/lib/utils/api.js +0 -50
- package/lib/utils/database.js +0 -36
- package/lib/utils/date.js +0 -28
- package/lib/utils/index.js +0 -60
- package/lib/utils/logger.js +0 -55
- package/lib/utils/session.js +0 -23
package/lib/app/service.js
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.default = void 0;
|
7
|
-
var _singleton = _interopRequireDefault(require("./singleton"));
|
8
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
9
|
-
/**
|
10
|
-
* Classe base de Serviços
|
11
|
-
* Responsável por gerênciar métodos e funções utilizadas por todas
|
12
|
-
* as classes de serviço desta aplicação
|
13
|
-
*
|
14
|
-
* @abstract
|
15
|
-
* @class Service
|
16
|
-
* @extends {Singleton}
|
17
|
-
* @template S
|
18
|
-
*/
|
19
|
-
class Service extends _singleton.default {
|
20
|
-
constructor() {
|
21
|
-
super();
|
22
|
-
}
|
23
|
-
}
|
24
|
-
var _default = exports.default = Service;
|
package/lib/app/settings.js
DELETED
@@ -1,130 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.default = void 0;
|
7
|
-
require("dotenv/config");
|
8
|
-
var _os = _interopRequireDefault(require("os"));
|
9
|
-
var _lodash = _interopRequireDefault(require("lodash"));
|
10
|
-
var _path = _interopRequireDefault(require("path"));
|
11
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
12
|
-
class CoreSettings {
|
13
|
-
application = {};
|
14
|
-
authentication = {};
|
15
|
-
cache = {};
|
16
|
-
database = {};
|
17
|
-
http = {};
|
18
|
-
logger = {};
|
19
|
-
messaging = {};
|
20
|
-
defaults = {
|
21
|
-
application: {
|
22
|
-
appId: process.env.APP_ID,
|
23
|
-
port: Number(process.env.APP_PORT),
|
24
|
-
host: process.env.APP_URL || 'http://localhost',
|
25
|
-
description: process.env.APP_DESCRIPTION || '',
|
26
|
-
clusters: Number(process.env.APP_CLUESTERS) || _os.default.cpus().length,
|
27
|
-
clustersRestarts: true,
|
28
|
-
/* File */
|
29
|
-
filePaths: {
|
30
|
-
temporary: _path.default.resolve(__dirname, '..', '..', 'public', 'tmp'),
|
31
|
-
image: _path.default.resolve(__dirname, '..', '..', 'public', 'images'),
|
32
|
-
audio: _path.default.resolve(__dirname, '..', '..', 'public', 'audios'),
|
33
|
-
document: _path.default.resolve(__dirname, '..', '..', 'public', 'documents'),
|
34
|
-
video: _path.default.resolve(__dirname, '..', '..', 'public', 'videos')
|
35
|
-
}
|
36
|
-
},
|
37
|
-
authentication: {
|
38
|
-
host: process.env.APP_SESSION_URL,
|
39
|
-
/* APPAuthID:APPAuthPort/SECURITY_JWT_ISSUER */
|
40
|
-
issuer: `exodus.session.hub:4000/${process.env.SECURITY_JWT_ISSUER}`
|
41
|
-
},
|
42
|
-
cache: {
|
43
|
-
host: process.env.CACHE_HOST || 'localhost',
|
44
|
-
port: Number(process.env.CACHE_PORT) || 6379,
|
45
|
-
password: process.env.CACHE_USER || 'eYVX7EwVmmxKPCDmwMtyKVge8oLd2t81'
|
46
|
-
},
|
47
|
-
database: {
|
48
|
-
master: {
|
49
|
-
database: process.env.MASTER_DB_NAME || 'common',
|
50
|
-
dialect: process.env.MASTER_DB_DIALECT || 'mariadb',
|
51
|
-
username: process.env.MASTER_DB_USER || 'root',
|
52
|
-
password: process.env.MASTER_DB_PASS || ''
|
53
|
-
},
|
54
|
-
service: {
|
55
|
-
database: process.env.SERVICE_DB_NAME || 'unknow'
|
56
|
-
}
|
57
|
-
},
|
58
|
-
http: {
|
59
|
-
publicPath: '',
|
60
|
-
formulation: process.env.RESPONSE_FORMULATION_TYPE || 'standart'
|
61
|
-
},
|
62
|
-
logger: {
|
63
|
-
/**
|
64
|
-
* Diretório pardrão de logs
|
65
|
-
* @date 24/03/2023 - 20:19:18
|
66
|
-
*
|
67
|
-
*/
|
68
|
-
path: '../../logs',
|
69
|
-
/**
|
70
|
-
* Formato de saída dos arquivos de logs
|
71
|
-
* @date 24/03/2023 - 20:19:18
|
72
|
-
*
|
73
|
-
*/
|
74
|
-
fileformat: '.json',
|
75
|
-
/**
|
76
|
-
* Nível do logger
|
77
|
-
*/
|
78
|
-
level: process.env.LOGGER_LEVEL || 'info',
|
79
|
-
/**
|
80
|
-
* Transportar logs para o console do prompt
|
81
|
-
* @date 24/03/2023 - 20:19:18
|
82
|
-
*
|
83
|
-
*/
|
84
|
-
console: !!parseInt(process.env.LOGGER_CONSOLE) || false
|
85
|
-
},
|
86
|
-
messaging: {
|
87
|
-
user: process.env.MSG_USER || 'guest',
|
88
|
-
pass: process.env.MSG_PASS || 'guest',
|
89
|
-
host: process.env.MSG_HOST || 'localhost'
|
90
|
-
}
|
91
|
-
};
|
92
|
-
settings;
|
93
|
-
constructor() {
|
94
|
-
this.mergeSettings();
|
95
|
-
}
|
96
|
-
mergeSettings() {
|
97
|
-
this.settings = _lodash.default.merge({}, this.defaults, {
|
98
|
-
application: this.application,
|
99
|
-
authentication: this.authentication,
|
100
|
-
cache: this.cache,
|
101
|
-
database: this.database,
|
102
|
-
http: this.http,
|
103
|
-
logger: this.logger,
|
104
|
-
messaging: this.messaging
|
105
|
-
});
|
106
|
-
// console.log(this.settings);
|
107
|
-
}
|
108
|
-
getAppication() {
|
109
|
-
return this.settings.application;
|
110
|
-
}
|
111
|
-
getAuthentication() {
|
112
|
-
return this.settings.authentication;
|
113
|
-
}
|
114
|
-
getCache() {
|
115
|
-
return this.settings.cache;
|
116
|
-
}
|
117
|
-
getDatabase() {
|
118
|
-
return this.settings.database;
|
119
|
-
}
|
120
|
-
getHttp() {
|
121
|
-
return this.settings.http;
|
122
|
-
}
|
123
|
-
getLogger() {
|
124
|
-
return this.settings.logger;
|
125
|
-
}
|
126
|
-
getMessaging() {
|
127
|
-
return this.settings.messaging;
|
128
|
-
}
|
129
|
-
}
|
130
|
-
var _default = exports.default = CoreSettings;
|
package/lib/app/singleton.js
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.default = void 0;
|
7
|
-
var _core = _interopRequireDefault(require("./core"));
|
8
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
9
|
-
/**
|
10
|
-
* Classe base para gerênciamento de instancia Singleton
|
11
|
-
* Usada para possibilitar a classe filha de manipular a
|
12
|
-
* instancia de sí mesma
|
13
|
-
*
|
14
|
-
* @abstract
|
15
|
-
* @class Singleton
|
16
|
-
* @extends {Core}
|
17
|
-
*/
|
18
|
-
class Singleton extends _core.default {
|
19
|
-
// #Singleton
|
20
|
-
static instance;
|
21
|
-
constructor() {
|
22
|
-
super();
|
23
|
-
}
|
24
|
-
static singleton() {
|
25
|
-
if (!this.instance) this.instance = new this();
|
26
|
-
return this.instance;
|
27
|
-
}
|
28
|
-
}
|
29
|
-
var _default = exports.default = Singleton;
|
package/lib/contracts/console.js
DELETED
package/lib/contracts/entity.js
DELETED
package/lib/contracts/http.js
DELETED
@@ -1,50 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.EHttpResponseCode = exports.EApiRequestMethod = void 0;
|
7
|
-
/**
|
8
|
-
* Tipo de respostas
|
9
|
-
* @date 26/03/2023 - 21:45:23
|
10
|
-
*
|
11
|
-
*/
|
12
|
-
/**
|
13
|
-
* Objeto de response padronizado
|
14
|
-
* @date 26/03/2023 - 21:45:23
|
15
|
-
*
|
16
|
-
*/
|
17
|
-
/**
|
18
|
-
* Tipos de Status-Code para responses do Express
|
19
|
-
*
|
20
|
-
* @export
|
21
|
-
* @enum {number}
|
22
|
-
*/
|
23
|
-
let EHttpResponseCode = exports.EHttpResponseCode = /*#__PURE__*/function (EHttpResponseCode) {
|
24
|
-
EHttpResponseCode[EHttpResponseCode["continue"] = 100] = "continue";
|
25
|
-
EHttpResponseCode[EHttpResponseCode["accepted"] = 202] = "accepted";
|
26
|
-
EHttpResponseCode[EHttpResponseCode["created"] = 201] = "created";
|
27
|
-
EHttpResponseCode[EHttpResponseCode["successfullyProcessedInformation"] = 200] = "successfullyProcessedInformation";
|
28
|
-
EHttpResponseCode[EHttpResponseCode["partiallyCompletedProcess"] = 206] = "partiallyCompletedProcess";
|
29
|
-
EHttpResponseCode[EHttpResponseCode["redirectingForResponse"] = 303] = "redirectingForResponse";
|
30
|
-
EHttpResponseCode[EHttpResponseCode["incompleteRequest"] = 400] = "incompleteRequest";
|
31
|
-
EHttpResponseCode[EHttpResponseCode["informationNotFound"] = 404] = "informationNotFound";
|
32
|
-
EHttpResponseCode[EHttpResponseCode["informationAlreadyExists"] = 409] = "informationAlreadyExists";
|
33
|
-
EHttpResponseCode[EHttpResponseCode["preconditionRequired"] = 428] = "preconditionRequired";
|
34
|
-
EHttpResponseCode[EHttpResponseCode["iternalErro"] = 500] = "iternalErro";
|
35
|
-
EHttpResponseCode[EHttpResponseCode["methodNotAllowed"] = 405] = "methodNotAllowed";
|
36
|
-
EHttpResponseCode[EHttpResponseCode["informationNotTrue"] = 406] = "informationNotTrue";
|
37
|
-
EHttpResponseCode[EHttpResponseCode["preProcessNotInitialized"] = 424] = "preProcessNotInitialized";
|
38
|
-
EHttpResponseCode[EHttpResponseCode["requestTimeOut"] = 408] = "requestTimeOut";
|
39
|
-
EHttpResponseCode[EHttpResponseCode["informationUnauthorized"] = 401] = "informationUnauthorized";
|
40
|
-
EHttpResponseCode[EHttpResponseCode["informationBlocked"] = 403] = "informationBlocked";
|
41
|
-
return EHttpResponseCode;
|
42
|
-
}({});
|
43
|
-
let EApiRequestMethod = exports.EApiRequestMethod = /*#__PURE__*/function (EApiRequestMethod) {
|
44
|
-
EApiRequestMethod["POST"] = "post";
|
45
|
-
EApiRequestMethod["GET"] = "get";
|
46
|
-
EApiRequestMethod["PUT"] = "put";
|
47
|
-
EApiRequestMethod["DELETE"] = "delete";
|
48
|
-
EApiRequestMethod["PATCH"] = "patch";
|
49
|
-
return EApiRequestMethod;
|
50
|
-
}({});
|
package/lib/contracts/index.js
DELETED
@@ -1,104 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
var _console = require("./console");
|
7
|
-
Object.keys(_console).forEach(function (key) {
|
8
|
-
if (key === "default" || key === "__esModule") return;
|
9
|
-
if (key in exports && exports[key] === _console[key]) return;
|
10
|
-
Object.defineProperty(exports, key, {
|
11
|
-
enumerable: true,
|
12
|
-
get: function () {
|
13
|
-
return _console[key];
|
14
|
-
}
|
15
|
-
});
|
16
|
-
});
|
17
|
-
var _entity = require("./entity");
|
18
|
-
Object.keys(_entity).forEach(function (key) {
|
19
|
-
if (key === "default" || key === "__esModule") return;
|
20
|
-
if (key in exports && exports[key] === _entity[key]) return;
|
21
|
-
Object.defineProperty(exports, key, {
|
22
|
-
enumerable: true,
|
23
|
-
get: function () {
|
24
|
-
return _entity[key];
|
25
|
-
}
|
26
|
-
});
|
27
|
-
});
|
28
|
-
var _http = require("./http");
|
29
|
-
Object.keys(_http).forEach(function (key) {
|
30
|
-
if (key === "default" || key === "__esModule") return;
|
31
|
-
if (key in exports && exports[key] === _http[key]) return;
|
32
|
-
Object.defineProperty(exports, key, {
|
33
|
-
enumerable: true,
|
34
|
-
get: function () {
|
35
|
-
return _http[key];
|
36
|
-
}
|
37
|
-
});
|
38
|
-
});
|
39
|
-
var _messaging = require("./messaging");
|
40
|
-
Object.keys(_messaging).forEach(function (key) {
|
41
|
-
if (key === "default" || key === "__esModule") return;
|
42
|
-
if (key in exports && exports[key] === _messaging[key]) return;
|
43
|
-
Object.defineProperty(exports, key, {
|
44
|
-
enumerable: true,
|
45
|
-
get: function () {
|
46
|
-
return _messaging[key];
|
47
|
-
}
|
48
|
-
});
|
49
|
-
});
|
50
|
-
var _service = require("./service");
|
51
|
-
Object.keys(_service).forEach(function (key) {
|
52
|
-
if (key === "default" || key === "__esModule") return;
|
53
|
-
if (key in exports && exports[key] === _service[key]) return;
|
54
|
-
Object.defineProperty(exports, key, {
|
55
|
-
enumerable: true,
|
56
|
-
get: function () {
|
57
|
-
return _service[key];
|
58
|
-
}
|
59
|
-
});
|
60
|
-
});
|
61
|
-
var _session = require("./session");
|
62
|
-
Object.keys(_session).forEach(function (key) {
|
63
|
-
if (key === "default" || key === "__esModule") return;
|
64
|
-
if (key in exports && exports[key] === _session[key]) return;
|
65
|
-
Object.defineProperty(exports, key, {
|
66
|
-
enumerable: true,
|
67
|
-
get: function () {
|
68
|
-
return _session[key];
|
69
|
-
}
|
70
|
-
});
|
71
|
-
});
|
72
|
-
var _settings = require("./settings");
|
73
|
-
Object.keys(_settings).forEach(function (key) {
|
74
|
-
if (key === "default" || key === "__esModule") return;
|
75
|
-
if (key in exports && exports[key] === _settings[key]) return;
|
76
|
-
Object.defineProperty(exports, key, {
|
77
|
-
enumerable: true,
|
78
|
-
get: function () {
|
79
|
-
return _settings[key];
|
80
|
-
}
|
81
|
-
});
|
82
|
-
});
|
83
|
-
var _singleton = require("./singleton");
|
84
|
-
Object.keys(_singleton).forEach(function (key) {
|
85
|
-
if (key === "default" || key === "__esModule") return;
|
86
|
-
if (key in exports && exports[key] === _singleton[key]) return;
|
87
|
-
Object.defineProperty(exports, key, {
|
88
|
-
enumerable: true,
|
89
|
-
get: function () {
|
90
|
-
return _singleton[key];
|
91
|
-
}
|
92
|
-
});
|
93
|
-
});
|
94
|
-
var _socket = require("./socket");
|
95
|
-
Object.keys(_socket).forEach(function (key) {
|
96
|
-
if (key === "default" || key === "__esModule") return;
|
97
|
-
if (key in exports && exports[key] === _socket[key]) return;
|
98
|
-
Object.defineProperty(exports, key, {
|
99
|
-
enumerable: true,
|
100
|
-
get: function () {
|
101
|
-
return _socket[key];
|
102
|
-
}
|
103
|
-
});
|
104
|
-
});
|
@@ -1,14 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.EMessagingQueue = void 0;
|
7
|
-
let EMessagingQueue = exports.EMessagingQueue = /*#__PURE__*/function (EMessagingQueue) {
|
8
|
-
EMessagingQueue["test"] = "exodus.queue.test";
|
9
|
-
EMessagingQueue["accountCreated"] = "exodus.account.created";
|
10
|
-
EMessagingQueue["environmentCreated"] = "exodus.environment.created";
|
11
|
-
EMessagingQueue["environmentDeleted"] = "exodus.environment.deleted";
|
12
|
-
EMessagingQueue["environmentUpdatedToken"] = "exodus.environment.updated.token";
|
13
|
-
return EMessagingQueue;
|
14
|
-
}({}); // Mapeamento de tópicos para tipos
|
package/lib/contracts/service.js
DELETED
package/lib/contracts/session.js
DELETED
package/lib/contracts/socket.js
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.ESocketEvent = void 0;
|
7
|
-
let ESocketEvent = exports.ESocketEvent = /*#__PURE__*/function (ESocketEvent) {
|
8
|
-
ESocketEvent["test"] = "exodus.socket.event.test";
|
9
|
-
ESocketEvent["test2"] = "exodus.socket.event.test2";
|
10
|
-
return ESocketEvent;
|
11
|
-
}({}); // Mapeamento de tópicos para tipos
|
@@ -1 +0,0 @@
|
|
1
|
-
//# sourceMappingURL=tenant.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"tenant.d.ts","sourceRoot":"","sources":["../../src/contracts/tenant.ts"],"names":[],"mappings":""}
|
package/lib/contracts/tenant.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
"use strict";
|
@@ -1,24 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.default = void 0;
|
7
|
-
var _controller = _interopRequireDefault(require("../../app/controller"));
|
8
|
-
require("express-async-errors");
|
9
|
-
var _http = require("../../contracts/http");
|
10
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
11
|
-
// !Tratamento de erros asyncronos
|
12
|
-
|
13
|
-
class FileController extends _controller.default {
|
14
|
-
upload = async (req, res) => {
|
15
|
-
this.send({
|
16
|
-
message: 'Salvo com sucesso',
|
17
|
-
type: 'success',
|
18
|
-
status: true,
|
19
|
-
data: req.file.filename,
|
20
|
-
code: _http.EHttpResponseCode.created
|
21
|
-
}, res);
|
22
|
-
};
|
23
|
-
}
|
24
|
-
var _default = exports.default = FileController;
|
@@ -1,13 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
Object.defineProperty(exports, "FileController", {
|
7
|
-
enumerable: true,
|
8
|
-
get: function () {
|
9
|
-
return _file.default;
|
10
|
-
}
|
11
|
-
});
|
12
|
-
var _file = _interopRequireDefault(require("./file"));
|
13
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
package/lib/controllers/index.js
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
var _api = require("./api");
|
7
|
-
Object.keys(_api).forEach(function (key) {
|
8
|
-
if (key === "default" || key === "__esModule") return;
|
9
|
-
if (key in exports && exports[key] === _api[key]) return;
|
10
|
-
Object.defineProperty(exports, key, {
|
11
|
-
enumerable: true,
|
12
|
-
get: function () {
|
13
|
-
return _api[key];
|
14
|
-
}
|
15
|
-
});
|
16
|
-
});
|
package/lib/express.d.js
DELETED
package/lib/index.js
DELETED
@@ -1,92 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
var _exportNames = {};
|
7
|
-
exports.default = void 0;
|
8
|
-
var _app = require("./app");
|
9
|
-
Object.keys(_app).forEach(function (key) {
|
10
|
-
if (key === "default" || key === "__esModule") return;
|
11
|
-
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
12
|
-
if (key in exports && exports[key] === _app[key]) return;
|
13
|
-
Object.defineProperty(exports, key, {
|
14
|
-
enumerable: true,
|
15
|
-
get: function () {
|
16
|
-
return _app[key];
|
17
|
-
}
|
18
|
-
});
|
19
|
-
});
|
20
|
-
var _contracts = require("./contracts");
|
21
|
-
Object.keys(_contracts).forEach(function (key) {
|
22
|
-
if (key === "default" || key === "__esModule") return;
|
23
|
-
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
24
|
-
if (key in exports && exports[key] === _contracts[key]) return;
|
25
|
-
Object.defineProperty(exports, key, {
|
26
|
-
enumerable: true,
|
27
|
-
get: function () {
|
28
|
-
return _contracts[key];
|
29
|
-
}
|
30
|
-
});
|
31
|
-
});
|
32
|
-
var _controllers = require("./controllers");
|
33
|
-
Object.keys(_controllers).forEach(function (key) {
|
34
|
-
if (key === "default" || key === "__esModule") return;
|
35
|
-
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
36
|
-
if (key in exports && exports[key] === _controllers[key]) return;
|
37
|
-
Object.defineProperty(exports, key, {
|
38
|
-
enumerable: true,
|
39
|
-
get: function () {
|
40
|
-
return _controllers[key];
|
41
|
-
}
|
42
|
-
});
|
43
|
-
});
|
44
|
-
var _middlewares = require("./middlewares");
|
45
|
-
Object.keys(_middlewares).forEach(function (key) {
|
46
|
-
if (key === "default" || key === "__esModule") return;
|
47
|
-
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
48
|
-
if (key in exports && exports[key] === _middlewares[key]) return;
|
49
|
-
Object.defineProperty(exports, key, {
|
50
|
-
enumerable: true,
|
51
|
-
get: function () {
|
52
|
-
return _middlewares[key];
|
53
|
-
}
|
54
|
-
});
|
55
|
-
});
|
56
|
-
var _models = require("./models");
|
57
|
-
Object.keys(_models).forEach(function (key) {
|
58
|
-
if (key === "default" || key === "__esModule") return;
|
59
|
-
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
60
|
-
if (key in exports && exports[key] === _models[key]) return;
|
61
|
-
Object.defineProperty(exports, key, {
|
62
|
-
enumerable: true,
|
63
|
-
get: function () {
|
64
|
-
return _models[key];
|
65
|
-
}
|
66
|
-
});
|
67
|
-
});
|
68
|
-
var _services = require("./services");
|
69
|
-
Object.keys(_services).forEach(function (key) {
|
70
|
-
if (key === "default" || key === "__esModule") return;
|
71
|
-
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
72
|
-
if (key in exports && exports[key] === _services[key]) return;
|
73
|
-
Object.defineProperty(exports, key, {
|
74
|
-
enumerable: true,
|
75
|
-
get: function () {
|
76
|
-
return _services[key];
|
77
|
-
}
|
78
|
-
});
|
79
|
-
});
|
80
|
-
var _utils = require("./utils");
|
81
|
-
Object.keys(_utils).forEach(function (key) {
|
82
|
-
if (key === "default" || key === "__esModule") return;
|
83
|
-
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
84
|
-
if (key in exports && exports[key] === _utils[key]) return;
|
85
|
-
Object.defineProperty(exports, key, {
|
86
|
-
enumerable: true,
|
87
|
-
get: function () {
|
88
|
-
return _utils[key];
|
89
|
-
}
|
90
|
-
});
|
91
|
-
});
|
92
|
-
var _default = exports.default = _app.Exodus;
|
@@ -1,35 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.default = void 0;
|
7
|
-
var _controller = _interopRequireDefault(require("../app/controller"));
|
8
|
-
var _http = require("../contracts/http");
|
9
|
-
var _error = require("../services/error");
|
10
|
-
var _app = require("../app");
|
11
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
12
|
-
class AccessMiddleware extends _controller.default {
|
13
|
-
accessLevel = level => {
|
14
|
-
return (req, res, next) => {
|
15
|
-
if (!level.includes(req.auth.account.type)) {
|
16
|
-
throw new _error.ApplicationHttpException('Nível de acesso não permitido para esta rota.', _http.EHttpResponseCode.informationBlocked);
|
17
|
-
}
|
18
|
-
next();
|
19
|
-
};
|
20
|
-
};
|
21
|
-
getTenant = async (req, res, next) => {
|
22
|
-
const account = req.auth?.account;
|
23
|
-
const tenantId = req.header('X-Exodus-Tenant-ID');
|
24
|
-
if (account && account.type != 'ADMINISTRATOR') {
|
25
|
-
if (!tenantId) {
|
26
|
-
throw new _error.ApplicationHttpException('Informações do ambiente incompletas', _http.EHttpResponseCode.incompleteRequest);
|
27
|
-
}
|
28
|
-
}
|
29
|
-
req.tenant = {
|
30
|
-
id: tenantId || `root@${_app.Core.settings.getDatabase().service.database}`
|
31
|
-
};
|
32
|
-
next();
|
33
|
-
};
|
34
|
-
}
|
35
|
-
var _default = exports.default = AccessMiddleware;
|
@@ -1,27 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.default = void 0;
|
7
|
-
var _app = require("../app");
|
8
|
-
var _controller = _interopRequireDefault(require("../app/controller"));
|
9
|
-
var _session = require("../utils/session");
|
10
|
-
var _expressJwt = require("express-jwt");
|
11
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
12
|
-
class AuthenticationMiddleware extends _controller.default {
|
13
|
-
decryptToken = (0, _expressJwt.expressjwt)({
|
14
|
-
secret: async () => {
|
15
|
-
try {
|
16
|
-
const api = new _session.SessionAPI();
|
17
|
-
return (await api.getCertificate()).data;
|
18
|
-
} catch (error) {
|
19
|
-
this.log('Não foi possível obter o certificado de segurança.', 'danger');
|
20
|
-
return '';
|
21
|
-
}
|
22
|
-
},
|
23
|
-
issuer: _app.Core.settings.getAuthentication().issuer,
|
24
|
-
algorithms: ['RS256']
|
25
|
-
});
|
26
|
-
}
|
27
|
-
var _default = exports.default = AuthenticationMiddleware;
|