@midwayjs/core 3.0.14-beta.1 → 3.1.2
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/LICENSE +21 -0
- package/dist/baseFramework.d.ts +0 -2
- package/dist/baseFramework.js +34 -5
- package/dist/common/applicationManager.js +3 -1
- package/dist/config/config.default.js +1 -2
- package/dist/context/container.js +4 -4
- package/dist/error/index.js +5 -1
- package/dist/index.js +5 -1
- package/dist/interface.d.ts +2 -1
- package/dist/interface.js +2 -1
- package/dist/service/frameworkService.js +0 -6
- package/dist/service/loggerService.d.ts +2 -2
- package/dist/setup.js +14 -4
- package/package.json +2 -2
- package/CHANGELOG.md +0 -2412
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2013 - Now midwayjs
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/dist/baseFramework.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { CommonMiddlewareUnion, IConfigurationOptions, IMidwayApplication, IMidwayBootstrapOptions, IMidwayContainer, IMidwayContext, IMidwayFramework, CommonFilterUnion, CommonMiddleware, MiddlewareRespond } from './interface';
|
|
2
|
-
import { FrameworkType } from '@midwayjs/decorator';
|
|
3
2
|
import { ILogger, LoggerOptions, LoggerContextFormat } from '@midwayjs/logger';
|
|
4
3
|
import { MidwayEnvironmentService } from './service/environmentService';
|
|
5
4
|
import { MidwayConfigService } from './service/configService';
|
|
@@ -47,7 +46,6 @@ export declare abstract class BaseFramework<APP extends IMidwayApplication<CTX>,
|
|
|
47
46
|
getCurrentEnvironment(): string;
|
|
48
47
|
getApplication(): APP;
|
|
49
48
|
abstract applicationInitialize(options: IMidwayBootstrapOptions): any;
|
|
50
|
-
abstract getFrameworkType(): FrameworkType;
|
|
51
49
|
abstract run(): Promise<void>;
|
|
52
50
|
protected createContextLogger(ctx: CTX, name?: string): ILogger;
|
|
53
51
|
stop(): Promise<void>;
|
package/dist/baseFramework.js
CHANGED
|
@@ -86,9 +86,36 @@ class BaseFramework {
|
|
|
86
86
|
}
|
|
87
87
|
createContextLogger(ctx, name) {
|
|
88
88
|
const appLogger = this.getLogger(name !== null && name !== void 0 ? name : this.contextLoggerApplyLogger);
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
89
|
+
if (name) {
|
|
90
|
+
let ctxLoggerCache = ctx.getAttr(interface_1.REQUEST_CTX_LOGGER_CACHE_KEY);
|
|
91
|
+
if (!ctxLoggerCache) {
|
|
92
|
+
ctxLoggerCache = new Map();
|
|
93
|
+
ctx.setAttr(interface_1.REQUEST_CTX_LOGGER_CACHE_KEY, ctxLoggerCache);
|
|
94
|
+
}
|
|
95
|
+
if (!name) {
|
|
96
|
+
name = 'appLogger';
|
|
97
|
+
}
|
|
98
|
+
// if logger exists
|
|
99
|
+
if (ctxLoggerCache.has(name)) {
|
|
100
|
+
return ctxLoggerCache.get(name);
|
|
101
|
+
}
|
|
102
|
+
// create new context logger
|
|
103
|
+
const ctxLogger = appLogger.createContextLogger(ctx, {
|
|
104
|
+
contextFormat: this.contextLoggerFormat,
|
|
105
|
+
});
|
|
106
|
+
ctxLoggerCache.set(name, ctxLogger);
|
|
107
|
+
return ctxLogger;
|
|
108
|
+
}
|
|
109
|
+
else {
|
|
110
|
+
// avoid maximum call stack size exceeded
|
|
111
|
+
if (ctx['_logger']) {
|
|
112
|
+
return ctx['_logger'];
|
|
113
|
+
}
|
|
114
|
+
ctx['_logger'] = appLogger.createContextLogger(ctx, {
|
|
115
|
+
contextFormat: this.contextLoggerFormat,
|
|
116
|
+
});
|
|
117
|
+
return ctx['_logger'];
|
|
118
|
+
}
|
|
92
119
|
}
|
|
93
120
|
async stop() {
|
|
94
121
|
await this.beforeStop();
|
|
@@ -117,7 +144,9 @@ class BaseFramework {
|
|
|
117
144
|
return this.getConfiguration(key);
|
|
118
145
|
},
|
|
119
146
|
getFrameworkType: () => {
|
|
120
|
-
|
|
147
|
+
if (this['getFrameworkType']) {
|
|
148
|
+
return this['getFrameworkType']();
|
|
149
|
+
}
|
|
121
150
|
},
|
|
122
151
|
getProcessType: () => {
|
|
123
152
|
return interface_1.MidwayProcessTypeEnum.APPLICATION;
|
|
@@ -241,7 +270,7 @@ class BaseFramework {
|
|
|
241
270
|
return this.informationService.getProjectName();
|
|
242
271
|
}
|
|
243
272
|
getFrameworkName() {
|
|
244
|
-
return
|
|
273
|
+
return '';
|
|
245
274
|
}
|
|
246
275
|
useMiddleware(middleware) {
|
|
247
276
|
this.middlewareManager.insertLast(middleware);
|
|
@@ -15,7 +15,9 @@ let MidwayApplicationManager = class MidwayApplicationManager {
|
|
|
15
15
|
}
|
|
16
16
|
addFramework(namespace, framework) {
|
|
17
17
|
this.globalFrameworkMap.set(namespace, framework);
|
|
18
|
-
|
|
18
|
+
if (framework['getFrameworkType']) {
|
|
19
|
+
this.globalFrameworkTypeMap.set(framework['getFrameworkType'](), framework);
|
|
20
|
+
}
|
|
19
21
|
}
|
|
20
22
|
getFramework(namespaceOrFrameworkType) {
|
|
21
23
|
if (typeof namespaceOrFrameworkType === 'string') {
|
|
@@ -13,8 +13,7 @@ exports.default = (appInfo) => {
|
|
|
13
13
|
dir: (0, path_1.join)(logRoot, 'logs', appInfo.name),
|
|
14
14
|
level: isDevelopment ? 'info' : 'warn',
|
|
15
15
|
consoleLevel: isDevelopment ? 'info' : 'warn',
|
|
16
|
-
auditFileDir:
|
|
17
|
-
errorDir: (0, path_1.join)(logRoot, 'logs', appInfo.name),
|
|
16
|
+
auditFileDir: '.audit',
|
|
18
17
|
},
|
|
19
18
|
clients: {
|
|
20
19
|
coreLogger: {
|
|
@@ -79,7 +79,7 @@ class ContainerConfiguration {
|
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
81
|
addImports(imports = []) {
|
|
82
|
-
var _a
|
|
82
|
+
var _a;
|
|
83
83
|
// 处理 imports
|
|
84
84
|
for (let importPackage of imports) {
|
|
85
85
|
if (!importPackage)
|
|
@@ -92,8 +92,8 @@ class ContainerConfiguration {
|
|
|
92
92
|
this.load(importPackage);
|
|
93
93
|
}
|
|
94
94
|
else if ('component' in importPackage) {
|
|
95
|
-
if (
|
|
96
|
-
if ((
|
|
95
|
+
if (importPackage === null || importPackage === void 0 ? void 0 : importPackage.enabledEnvironment) {
|
|
96
|
+
if ((_a = importPackage === null || importPackage === void 0 ? void 0 : importPackage.enabledEnvironment) === null || _a === void 0 ? void 0 : _a.includes(this.container
|
|
97
97
|
.get(environmentService_1.MidwayEnvironmentService)
|
|
98
98
|
.getCurrentEnvironment())) {
|
|
99
99
|
this.load(importPackage.component);
|
|
@@ -228,7 +228,6 @@ class MidwayContainer {
|
|
|
228
228
|
}
|
|
229
229
|
load(module) {
|
|
230
230
|
var _a;
|
|
231
|
-
this.isLoad = true;
|
|
232
231
|
if (module) {
|
|
233
232
|
// load configuration
|
|
234
233
|
const configuration = new ContainerConfiguration(this);
|
|
@@ -242,6 +241,7 @@ class MidwayContainer {
|
|
|
242
241
|
(0, extend_1.extend)(true, detectorOptionsMerged, detectorOptions);
|
|
243
242
|
}
|
|
244
243
|
(_a = this.fileDetector) === null || _a === void 0 ? void 0 : _a.setExtraDetectorOptions(detectorOptionsMerged);
|
|
244
|
+
this.isLoad = true;
|
|
245
245
|
}
|
|
246
246
|
}
|
|
247
247
|
loadDefinitions() {
|
package/dist/error/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
package/dist/interface.d.ts
CHANGED
|
@@ -182,6 +182,7 @@ export interface IManagedResolverFactoryCreateOptions {
|
|
|
182
182
|
export declare const REQUEST_CTX_KEY = "ctx";
|
|
183
183
|
export declare const REQUEST_OBJ_CTX_KEY = "_req_ctx";
|
|
184
184
|
export declare const HTTP_SERVER_KEY = "_midway_http_server";
|
|
185
|
+
export declare const REQUEST_CTX_LOGGER_CACHE_KEY = "_midway_ctx_logger_cache";
|
|
185
186
|
export declare type HandlerFunction = (
|
|
186
187
|
/**
|
|
187
188
|
* decorator uuid key
|
|
@@ -330,6 +331,7 @@ export interface IMidwayBaseApplication<CTX extends IMidwayContext> {
|
|
|
330
331
|
*/
|
|
331
332
|
getEnv(): string;
|
|
332
333
|
/**
|
|
334
|
+
* @deprecated
|
|
333
335
|
* Get current framework type in MidwayFrameworkType enum
|
|
334
336
|
*/
|
|
335
337
|
getFrameworkType(): FrameworkType;
|
|
@@ -444,7 +446,6 @@ export interface IMidwayFramework<APP extends IMidwayApplication<CTX>, CTX exten
|
|
|
444
446
|
getApplicationContext(): IMidwayContainer;
|
|
445
447
|
getConfiguration(key?: string): any;
|
|
446
448
|
getCurrentEnvironment(): string;
|
|
447
|
-
getFrameworkType(): FrameworkType;
|
|
448
449
|
getFrameworkName(): string;
|
|
449
450
|
getAppDir(): string;
|
|
450
451
|
getBaseDir(): string;
|
package/dist/interface.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.MIDWAY_LOGGER_WRITEABLE_DIR = exports.MidwayProcessTypeEnum = exports.HTTP_SERVER_KEY = exports.REQUEST_OBJ_CTX_KEY = exports.REQUEST_CTX_KEY = exports.ObjectLifeCycleEvent = void 0;
|
|
3
|
+
exports.MIDWAY_LOGGER_WRITEABLE_DIR = exports.MidwayProcessTypeEnum = exports.REQUEST_CTX_LOGGER_CACHE_KEY = exports.HTTP_SERVER_KEY = exports.REQUEST_OBJ_CTX_KEY = exports.REQUEST_CTX_KEY = exports.ObjectLifeCycleEvent = void 0;
|
|
4
4
|
var ObjectLifeCycleEvent;
|
|
5
5
|
(function (ObjectLifeCycleEvent) {
|
|
6
6
|
ObjectLifeCycleEvent["BEFORE_BIND"] = "beforeBind";
|
|
@@ -12,6 +12,7 @@ var ObjectLifeCycleEvent;
|
|
|
12
12
|
exports.REQUEST_CTX_KEY = 'ctx';
|
|
13
13
|
exports.REQUEST_OBJ_CTX_KEY = '_req_ctx';
|
|
14
14
|
exports.HTTP_SERVER_KEY = '_midway_http_server';
|
|
15
|
+
exports.REQUEST_CTX_LOGGER_CACHE_KEY = '_midway_ctx_logger_cache';
|
|
15
16
|
var MidwayProcessTypeEnum;
|
|
16
17
|
(function (MidwayProcessTypeEnum) {
|
|
17
18
|
MidwayProcessTypeEnum["APPLICATION"] = "APPLICATION";
|
|
@@ -94,12 +94,6 @@ let MidwayFrameworkService = class MidwayFrameworkService {
|
|
|
94
94
|
}
|
|
95
95
|
// init aspect module
|
|
96
96
|
await this.aspectService.loadAspect();
|
|
97
|
-
// some preload module init
|
|
98
|
-
const modules = (0, decorator_1.listPreloadModule)();
|
|
99
|
-
for (const module of modules) {
|
|
100
|
-
// preload init context
|
|
101
|
-
await this.applicationContext.getAsync(module);
|
|
102
|
-
}
|
|
103
97
|
}
|
|
104
98
|
getMainApp() {
|
|
105
99
|
var _a;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { MidwayConfigService } from './configService';
|
|
2
2
|
import { ServiceFactory } from '../common/serviceFactory';
|
|
3
|
-
import { ILogger } from '@midwayjs/logger';
|
|
3
|
+
import { ILogger, LoggerOptions } from '@midwayjs/logger';
|
|
4
4
|
import { IMidwayContainer } from '../interface';
|
|
5
5
|
export declare class MidwayLoggerService extends ServiceFactory<ILogger> {
|
|
6
6
|
readonly applicationContext: IMidwayContainer;
|
|
7
7
|
configService: MidwayConfigService;
|
|
8
8
|
constructor(applicationContext: IMidwayContainer);
|
|
9
9
|
protected init(): void;
|
|
10
|
-
protected createClient(config:
|
|
10
|
+
protected createClient(config: LoggerOptions, name?: string): void;
|
|
11
11
|
getName(): string;
|
|
12
12
|
createLogger(name: any, config: any): ILogger;
|
|
13
13
|
getLogger(name: string): ILogger;
|
package/dist/setup.js
CHANGED
|
@@ -72,7 +72,9 @@ async function initializeGlobalApplicationContext(globalOptions) {
|
|
|
72
72
|
.concat(globalOptions.imports)
|
|
73
73
|
.concat(globalOptions.configurationModule)) {
|
|
74
74
|
// load configuration and component
|
|
75
|
-
|
|
75
|
+
if (configurationModule) {
|
|
76
|
+
applicationContext.load(configurationModule);
|
|
77
|
+
}
|
|
76
78
|
}
|
|
77
79
|
// bind user code module
|
|
78
80
|
applicationContext.ready();
|
|
@@ -92,9 +94,11 @@ async function initializeGlobalApplicationContext(globalOptions) {
|
|
|
92
94
|
// it will be delay framework initialize in egg cluster mode
|
|
93
95
|
if (!globalOptions.lazyInitializeFramework) {
|
|
94
96
|
// init logger
|
|
95
|
-
await applicationContext.getAsync(_1.MidwayLoggerService, [
|
|
96
|
-
|
|
97
|
-
|
|
97
|
+
const loggerService = await applicationContext.getAsync(_1.MidwayLoggerService, [applicationContext]);
|
|
98
|
+
if (loggerService.getLogger('appLogger')) {
|
|
99
|
+
// register global logger
|
|
100
|
+
applicationContext.registerObject('logger', loggerService.getLogger('appLogger'));
|
|
101
|
+
}
|
|
98
102
|
// framework/config/plugin/logger/app decorator support
|
|
99
103
|
await applicationContext.getAsync(_1.MidwayFrameworkService, [
|
|
100
104
|
applicationContext,
|
|
@@ -104,6 +108,12 @@ async function initializeGlobalApplicationContext(globalOptions) {
|
|
|
104
108
|
await applicationContext.getAsync(_1.MidwayLifeCycleService, [
|
|
105
109
|
applicationContext,
|
|
106
110
|
]);
|
|
111
|
+
// some preload module init
|
|
112
|
+
const modules = (0, decorator_1.listPreloadModule)();
|
|
113
|
+
for (const module of modules) {
|
|
114
|
+
// preload init context
|
|
115
|
+
await applicationContext.getAsync(module);
|
|
116
|
+
}
|
|
107
117
|
}
|
|
108
118
|
return applicationContext;
|
|
109
119
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@midwayjs/core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.2",
|
|
4
4
|
"description": "midway core",
|
|
5
5
|
"main": "dist/index",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"engines": {
|
|
46
46
|
"node": ">=12"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "4ff3aa892b76d016f0ea123c7f9520d054d5c96b"
|
|
49
49
|
}
|