eh-commons 0.0.1-testing.82 → 0.0.1-testing.83
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/index.d.ts +2 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/services/app-logger.service.d.ts +22 -0
- package/dist/services/app-logger.service.js +82 -0
- package/dist/services/app-logger.service.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -2
- package/src/index.ts +2 -0
- package/src/services/app-logger.service.ts +119 -0
package/dist/index.d.ts
CHANGED
|
@@ -96,4 +96,5 @@ import { RewardQuality } from './models/rewards/enums/reward-quality.enum';
|
|
|
96
96
|
import { RewardType } from './models/rewards/enums/reward-type.enum';
|
|
97
97
|
import { RewardOrigin, RewardOriginDocument, RewardOriginSchema } from './models/rewards/embedded/origin.embedded.schema';
|
|
98
98
|
import { RewardOriginType } from './models/rewards/enums/reward-origin-type.enum';
|
|
99
|
-
|
|
99
|
+
import { AppLogger } from './services/app-logger.service';
|
|
100
|
+
export { IsMapOfStringsConstraint, IsRouteConstraint, IsMapOfStrings, IsRoute, HandledException, validationExceptionFactory, BaseExceptionsFilter, RecordDTO, StateParamDTO, RecordState, SortDirection, Sort, Page, SortPage, RESTSort, RESTPaging, RESTRequestBody, RESTPage, RESTResult, RESTError, RESTResponseBody, ConfigUtil, ISession, ISessionUserData, SessionClient, RedisService, SessionService, CacheModule, PermissionGuard, generateUUID, Permission, PermissionsIncludeStrategy, PermissionGuardConfig, ClientPermissions, ValidateMongoIdPipe, ValidatePIDPipe, escapeRegex, translitGeorgiaToLatin, getRandomNumberFromRange, sizeOfJson, HTTPMethod, LogModule, LogService, LoggerClient, Env, ConsoleLogger, IAddress, Address, AddressSchema, AddressDocument, ClientType, IClient, ContactType, IContact, Contact, ContactSchema, ContactDocument, IGeoLocation, GeoLocation, GeoLocationSchema, GeoLocationDocument, II18n, I18n, I18nSchema, I18nDocument, IPermission, IPerson, Person, PersonSchema, PersonDocument, IRecord, Record, RecordSchema, RecordDocument, IRole, IUserClient, IUser, AuthorDTO, IAuthor, Author, AuthorSchema, IS3File, S3File, S3FileSchema, S3FileDocument, IFileLog, FileLog, FileLogSchema, FileLogDocument, IFileMeta, FileMeta, FileMetaSchema, FileMetaDocument, IFileRecord, FileRecord, FileRecordSchema, FileRecordDocument, IFileState, FileState, FileStateSchema, FileStateDocument, ILogInitiator, LogInitiator, LogInitiatorDocument, LogInitiatorSchema, IS3, S3, S3Document, S3Schema, S3FileState, IDictionarySetting, IDictionary, RESTQueryParams, IMongoPage, ResourceType, ICredentials, IProfInfo, generateSessionKeyword, generateUserClientKeyword, generateUserClientPermissionKeyword, getSortObj, I18nDTO, Base, IBase, DictionaryEmbeddedSchema, DictionaryEmbeddedDocument, DictionaryEmbedded, IDictionaryEmbedded, IDictionaryEvent, DictionaryModule, DictionaryService, AccessTokenGuard, APP__PORT, APP__DEBUG, APP__ACCESS_TOKEN, MONGODB__CS, KAFKAJS_NO_PARTITIONER_WARNING, Reward, RewardSchema, RewardDocument, RewardQuality, RewardType, RewardOrigin, RewardOriginSchema, RewardOriginType, RewardOriginDocument, AppLogger, };
|
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ContactSchema = exports.Contact = exports.ContactType = exports.ClientType = exports.AddressSchema = exports.Address = exports.ConsoleLogger = exports.Env = exports.LoggerClient = exports.LogService = exports.LogModule = exports.HTTPMethod = exports.sizeOfJson = exports.getRandomNumberFromRange = exports.translitGeorgiaToLatin = exports.escapeRegex = exports.ValidatePIDPipe = exports.ValidateMongoIdPipe = exports.ClientPermissions = exports.PermissionGuardConfig = exports.PermissionsIncludeStrategy = exports.Permission = exports.generateUUID = exports.PermissionGuard = exports.CacheModule = exports.SessionService = exports.RedisService = exports.SessionClient = exports.ConfigUtil = exports.RESTResponseBody = exports.RESTError = exports.RESTResult = exports.RESTPage = exports.RESTRequestBody = exports.RESTPaging = exports.RESTSort = exports.SortPage = exports.Page = exports.Sort = exports.SortDirection = exports.RecordState = exports.StateParamDTO = exports.RecordDTO = exports.BaseExceptionsFilter = exports.validationExceptionFactory = exports.HandledException = exports.IsRoute = exports.IsMapOfStrings = exports.IsRouteConstraint = exports.IsMapOfStringsConstraint = void 0;
|
|
4
4
|
exports.RewardOriginSchema = exports.RewardOrigin = exports.RewardType = exports.RewardQuality = exports.RewardSchema = exports.Reward = exports.KAFKAJS_NO_PARTITIONER_WARNING = exports.MONGODB__CS = exports.APP__ACCESS_TOKEN = exports.APP__DEBUG = exports.APP__PORT = exports.AccessTokenGuard = exports.DictionaryService = exports.DictionaryModule = exports.DictionaryEmbedded = exports.DictionaryEmbeddedSchema = exports.Base = exports.I18nDTO = exports.getSortObj = exports.generateUserClientPermissionKeyword = exports.generateUserClientKeyword = exports.generateSessionKeyword = exports.ResourceType = exports.RESTQueryParams = exports.S3FileState = exports.S3Schema = exports.S3 = exports.LogInitiatorSchema = exports.LogInitiator = exports.FileStateSchema = exports.FileState = exports.FileRecordSchema = exports.FileRecord = exports.FileMetaSchema = exports.FileMeta = exports.FileLogSchema = exports.FileLog = exports.S3FileSchema = exports.S3File = exports.AuthorSchema = exports.Author = exports.AuthorDTO = exports.RecordSchema = exports.Record = exports.PersonSchema = exports.Person = exports.I18nSchema = exports.I18n = exports.GeoLocationSchema = exports.GeoLocation = void 0;
|
|
5
|
-
exports.RewardOriginType = void 0;
|
|
5
|
+
exports.AppLogger = exports.RewardOriginType = void 0;
|
|
6
6
|
const is_map_of_strings_constraint_1 = require("./constraints/is-map-of-strings.constraint");
|
|
7
7
|
Object.defineProperty(exports, "IsMapOfStringsConstraint", { enumerable: true, get: function () { return is_map_of_strings_constraint_1.IsMapOfStringsConstraint; } });
|
|
8
8
|
const is_route_constraint_1 = require("./constraints/is-route.constraint");
|
|
@@ -174,4 +174,6 @@ Object.defineProperty(exports, "RewardOrigin", { enumerable: true, get: function
|
|
|
174
174
|
Object.defineProperty(exports, "RewardOriginSchema", { enumerable: true, get: function () { return origin_embedded_schema_1.RewardOriginSchema; } });
|
|
175
175
|
const reward_origin_type_enum_1 = require("./models/rewards/enums/reward-origin-type.enum");
|
|
176
176
|
Object.defineProperty(exports, "RewardOriginType", { enumerable: true, get: function () { return reward_origin_type_enum_1.RewardOriginType; } });
|
|
177
|
+
const app_logger_service_1 = require("./services/app-logger.service");
|
|
178
|
+
Object.defineProperty(exports, "AppLogger", { enumerable: true, get: function () { return app_logger_service_1.AppLogger; } });
|
|
177
179
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;AAAA,6FAAsF;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { LoggerService } from '@nestjs/common';
|
|
2
|
+
import { ConfigService } from '@nestjs/config';
|
|
3
|
+
export declare class AppLogger implements LoggerService {
|
|
4
|
+
private readonly _configService;
|
|
5
|
+
private readonly _logger;
|
|
6
|
+
private readonly _graylogEnabled;
|
|
7
|
+
private readonly _graylogName;
|
|
8
|
+
private readonly _graylogLevel;
|
|
9
|
+
private readonly _graylogSilent;
|
|
10
|
+
private readonly _graylogHost;
|
|
11
|
+
private readonly _graylogPort;
|
|
12
|
+
private readonly _graylogHostname;
|
|
13
|
+
private readonly _graylogFacility;
|
|
14
|
+
constructor(_configService: ConfigService);
|
|
15
|
+
log(message: string): void;
|
|
16
|
+
error(message: string, trace?: string): void;
|
|
17
|
+
warn(message: string): void;
|
|
18
|
+
debug(message: string): void;
|
|
19
|
+
verbose(message: string): void;
|
|
20
|
+
private _createWinstonTransport;
|
|
21
|
+
private _createWinstonGrayLog;
|
|
22
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.AppLogger = void 0;
|
|
13
|
+
const common_1 = require("@nestjs/common");
|
|
14
|
+
const config_1 = require("@nestjs/config");
|
|
15
|
+
const winston = require("winston");
|
|
16
|
+
const WinstonGraylog2 = require("winston-graylog2");
|
|
17
|
+
let AppLogger = class AppLogger {
|
|
18
|
+
constructor(_configService) {
|
|
19
|
+
this._configService = _configService;
|
|
20
|
+
this._graylogEnabled = this._configService.get('GRAYLOG__ENABLED', false);
|
|
21
|
+
this._graylogName = this._configService.get('GRAYLOG__NAME', 'e-house');
|
|
22
|
+
this._graylogLevel = this._configService.get('GRAYLOG__LEVEL', 'info');
|
|
23
|
+
this._graylogSilent = this._configService.get('GRAYLOG__SILENT', false);
|
|
24
|
+
this._graylogHost = this._configService.get('GRAYLOG__HOST', 'localhost');
|
|
25
|
+
this._graylogPort = this._configService.get('GRAYLOG__PORT', 3000);
|
|
26
|
+
this._graylogHostname = this._configService.get('GRAYLOG__HOSTNAME', 'ehouse-nestjs');
|
|
27
|
+
this._graylogFacility = this._configService.get('GRAYLOG__FACILITY', 'nestjs');
|
|
28
|
+
const transports = this._createWinstonTransport();
|
|
29
|
+
if (this._graylogEnabled) {
|
|
30
|
+
transports.push(this._createWinstonGrayLog());
|
|
31
|
+
}
|
|
32
|
+
this._logger = winston.createLogger({
|
|
33
|
+
transports,
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
log(message) {
|
|
37
|
+
this._logger.info(message);
|
|
38
|
+
}
|
|
39
|
+
error(message, trace) {
|
|
40
|
+
this._logger.error(message, trace ? { trace } : undefined);
|
|
41
|
+
}
|
|
42
|
+
warn(message) {
|
|
43
|
+
this._logger.warn(message);
|
|
44
|
+
}
|
|
45
|
+
debug(message) {
|
|
46
|
+
this._logger.debug(message);
|
|
47
|
+
}
|
|
48
|
+
verbose(message) {
|
|
49
|
+
this._logger.verbose(message);
|
|
50
|
+
}
|
|
51
|
+
_createWinstonTransport() {
|
|
52
|
+
return [
|
|
53
|
+
new winston.transports.Console({
|
|
54
|
+
format: winston.format.combine(winston.format.timestamp(), winston.format.simple()),
|
|
55
|
+
}),
|
|
56
|
+
];
|
|
57
|
+
}
|
|
58
|
+
_createWinstonGrayLog() {
|
|
59
|
+
return new WinstonGraylog2({
|
|
60
|
+
name: this._graylogName,
|
|
61
|
+
level: this._graylogLevel,
|
|
62
|
+
silent: this._graylogSilent,
|
|
63
|
+
handleExceptions: true,
|
|
64
|
+
graylog: {
|
|
65
|
+
servers: [
|
|
66
|
+
{
|
|
67
|
+
host: this._graylogHost,
|
|
68
|
+
port: this._graylogPort,
|
|
69
|
+
},
|
|
70
|
+
],
|
|
71
|
+
hostname: this._graylogHostname,
|
|
72
|
+
facility: this._graylogFacility,
|
|
73
|
+
},
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
};
|
|
77
|
+
exports.AppLogger = AppLogger;
|
|
78
|
+
exports.AppLogger = AppLogger = __decorate([
|
|
79
|
+
(0, common_1.Injectable)(),
|
|
80
|
+
__metadata("design:paramtypes", [config_1.ConfigService])
|
|
81
|
+
], AppLogger);
|
|
82
|
+
//# sourceMappingURL=app-logger.service.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app-logger.service.js","sourceRoot":"","sources":["../../src/services/app-logger.service.ts"],"names":[],"mappings":"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"}
|