@midwayjs/core 3.8.0 → 3.9.0
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/dist/baseFramework.d.ts +2 -2
- package/dist/common/dataSourceManager.d.ts +1 -0
- package/dist/common/dataSourceManager.js +14 -12
- package/dist/common/loggerFactory.d.ts +8 -0
- package/dist/common/loggerFactory.js +7 -0
- package/dist/common/serviceFactory.d.ts +3 -2
- package/dist/constants.d.ts +1 -11
- package/dist/constants.js +2 -12
- package/dist/decorator/common/inject.d.ts +2 -0
- package/dist/decorator/common/inject.js +9 -1
- package/dist/decorator/constant.d.ts +1 -0
- package/dist/decorator/constant.js +3 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/interface.d.ts +17 -1
- package/dist/service/decoratorService.js +1 -1
- package/dist/service/frameworkService.js +15 -0
- package/dist/service/loggerService.d.ts +9 -6
- package/dist/service/loggerService.js +10 -5
- package/dist/setup.js +4 -2
- package/dist/util/camelCase.js +8 -5
- package/package.json +3 -3
package/dist/baseFramework.d.ts
CHANGED
|
@@ -77,9 +77,9 @@ export declare abstract class BaseFramework<APP extends IMidwayApplication<CTX>,
|
|
|
77
77
|
*/
|
|
78
78
|
protected afterContainerReady(options: Partial<IMidwayBootstrapOptions>): Promise<void>;
|
|
79
79
|
applyMiddleware<R, N>(lastMiddleware?: CommonMiddlewareUnion<CTX, R, N>): Promise<MiddlewareRespond<CTX, R, N>>;
|
|
80
|
-
getLogger(name?: string):
|
|
80
|
+
getLogger(name?: string): any;
|
|
81
81
|
getCoreLogger(): ILogger;
|
|
82
|
-
createLogger(name: string, option?: LoggerOptions):
|
|
82
|
+
createLogger(name: string, option?: LoggerOptions): any;
|
|
83
83
|
getProjectName(): string;
|
|
84
84
|
getFrameworkName(): string;
|
|
85
85
|
useMiddleware(middleware: CommonMiddlewareUnion<CTX, ResOrNext, Next>): void;
|
|
@@ -33,6 +33,7 @@ export declare abstract class DataSourceManager<T> {
|
|
|
33
33
|
stop(): Promise<void>;
|
|
34
34
|
getDefaultDataSourceName(): string;
|
|
35
35
|
}
|
|
36
|
+
export declare function formatGlobString(globString: string): string[];
|
|
36
37
|
export declare function globModels(globString: string, appDir: string): any[];
|
|
37
38
|
export interface CreateDataSourceInstanceOptions {
|
|
38
39
|
/**
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.globModels = exports.DataSourceManager = void 0;
|
|
3
|
+
exports.globModels = exports.formatGlobString = exports.DataSourceManager = void 0;
|
|
4
4
|
/**
|
|
5
5
|
* 数据源管理器实现
|
|
6
6
|
*/
|
|
@@ -130,25 +130,27 @@ class DataSourceManager {
|
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
132
|
exports.DataSourceManager = DataSourceManager;
|
|
133
|
-
function
|
|
134
|
-
let cwd;
|
|
133
|
+
function formatGlobString(globString) {
|
|
135
134
|
let pattern;
|
|
136
|
-
if (globString
|
|
137
|
-
|
|
138
|
-
globString = globString.slice(0, -2);
|
|
135
|
+
if (!/^\*/.test(globString)) {
|
|
136
|
+
globString = '/' + globString;
|
|
139
137
|
}
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
pattern = [
|
|
138
|
+
const parsePattern = (0, path_1.parse)(globString);
|
|
139
|
+
if (parsePattern.base && (/\*/.test(parsePattern.base) || parsePattern.ext)) {
|
|
140
|
+
pattern = [globString];
|
|
143
141
|
}
|
|
144
142
|
else {
|
|
145
|
-
pattern = [...constants_1.DEFAULT_PATTERN];
|
|
146
|
-
cwd = (0, path_1.join)(appDir, globString);
|
|
143
|
+
pattern = [...constants_1.DEFAULT_PATTERN.map(p => (0, path_1.join)(globString, p))];
|
|
147
144
|
}
|
|
145
|
+
return pattern;
|
|
146
|
+
}
|
|
147
|
+
exports.formatGlobString = formatGlobString;
|
|
148
|
+
function globModels(globString, appDir) {
|
|
149
|
+
const pattern = formatGlobString(globString);
|
|
148
150
|
const models = [];
|
|
149
151
|
// string will be glob file
|
|
150
152
|
const files = (0, glob_1.run)(pattern, {
|
|
151
|
-
cwd,
|
|
153
|
+
cwd: appDir,
|
|
152
154
|
ignore: constants_1.IGNORE_PATTERN,
|
|
153
155
|
});
|
|
154
156
|
for (const file of files) {
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ILogger } from '../interface';
|
|
2
|
+
export declare abstract class LoggerFactory<Logger extends ILogger, LoggerOptions> {
|
|
3
|
+
abstract createLogger(name: string, options: LoggerOptions): Logger;
|
|
4
|
+
abstract getLogger(loggerName: string): Logger;
|
|
5
|
+
abstract close(loggerName?: string): any;
|
|
6
|
+
abstract removeLogger(loggerName: string): any;
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=loggerFactory.d.ts.map
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
+
import { IServiceFactory } from '../interface';
|
|
1
2
|
/**
|
|
2
3
|
* 多客户端工厂实现
|
|
3
4
|
*/
|
|
4
|
-
export declare abstract class ServiceFactory<T> {
|
|
5
|
+
export declare abstract class ServiceFactory<T> implements IServiceFactory<T> {
|
|
5
6
|
protected clients: Map<string, T>;
|
|
6
7
|
protected options: {};
|
|
7
8
|
protected initClients(options?: any): Promise<void>;
|
|
8
9
|
get<U = T>(id?: string): U;
|
|
9
10
|
has(id: string): boolean;
|
|
10
|
-
createInstance(config: any, clientName?: any): Promise<T |
|
|
11
|
+
createInstance(config: any, clientName?: any): Promise<T | undefined>;
|
|
11
12
|
abstract getName(): string;
|
|
12
13
|
protected abstract createClient(config: any, clientName: any): Promise<T | void> | (T | void);
|
|
13
14
|
protected destroyClient(client: T): Promise<void>;
|
package/dist/constants.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export declare const KEYS: {
|
|
|
14
14
|
PROPS_ELEMENT: string;
|
|
15
15
|
PROP_ELEMENT: string;
|
|
16
16
|
SET_ELEMENT: string;
|
|
17
|
-
|
|
17
|
+
CONSTRUCTOR_ARG_ELEMENT: string;
|
|
18
18
|
REF_ELEMENT: string;
|
|
19
19
|
JSON_ELEMENT: string;
|
|
20
20
|
CONFIGURATION_ELEMENT: string;
|
|
@@ -37,16 +37,6 @@ export declare const KEYS: {
|
|
|
37
37
|
EXPRESSION_ATTRIBUTE: string;
|
|
38
38
|
EXECUTE_ATTRIBUTE: string;
|
|
39
39
|
};
|
|
40
|
-
export declare const VALUE_TYPE: {
|
|
41
|
-
STRING: string;
|
|
42
|
-
DATE: string;
|
|
43
|
-
NUMBER: string;
|
|
44
|
-
INTEGER: string;
|
|
45
|
-
TEMPLATE: string;
|
|
46
|
-
MANAGED: string;
|
|
47
|
-
OBJECT: string;
|
|
48
|
-
BOOLEAN: string;
|
|
49
|
-
};
|
|
50
40
|
export declare const FUNCTION_INJECT_KEY = "midway:function_inject_key";
|
|
51
41
|
export declare const MIDWAY_LOGGER_WRITEABLE_DIR = "MIDWAY_LOGGER_WRITEABLE_DIR";
|
|
52
42
|
export declare const REQUEST_CTX_KEY = "ctx";
|
package/dist/constants.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IGNORE_PATTERN = exports.DEFAULT_PATTERN = exports.ASYNC_CONTEXT_MANAGER_KEY = exports.ASYNC_CONTEXT_KEY = exports.REQUEST_CTX_LOGGER_CACHE_KEY = exports.HTTP_SERVER_KEY = exports.REQUEST_OBJ_CTX_KEY = exports.REQUEST_CTX_KEY = exports.MIDWAY_LOGGER_WRITEABLE_DIR = exports.FUNCTION_INJECT_KEY = exports.
|
|
3
|
+
exports.IGNORE_PATTERN = exports.DEFAULT_PATTERN = exports.ASYNC_CONTEXT_MANAGER_KEY = exports.ASYNC_CONTEXT_KEY = exports.REQUEST_CTX_LOGGER_CACHE_KEY = exports.HTTP_SERVER_KEY = exports.REQUEST_OBJ_CTX_KEY = exports.REQUEST_CTX_KEY = exports.MIDWAY_LOGGER_WRITEABLE_DIR = exports.FUNCTION_INJECT_KEY = exports.KEYS = void 0;
|
|
4
4
|
/**
|
|
5
5
|
* 静态参数
|
|
6
6
|
*
|
|
@@ -17,7 +17,7 @@ exports.KEYS = {
|
|
|
17
17
|
PROPS_ELEMENT: 'props',
|
|
18
18
|
PROP_ELEMENT: 'prop',
|
|
19
19
|
SET_ELEMENT: 'set',
|
|
20
|
-
|
|
20
|
+
CONSTRUCTOR_ARG_ELEMENT: 'constructor-arg',
|
|
21
21
|
REF_ELEMENT: 'ref',
|
|
22
22
|
JSON_ELEMENT: 'json',
|
|
23
23
|
CONFIGURATION_ELEMENT: 'configuration',
|
|
@@ -40,16 +40,6 @@ exports.KEYS = {
|
|
|
40
40
|
EXPRESSION_ATTRIBUTE: 'expression',
|
|
41
41
|
EXECUTE_ATTRIBUTE: 'execute',
|
|
42
42
|
};
|
|
43
|
-
exports.VALUE_TYPE = {
|
|
44
|
-
STRING: 'string',
|
|
45
|
-
DATE: 'date',
|
|
46
|
-
NUMBER: 'number',
|
|
47
|
-
INTEGER: 'int',
|
|
48
|
-
TEMPLATE: 'template',
|
|
49
|
-
MANAGED: 'managed',
|
|
50
|
-
OBJECT: 'object',
|
|
51
|
-
BOOLEAN: 'boolean',
|
|
52
|
-
};
|
|
53
43
|
exports.FUNCTION_INJECT_KEY = 'midway:function_inject_key';
|
|
54
44
|
exports.MIDWAY_LOGGER_WRITEABLE_DIR = 'MIDWAY_LOGGER_WRITEABLE_DIR';
|
|
55
45
|
exports.REQUEST_CTX_KEY = 'ctx';
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import { ObjectIdentifier } from '../interface';
|
|
2
|
+
import { IServiceFactory } from '../../interface';
|
|
2
3
|
export declare function Inject(identifier?: ObjectIdentifier): (target: any, targetKey: string) => void;
|
|
4
|
+
export declare function InjectClient(serviceFactoryClz: new (...args: any[]) => IServiceFactory<unknown>, clientName?: string): PropertyDecorator;
|
|
3
5
|
//# sourceMappingURL=inject.d.ts.map
|
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Inject = void 0;
|
|
3
|
+
exports.InjectClient = exports.Inject = void 0;
|
|
4
4
|
const decoratorManager_1 = require("../decoratorManager");
|
|
5
|
+
const constant_1 = require("../constant");
|
|
5
6
|
function Inject(identifier) {
|
|
6
7
|
return function (target, targetKey) {
|
|
7
8
|
(0, decoratorManager_1.savePropertyInject)({ target, targetKey, identifier });
|
|
8
9
|
};
|
|
9
10
|
}
|
|
10
11
|
exports.Inject = Inject;
|
|
12
|
+
function InjectClient(serviceFactoryClz, clientName) {
|
|
13
|
+
return (0, decoratorManager_1.createCustomPropertyDecorator)(constant_1.FACTORY_SERVICE_CLIENT_KEY, {
|
|
14
|
+
serviceFactoryClz,
|
|
15
|
+
clientName,
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
exports.InjectClient = InjectClient;
|
|
11
19
|
//# sourceMappingURL=inject.js.map
|
|
@@ -6,6 +6,7 @@ export declare const ASPECT_KEY = "common:aspect";
|
|
|
6
6
|
export declare const CATCH_KEY = "common:catch";
|
|
7
7
|
export declare const MATCH_KEY = "common:match";
|
|
8
8
|
export declare const GUARD_KEY = "common:guard";
|
|
9
|
+
export declare const FACTORY_SERVICE_CLIENT_KEY = "common:service_factory:client";
|
|
9
10
|
export declare const FUNC_KEY = "faas:func";
|
|
10
11
|
export declare const SERVERLESS_FUNC_KEY = "faas:serverless:function";
|
|
11
12
|
export declare const CONTROLLER_KEY = "web:controller";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.PRIVATE_META_DATA_KEY = exports.MAIN_MODULE_KEY = exports.LIFECYCLE_IDENTIFIER_PREFIX = exports.PIPELINE_IDENTIFIER = void 0;
|
|
3
|
+
exports.TAGGED_FUN = exports.TAGGED_CLS = exports.INJECT_CUSTOM_PARAM = exports.INJECT_CUSTOM_METHOD = exports.INJECT_CUSTOM_PROPERTY = exports.INJECT_TAG = exports.NAMED_TAG = exports.CLASS_KEY_CONSTRUCTOR = exports.APPLICATION_CONTEXT_KEY = exports.APPLICATION_KEY = exports.LOGGER_KEY = exports.PLUGIN_KEY = exports.CONFIG_KEY = exports.MS_HSF_METHOD_KEY = exports.MS_DUBBO_METHOD_KEY = exports.MS_GRPC_METHOD_KEY = exports.MS_PROVIDER_KEY = exports.MS_PRODUCER_KEY = exports.MS_CONSUMER_KEY = exports.RPC_DUBBO_KEY = exports.RPC_GRPC_KEY = exports.HSF_KEY = exports.WS_EVENT_KEY = exports.WS_CONTROLLER_KEY = exports.MODULE_TASK_QUEUE_OPTIONS = exports.MODULE_TASK_QUEUE_KEY = exports.MODULE_TASK_TASK_LOCAL_OPTIONS = exports.MODULE_TASK_TASK_LOCAL_KEY = exports.MODULE_TASK_METADATA = exports.MODULE_TASK_KEY = exports.WEB_RESPONSE_RENDER = exports.WEB_RESPONSE_CONTENT_TYPE = exports.WEB_RESPONSE_HEADER = exports.WEB_RESPONSE_REDIRECT = exports.WEB_RESPONSE_HTTP_CODE = exports.WEB_RESPONSE_KEY = exports.WEB_ROUTER_PARAM_KEY = exports.WEB_ROUTER_KEY = exports.CONTROLLER_KEY = exports.SERVERLESS_FUNC_KEY = exports.FUNC_KEY = exports.FACTORY_SERVICE_CLIENT_KEY = exports.GUARD_KEY = exports.MATCH_KEY = exports.CATCH_KEY = exports.ASPECT_KEY = exports.FRAMEWORK_KEY = exports.CONFIGURATION_KEY = exports.SCHEDULE_KEY = exports.ALL = void 0;
|
|
4
|
+
exports.PRIVATE_META_DATA_KEY = exports.MAIN_MODULE_KEY = exports.LIFECYCLE_IDENTIFIER_PREFIX = exports.PIPELINE_IDENTIFIER = exports.OBJ_DEF_CLS = void 0;
|
|
5
5
|
// got all value with no property name
|
|
6
6
|
exports.ALL = 'common:all_value_key';
|
|
7
7
|
// common
|
|
@@ -12,6 +12,7 @@ exports.ASPECT_KEY = 'common:aspect';
|
|
|
12
12
|
exports.CATCH_KEY = 'common:catch';
|
|
13
13
|
exports.MATCH_KEY = 'common:match';
|
|
14
14
|
exports.GUARD_KEY = 'common:guard';
|
|
15
|
+
exports.FACTORY_SERVICE_CLIENT_KEY = 'common:service_factory:client';
|
|
15
16
|
// faas
|
|
16
17
|
exports.FUNC_KEY = 'faas:func';
|
|
17
18
|
exports.SERVERLESS_FUNC_KEY = 'faas:serverless:function';
|
package/dist/index.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export { RouterInfo, DynamicRouterInfo, RouterPriority, RouterCollectorOptions,
|
|
|
19
19
|
export { MidwayServerlessFunctionService, WebRouterCollector, } from './service/slsFunctionService';
|
|
20
20
|
export { CreateDataSourceInstanceOptions, DataSourceManager, } from './common/dataSourceManager';
|
|
21
21
|
export * from './service/pipelineService';
|
|
22
|
+
export * from './common/loggerFactory';
|
|
22
23
|
export * from './common/serviceFactory';
|
|
23
24
|
export * from './common/dataListener';
|
|
24
25
|
export * from './common/fileDetector';
|
package/dist/index.js
CHANGED
|
@@ -54,6 +54,7 @@ Object.defineProperty(exports, "WebRouterCollector", { enumerable: true, get: fu
|
|
|
54
54
|
var dataSourceManager_1 = require("./common/dataSourceManager");
|
|
55
55
|
Object.defineProperty(exports, "DataSourceManager", { enumerable: true, get: function () { return dataSourceManager_1.DataSourceManager; } });
|
|
56
56
|
__exportStar(require("./service/pipelineService"), exports);
|
|
57
|
+
__exportStar(require("./common/loggerFactory"), exports);
|
|
57
58
|
__exportStar(require("./common/serviceFactory"), exports);
|
|
58
59
|
__exportStar(require("./common/dataListener"), exports);
|
|
59
60
|
__exportStar(require("./common/fileDetector"), exports);
|
package/dist/interface.d.ts
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { LoggerOptions, LoggerContextFormat } from '@midwayjs/logger';
|
|
3
3
|
import * as EventEmitter from 'events';
|
|
4
4
|
import type { AsyncContextManager } from './common/asyncContextManager';
|
|
5
|
+
import type { LoggerFactory } from './common/loggerFactory';
|
|
5
6
|
import type { IManagedInstance, IMethodAspect, ObjectIdentifier } from './decorator';
|
|
6
7
|
import { FrameworkType, ScopeEnum } from './decorator';
|
|
8
|
+
export interface ILogger {
|
|
9
|
+
info(msg: any, ...args: any[]): void;
|
|
10
|
+
debug(msg: any, ...args: any[]): void;
|
|
11
|
+
error(msg: any, ...args: any[]): void;
|
|
12
|
+
warn(msg: any, ...args: any[]): void;
|
|
13
|
+
}
|
|
7
14
|
export interface MidwayCoreDefaultConfig {
|
|
8
15
|
midwayLogger?: ServiceFactoryConfigOption<LoggerOptions>;
|
|
9
16
|
debug?: {
|
|
@@ -474,6 +481,7 @@ export interface IMidwayBootstrapOptions {
|
|
|
474
481
|
[environmentName: string]: Record<string, any>;
|
|
475
482
|
}> | Record<string, any>;
|
|
476
483
|
asyncContextManager?: AsyncContextManager;
|
|
484
|
+
loggerFactory?: LoggerFactory<any, any>;
|
|
477
485
|
}
|
|
478
486
|
export interface IConfigurationOptions {
|
|
479
487
|
logger?: ILogger;
|
|
@@ -522,5 +530,13 @@ export interface MidwayAppInfo {
|
|
|
522
530
|
export interface MidwayConfig extends FileConfigOption<MidwayCoreDefaultConfig> {
|
|
523
531
|
[customConfigKey: string]: unknown;
|
|
524
532
|
}
|
|
533
|
+
export interface IServiceFactory<Client> {
|
|
534
|
+
get(clientId: string): Client;
|
|
535
|
+
has(clientId: string): boolean;
|
|
536
|
+
createInstance(config: any, clientId?: string): Promise<Client | undefined>;
|
|
537
|
+
getName(): string;
|
|
538
|
+
stop(): Promise<void>;
|
|
539
|
+
getDefaultClientName(): string;
|
|
540
|
+
}
|
|
525
541
|
export {};
|
|
526
542
|
//# sourceMappingURL=interface.d.ts.map
|
|
@@ -40,7 +40,7 @@ let MidwayDecoratorService = class MidwayDecoratorService {
|
|
|
40
40
|
if (!methodDecoratorHandler) {
|
|
41
41
|
throw new error_1.MidwayCommonError(`Method Decorator "${key}" handler not found, please register first.`);
|
|
42
42
|
}
|
|
43
|
-
return
|
|
43
|
+
return methodDecoratorHandler({
|
|
44
44
|
target: Clzz,
|
|
45
45
|
propertyName,
|
|
46
46
|
metadata,
|
|
@@ -66,6 +66,21 @@ let MidwayFrameworkService = class MidwayFrameworkService {
|
|
|
66
66
|
var _a;
|
|
67
67
|
return this.getMainApp()[(_a = meta.identifier) !== null && _a !== void 0 ? _a : propertyName];
|
|
68
68
|
});
|
|
69
|
+
this.decoratorService.registerPropertyHandler(decorator_1.FACTORY_SERVICE_CLIENT_KEY, (propertyName, meta) => {
|
|
70
|
+
const factory = this.applicationContext.get(meta.serviceFactoryClz);
|
|
71
|
+
const clientName = meta.clientName || factory.getDefaultClientName();
|
|
72
|
+
if (clientName && factory.has(clientName)) {
|
|
73
|
+
return factory.get(clientName);
|
|
74
|
+
}
|
|
75
|
+
else {
|
|
76
|
+
if (!clientName) {
|
|
77
|
+
throw new error_1.MidwayParameterError(`Please set clientName or options.defaultClientName for ${meta.serviceFactoryClz.name}).`);
|
|
78
|
+
}
|
|
79
|
+
else {
|
|
80
|
+
throw new error_1.MidwayParameterError(`ClientName(${clientName} not found in ${meta.serviceFactoryClz.name}).`);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
});
|
|
69
84
|
let frameworks = (0, decorator_1.listModule)(decorator_1.FRAMEWORK_KEY);
|
|
70
85
|
// filter proto
|
|
71
86
|
frameworks = filterProtoFramework(frameworks);
|
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
import { MidwayConfigService } from './configService';
|
|
2
2
|
import { ServiceFactory } from '../common/serviceFactory';
|
|
3
|
-
import { ILogger,
|
|
4
|
-
import {
|
|
3
|
+
import { ILogger, IMidwayContainer } from '../interface';
|
|
4
|
+
import { LoggerFactory } from '../common/loggerFactory';
|
|
5
5
|
export declare class MidwayLoggerService extends ServiceFactory<ILogger> {
|
|
6
6
|
readonly applicationContext: IMidwayContainer;
|
|
7
|
+
readonly globalOptions: {};
|
|
7
8
|
configService: MidwayConfigService;
|
|
8
|
-
|
|
9
|
+
private loggerFactory;
|
|
10
|
+
constructor(applicationContext: IMidwayContainer, globalOptions?: {});
|
|
9
11
|
protected init(): void;
|
|
10
|
-
protected createClient(config:
|
|
12
|
+
protected createClient(config: any, name?: string): void;
|
|
11
13
|
getName(): string;
|
|
12
|
-
createLogger(name: any, config: any):
|
|
13
|
-
getLogger(name: string):
|
|
14
|
+
createLogger(name: any, config: any): any;
|
|
15
|
+
getLogger(name: string): any;
|
|
16
|
+
getCurrentLoggerFactory(): LoggerFactory<any, any>;
|
|
14
17
|
}
|
|
15
18
|
//# sourceMappingURL=loggerService.d.ts.map
|
|
@@ -15,27 +15,32 @@ const configService_1 = require("./configService");
|
|
|
15
15
|
const serviceFactory_1 = require("../common/serviceFactory");
|
|
16
16
|
const logger_1 = require("@midwayjs/logger");
|
|
17
17
|
let MidwayLoggerService = class MidwayLoggerService extends serviceFactory_1.ServiceFactory {
|
|
18
|
-
constructor(applicationContext) {
|
|
18
|
+
constructor(applicationContext, globalOptions = {}) {
|
|
19
19
|
super();
|
|
20
20
|
this.applicationContext = applicationContext;
|
|
21
|
+
this.globalOptions = globalOptions;
|
|
21
22
|
}
|
|
22
23
|
init() {
|
|
23
24
|
var _a;
|
|
25
|
+
this.loggerFactory = this.globalOptions['loggerFactory'] || logger_1.loggers;
|
|
24
26
|
this.initClients(this.configService.getConfiguration('midwayLogger'));
|
|
25
27
|
// alias inject logger
|
|
26
28
|
(_a = this.applicationContext) === null || _a === void 0 ? void 0 : _a.registerObject('logger', this.getLogger('appLogger'));
|
|
27
29
|
}
|
|
28
30
|
createClient(config, name) {
|
|
29
|
-
|
|
31
|
+
this.loggerFactory.createLogger(name, config);
|
|
30
32
|
}
|
|
31
33
|
getName() {
|
|
32
34
|
return 'logger';
|
|
33
35
|
}
|
|
34
36
|
createLogger(name, config) {
|
|
35
|
-
return
|
|
37
|
+
return this.loggerFactory.createLogger(name, config);
|
|
36
38
|
}
|
|
37
39
|
getLogger(name) {
|
|
38
|
-
return
|
|
40
|
+
return this.loggerFactory.getLogger(name);
|
|
41
|
+
}
|
|
42
|
+
getCurrentLoggerFactory() {
|
|
43
|
+
return this.loggerFactory;
|
|
39
44
|
}
|
|
40
45
|
};
|
|
41
46
|
__decorate([
|
|
@@ -51,7 +56,7 @@ __decorate([
|
|
|
51
56
|
MidwayLoggerService = __decorate([
|
|
52
57
|
(0, decorator_1.Provide)(),
|
|
53
58
|
(0, decorator_1.Scope)(decorator_1.ScopeEnum.Singleton),
|
|
54
|
-
__metadata("design:paramtypes", [Object])
|
|
59
|
+
__metadata("design:paramtypes", [Object, Object])
|
|
55
60
|
], MidwayLoggerService);
|
|
56
61
|
exports.MidwayLoggerService = MidwayLoggerService;
|
|
57
62
|
//# sourceMappingURL=loggerService.js.map
|
package/dist/setup.js
CHANGED
|
@@ -6,7 +6,6 @@ const config_default_1 = require("./config/config.default");
|
|
|
6
6
|
const decorator_1 = require("./decorator");
|
|
7
7
|
const util = require("util");
|
|
8
8
|
const path_1 = require("path");
|
|
9
|
-
const logger_1 = require("@midwayjs/logger");
|
|
10
9
|
const slsFunctionService_1 = require("./service/slsFunctionService");
|
|
11
10
|
const debug = util.debuglog('midway:debug');
|
|
12
11
|
/**
|
|
@@ -18,6 +17,7 @@ async function initializeGlobalApplicationContext(globalOptions) {
|
|
|
18
17
|
// init logger
|
|
19
18
|
const loggerService = await applicationContext.getAsync(_1.MidwayLoggerService, [
|
|
20
19
|
applicationContext,
|
|
20
|
+
globalOptions,
|
|
21
21
|
]);
|
|
22
22
|
if (loggerService.getLogger('appLogger')) {
|
|
23
23
|
// register global logger
|
|
@@ -42,13 +42,15 @@ async function initializeGlobalApplicationContext(globalOptions) {
|
|
|
42
42
|
}
|
|
43
43
|
exports.initializeGlobalApplicationContext = initializeGlobalApplicationContext;
|
|
44
44
|
async function destroyGlobalApplicationContext(applicationContext) {
|
|
45
|
+
const loggerService = await applicationContext.getAsync(_1.MidwayLoggerService);
|
|
46
|
+
const loggerFactory = loggerService.getCurrentLoggerFactory();
|
|
45
47
|
// stop lifecycle
|
|
46
48
|
const lifecycleService = await applicationContext.getAsync(_1.MidwayLifeCycleService);
|
|
47
49
|
await lifecycleService.stop();
|
|
48
50
|
// stop container
|
|
49
51
|
await applicationContext.stop();
|
|
50
52
|
(0, decorator_1.clearBindContainer)();
|
|
51
|
-
|
|
53
|
+
loggerFactory.close();
|
|
52
54
|
global['MIDWAY_APPLICATION_CONTEXT'] = undefined;
|
|
53
55
|
global['MIDWAY_MAIN_FRAMEWORK'] = undefined;
|
|
54
56
|
}
|
package/dist/util/camelCase.js
CHANGED
|
@@ -12,19 +12,19 @@ const preserveCamelCase = (string, toLowerCase, toUpperCase) => {
|
|
|
12
12
|
let isLastCharLower = false;
|
|
13
13
|
let isLastCharUpper = false;
|
|
14
14
|
let isLastLastCharUpper = false;
|
|
15
|
-
for (let
|
|
16
|
-
const character = string[
|
|
15
|
+
for (let index = 0; index < string.length; index++) {
|
|
16
|
+
const character = string[index];
|
|
17
17
|
if (isLastCharLower && UPPERCASE.test(character)) {
|
|
18
|
-
string = string.slice(0,
|
|
18
|
+
string = string.slice(0, index) + '-' + string.slice(index);
|
|
19
19
|
isLastCharLower = false;
|
|
20
20
|
isLastLastCharUpper = isLastCharUpper;
|
|
21
21
|
isLastCharUpper = true;
|
|
22
|
-
|
|
22
|
+
index++;
|
|
23
23
|
}
|
|
24
24
|
else if (isLastCharUpper &&
|
|
25
25
|
isLastLastCharUpper &&
|
|
26
26
|
LOWERCASE.test(character)) {
|
|
27
|
-
string = string.slice(0,
|
|
27
|
+
string = string.slice(0, index - 1) + '-' + string.slice(index - 1);
|
|
28
28
|
isLastLastCharUpper = isLastCharUpper;
|
|
29
29
|
isLastCharUpper = false;
|
|
30
30
|
isLastCharLower = true;
|
|
@@ -60,6 +60,9 @@ function camelCaseOrigin(input, options) {
|
|
|
60
60
|
const toLowerCase = string => string.toLowerCase();
|
|
61
61
|
const toUpperCase = string => string.toUpperCase();
|
|
62
62
|
if (input.length === 1) {
|
|
63
|
+
if (SEPARATORS.test(input)) {
|
|
64
|
+
return '';
|
|
65
|
+
}
|
|
63
66
|
return options.pascalCase ? toUpperCase(input) : toLowerCase(input);
|
|
64
67
|
}
|
|
65
68
|
const hasUpperCase = input !== toLowerCase(input);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@midwayjs/core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.9.0",
|
|
4
4
|
"description": "midway core",
|
|
5
5
|
"main": "dist/index",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"koa": "2.13.4",
|
|
26
|
-
"mm": "3.2.
|
|
26
|
+
"mm": "3.2.1",
|
|
27
27
|
"pg": "8.8.0",
|
|
28
28
|
"raw-body": "2.5.1",
|
|
29
29
|
"sinon": "14.0.2"
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"engines": {
|
|
44
44
|
"node": ">=12"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "5f6603d2c9606fc6fc7ece71f956e89e394efeee"
|
|
47
47
|
}
|