eh-commons 0.0.1-testing.51 → 0.0.1-testing.53

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.
Files changed (53) hide show
  1. package/dist/clients/session.client.d.ts +16 -3
  2. package/dist/clients/session.client.js +44 -3
  3. package/dist/clients/session.client.js.map +1 -1
  4. package/dist/index.d.ts +4 -2
  5. package/dist/index.js +5 -1
  6. package/dist/index.js.map +1 -1
  7. package/dist/models/dictionary/embedded/dictionary.embedded.d.ts +3 -2
  8. package/dist/models/dictionary/embedded/dictionary.embedded.js +9 -4
  9. package/dist/models/dictionary/embedded/dictionary.embedded.js.map +1 -1
  10. package/dist/models/dictionary/interfaces/dictionary-embedded.interface.d.ts +1 -0
  11. package/dist/models/dtos/author.dto.js.map +1 -1
  12. package/dist/models/interfaces/session/session.interface.d.ts +1 -1
  13. package/dist/models/session/interfaces/session-client-data.interface.d.ts +20 -0
  14. package/dist/models/session/interfaces/session-client-data.interface.js +7 -0
  15. package/dist/models/session/interfaces/session-client-data.interface.js.map +1 -0
  16. package/dist/models/session/interfaces/session-user-data.interface.d.ts +9 -0
  17. package/dist/models/session/interfaces/session-user-data.interface.js +3 -0
  18. package/dist/models/session/interfaces/session-user-data.interface.js.map +1 -0
  19. package/dist/models/wrappers/permission-guard-config.wrapper.d.ts +1 -4
  20. package/dist/models/wrappers/permission-guard-config.wrapper.js +0 -3
  21. package/dist/models/wrappers/permission-guard-config.wrapper.js.map +1 -1
  22. package/dist/modules/cache/guards/permission.guard.d.ts +4 -3
  23. package/dist/modules/cache/guards/permission.guard.js +34 -44
  24. package/dist/modules/cache/guards/permission.guard.js.map +1 -1
  25. package/dist/modules/cache/services/session.service.d.ts +6 -0
  26. package/dist/modules/cache/services/session.service.js +9 -0
  27. package/dist/modules/cache/services/session.service.js.map +1 -1
  28. package/dist/modules/dictionary/dictionary.module.d.ts +2 -0
  29. package/dist/modules/dictionary/dictionary.module.js +24 -0
  30. package/dist/modules/dictionary/dictionary.module.js.map +1 -0
  31. package/dist/modules/dictionary/dtos/dictionary-list.dto.d.ts +10 -0
  32. package/dist/modules/dictionary/dtos/dictionary-list.dto.js +59 -0
  33. package/dist/modules/dictionary/dtos/dictionary-list.dto.js.map +1 -0
  34. package/dist/modules/dictionary/services/dictionary.service.d.ts +18 -0
  35. package/dist/modules/dictionary/services/dictionary.service.js +137 -0
  36. package/dist/modules/dictionary/services/dictionary.service.js.map +1 -0
  37. package/dist/tsconfig.tsbuildinfo +1 -1
  38. package/package.json +4 -2
  39. package/src/clients/session.client.ts +68 -8
  40. package/src/index.ts +10 -2
  41. package/src/models/dictionary/embedded/dictionary.embedded.ts +7 -4
  42. package/src/models/dictionary/interfaces/dictionary-embedded.interface.ts +1 -0
  43. package/src/models/dtos/author.dto.ts +1 -1
  44. package/src/models/interfaces/session/session.interface.ts +1 -1
  45. package/src/models/session/interfaces/session-client-data.interface.ts +21 -0
  46. package/src/models/session/interfaces/session-user-data.interface.ts +10 -0
  47. package/src/models/wrappers/permission-guard-config.wrapper.ts +1 -3
  48. package/src/modules/cache/guards/permission.guard.ts +50 -114
  49. package/src/modules/cache/services/session.service.ts +12 -0
  50. package/src/modules/dictionary/dictionary.module.ts +11 -0
  51. package/src/modules/dictionary/dtos/dictionary-list.dto.ts +46 -0
  52. package/src/modules/dictionary/services/dictionary.service.ts +177 -0
  53. package/src/models/interfaces/session/session-data.interface.ts +0 -11
@@ -1,10 +1,23 @@
1
1
  import * as IORedis from 'ioredis';
2
+ import { ISessionUserData } from '../models/session/interfaces/session-user-data.interface';
3
+ import { Observable } from 'rxjs';
4
+ import { ISessionClientData } from '../models/session/interfaces/session-client-data.interface';
5
+ import { IClient } from '../models/um/interfaces/client.interface';
6
+ import { IPermission } from '../models/um/interfaces/permission.interface';
2
7
  export declare class SessionClient {
3
8
  private redisClient;
4
9
  constructor(client: IORedis.Redis);
5
- get(key: string): Promise<string>;
6
- set(key: string, value: string): Promise<string>;
7
- delete(key: string): Promise<number>;
10
+ private get;
11
+ private set;
12
+ private delete;
13
+ getUserData(token: string): Observable<ISessionUserData>;
14
+ getUserClients(userId: string): Observable<Map<string, ISessionClientData>>;
15
+ getUserClientPermissions(userId: string, clientId: string): Observable<{
16
+ client: IClient;
17
+ permissions: IPermission[];
18
+ }>;
8
19
  private parseUser;
20
+ private parseClient;
21
+ private parsePermissions;
9
22
  private parse;
10
23
  }
@@ -1,18 +1,41 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SessionClient = void 0;
4
+ const keyword_function_1 = require("../functions/session/keyword.function");
5
+ const rxjs_1 = require("rxjs");
4
6
  class SessionClient {
5
7
  constructor(client) {
6
8
  this.redisClient = client;
7
9
  }
8
10
  get(key) {
9
- return this.redisClient.get(key);
11
+ return (0, rxjs_1.from)(this.redisClient.get(key));
10
12
  }
11
13
  set(key, value) {
12
- return this.redisClient.set(key, value);
14
+ return (0, rxjs_1.from)(this.redisClient.set(key, value));
13
15
  }
14
16
  delete(key) {
15
- return this.redisClient.del(key);
17
+ return (0, rxjs_1.from)(this.redisClient.del(key));
18
+ }
19
+ getUserData(token) {
20
+ const key = (0, keyword_function_1.generateSessionKeyword)(token);
21
+ const userDataString$ = this.get(key);
22
+ return userDataString$.pipe((0, rxjs_1.map)((userDataString) => {
23
+ return this.parseUser(userDataString);
24
+ }));
25
+ }
26
+ getUserClients(userId) {
27
+ const key = (0, keyword_function_1.generateUserClientKeyword)(userId);
28
+ const clientDataString$ = this.get(key);
29
+ return clientDataString$.pipe((0, rxjs_1.map)((clientDataString) => {
30
+ return this.parseClient(clientDataString);
31
+ }));
32
+ }
33
+ getUserClientPermissions(userId, clientId) {
34
+ const key = (0, keyword_function_1.generateUserClientPermissionKeyword)(userId, clientId);
35
+ const userClientPermissionsString$ = this.get(key);
36
+ return userClientPermissionsString$.pipe((0, rxjs_1.map)((userClientPermissionsString) => {
37
+ return this.parsePermissions(userClientPermissionsString);
38
+ }));
16
39
  }
17
40
  parseUser(jsonString) {
18
41
  try {
@@ -23,6 +46,24 @@ class SessionClient {
23
46
  return null;
24
47
  }
25
48
  }
49
+ parseClient(jsonString) {
50
+ try {
51
+ const parsedClient = JSON.parse(jsonString);
52
+ return parsedClient;
53
+ }
54
+ catch (error) {
55
+ return null;
56
+ }
57
+ }
58
+ parsePermissions(jsonString) {
59
+ try {
60
+ const parsedPermissions = JSON.parse(jsonString);
61
+ return parsedPermissions;
62
+ }
63
+ catch (error) {
64
+ return null;
65
+ }
66
+ }
26
67
  parse(jsonString) {
27
68
  try {
28
69
  const result = JSON.parse(jsonString);
@@ -1 +1 @@
1
- {"version":3,"file":"session.client.js","sourceRoot":"","sources":["../../src/clients/session.client.ts"],"names":[],"mappings":";;;AAIA,MAAa,aAAa;IAGxB,YAAY,MAAqB;QAC/B,IAAI,CAAC,WAAW,GAAG,MAAM,CAAC;IAC5B,CAAC;IAEM,GAAG,CAAC,GAAW;QACpB,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACnC,CAAC;IAEM,GAAG,CAAC,GAAW,EAAE,KAAa;QACnC,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;IAC1C,CAAC;IAEM,MAAM,CAAC,GAAW;QACvB,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACnC,CAAC;IAEO,SAAS,CAAC,UAAkB;QAClC,IAAI,CAAC;YACH,MAAM,UAAU,GAAqB,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC;YAC5D,OAAO,UAAU,CAAC;QACpB,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,OAAO,IAAI,CAAC;QACd,CAAC;IACH,CAAC;IAEO,KAAK,CAAI,UAAkB;QACjC,IAAI,CAAC;YACH,MAAM,MAAM,GAAM,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC;YACzC,OAAO,MAAM,CAAC;QAChB,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,OAAO,IAAI,CAAC;QACd,CAAC;IACH,CAAC;CAEF;AArCD,sCAqCC"}
1
+ {"version":3,"file":"session.client.js","sourceRoot":"","sources":["../../src/clients/session.client.ts"],"names":[],"mappings":"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"}
package/dist/index.d.ts CHANGED
@@ -11,7 +11,7 @@ import { RecordState } from './models/util/enums/record-state.enum';
11
11
  import { IMongoPage, RESTError, RESTPage, RESTPaging, RESTQueryParams, RESTRequestBody, RESTResponseBody, RESTResult, RESTSort, SortDirection } from './models/wrappers/rest-wrapper.class';
12
12
  import { ConfigUtil } from './utils/config-util.class';
13
13
  import { ISession } from './models/interfaces/session/session.interface';
14
- import { ISessionUserData } from './models/interfaces/session/session-data.interface';
14
+ import { ISessionUserData } from './models/session/interfaces/session-user-data.interface';
15
15
  import { SessionClient } from './clients/session.client';
16
16
  import { RedisService } from './modules/cache/services/redis.service';
17
17
  import { SessionService } from './modules/cache/services/session.service';
@@ -86,4 +86,6 @@ import { Base } from './models/commons/schemas/base.schema';
86
86
  import { DictionaryEmbedded, DictionaryEmbeddedDocument, DictionaryEmbeddedSchema } from './models/dictionary/embedded/dictionary.embedded';
87
87
  import { IDictionaryEmbedded } from './models/dictionary/interfaces/dictionary-embedded.interface';
88
88
  import { IDictionaryEvent } from './models/dictionary/interfaces/dictionary-event.interface';
89
- 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, 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, };
89
+ import { DictionaryModule } from './modules/dictionary/dictionary.module';
90
+ import { DictionaryService } from './modules/dictionary/services/dictionary.service';
91
+ 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, 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, };
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GeoLocation = 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.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
- 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 = void 0;
4
+ 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 = void 0;
5
5
  const is_map_of_strings_constraint_1 = require("./constraints/is-map-of-strings.constraint");
6
6
  Object.defineProperty(exports, "IsMapOfStringsConstraint", { enumerable: true, get: function () { return is_map_of_strings_constraint_1.IsMapOfStringsConstraint; } });
7
7
  const is_route_constraint_1 = require("./constraints/is-route.constraint");
@@ -147,4 +147,8 @@ Object.defineProperty(exports, "Base", { enumerable: true, get: function () { re
147
147
  const dictionary_embedded_1 = require("./models/dictionary/embedded/dictionary.embedded");
148
148
  Object.defineProperty(exports, "DictionaryEmbedded", { enumerable: true, get: function () { return dictionary_embedded_1.DictionaryEmbedded; } });
149
149
  Object.defineProperty(exports, "DictionaryEmbeddedSchema", { enumerable: true, get: function () { return dictionary_embedded_1.DictionaryEmbeddedSchema; } });
150
+ const dictionary_module_1 = require("./modules/dictionary/dictionary.module");
151
+ Object.defineProperty(exports, "DictionaryModule", { enumerable: true, get: function () { return dictionary_module_1.DictionaryModule; } });
152
+ const dictionary_service_1 = require("./modules/dictionary/services/dictionary.service");
153
+ Object.defineProperty(exports, "DictionaryService", { enumerable: true, get: function () { return dictionary_service_1.DictionaryService; } });
150
154
  //# 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":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
@@ -1,5 +1,5 @@
1
1
  import { HydratedDocument } from 'mongoose';
2
- import { mongo, Schema as MongooseSchema } from 'mongoose';
2
+ import { mongo } from 'mongoose';
3
3
  import { I18n } from '../../util/embedded/i18n.embedded';
4
4
  import { IDictionaryEmbedded } from '../interfaces/dictionary-embedded.interface';
5
5
  import { RecordState } from '../../util/enums/record-state.enum';
@@ -8,9 +8,10 @@ export declare class DictionaryEmbedded implements IDictionaryEmbedded {
8
8
  keyword: string;
9
9
  record: RecordState;
10
10
  originId: mongo.ObjectId;
11
+ originIds: mongo.ObjectId[];
11
12
  dictionaryId: mongo.ObjectId;
12
13
  }
13
- export declare const DictionaryEmbeddedSchema: MongooseSchema<DictionaryEmbedded, import("mongoose").Model<DictionaryEmbedded, any, any, any, import("mongoose").Document<unknown, any, DictionaryEmbedded> & DictionaryEmbedded & {
14
+ export declare const DictionaryEmbeddedSchema: import("mongoose").Schema<DictionaryEmbedded, import("mongoose").Model<DictionaryEmbedded, any, any, any, import("mongoose").Document<unknown, any, DictionaryEmbedded> & DictionaryEmbedded & {
14
15
  _id: import("mongoose").Types.ObjectId;
15
16
  }, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, DictionaryEmbedded, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<DictionaryEmbedded>> & import("mongoose").FlatRecord<DictionaryEmbedded> & {
16
17
  _id: import("mongoose").Types.ObjectId;
@@ -12,6 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.DictionaryEmbeddedSchema = exports.DictionaryEmbedded = void 0;
13
13
  const mongoose_1 = require("@nestjs/mongoose");
14
14
  const mongoose_2 = require("mongoose");
15
+ const mongoose_3 = require("mongoose");
15
16
  const i18n_embedded_1 = require("../../util/embedded/i18n.embedded");
16
17
  const record_state_enum_1 = require("../../util/enums/record-state.enum");
17
18
  let DictionaryEmbedded = class DictionaryEmbedded {
@@ -30,12 +31,16 @@ __decorate([
30
31
  __metadata("design:type", String)
31
32
  ], DictionaryEmbedded.prototype, "record", void 0);
32
33
  __decorate([
33
- (0, mongoose_1.Prop)({ type: mongoose_2.Schema.ObjectId, required: false }),
34
- __metadata("design:type", mongoose_2.mongo.ObjectId)
34
+ (0, mongoose_1.Prop)({ type: mongoose_2.SchemaTypes.ObjectId, required: false }),
35
+ __metadata("design:type", mongoose_3.mongo.ObjectId)
35
36
  ], DictionaryEmbedded.prototype, "originId", void 0);
36
37
  __decorate([
37
- (0, mongoose_1.Prop)({ type: mongoose_2.Schema.ObjectId, required: false }),
38
- __metadata("design:type", mongoose_2.mongo.ObjectId)
38
+ (0, mongoose_1.Prop)({ type: [mongoose_2.SchemaTypes.ObjectId], required: false }),
39
+ __metadata("design:type", Array)
40
+ ], DictionaryEmbedded.prototype, "originIds", void 0);
41
+ __decorate([
42
+ (0, mongoose_1.Prop)({ type: mongoose_2.SchemaTypes.ObjectId, required: false }),
43
+ __metadata("design:type", mongoose_3.mongo.ObjectId)
39
44
  ], DictionaryEmbedded.prototype, "dictionaryId", void 0);
40
45
  exports.DictionaryEmbedded = DictionaryEmbedded = __decorate([
41
46
  (0, mongoose_1.Schema)({ _id: false })
@@ -1 +1 @@
1
- {"version":3,"file":"dictionary.embedded.js","sourceRoot":"","sources":["../../../../src/models/dictionary/embedded/dictionary.embedded.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAA+D;AAE/D,uCAA2D;AAC3D,qEAAqE;AAErE,0EAAiE;AAG1D,IAAM,kBAAkB,GAAxB,MAAM,kBAAkB;CAe9B,CAAA;AAfY,gDAAkB;AAE7B;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,0BAAU,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;8BACrC,oBAAI;iDAAC;AAGZ;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;mDACxB;AAGhB;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,IAAI,EAAE,+BAAW,EAAE,CAAC;;kDACvC;AAGpB;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,iBAAc,CAAC,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;8BAC/C,gBAAK,CAAC,QAAQ;oDAAC;AAGzB;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,iBAAc,CAAC,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;8BAC3C,gBAAK,CAAC,QAAQ;wDAAC;6BAdlB,kBAAkB;IAD9B,IAAA,iBAAM,EAAC,EAAE,GAAG,EAAE,KAAK,EAAE,CAAC;GACV,kBAAkB,CAe9B;AAEY,QAAA,wBAAwB,GACnC,wBAAa,CAAC,cAAc,CAAC,kBAAkB,CAAC,CAAC"}
1
+ {"version":3,"file":"dictionary.embedded.js","sourceRoot":"","sources":["../../../../src/models/dictionary/embedded/dictionary.embedded.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,+CAA+D;AAC/D,uCAAyD;AACzD,uCAAiC;AACjC,qEAAqE;AAErE,0EAAiE;AAG1D,IAAM,kBAAkB,GAAxB,MAAM,kBAAkB;CAkB9B,CAAA;AAlBY,gDAAkB;AAE7B;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,0BAAU,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;8BACrC,oBAAI;iDAAC;AAGZ;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;mDACxB;AAGhB;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,IAAI,EAAE,+BAAW,EAAE,CAAC;;kDACvC;AAGpB;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,sBAAW,CAAC,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;8BAC5C,gBAAK,CAAC,QAAQ;oDAAC;AAGzB;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,CAAC,sBAAW,CAAC,QAAQ,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;qDAC5B;AAG5B;IADC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,sBAAW,CAAC,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;8BACxC,gBAAK,CAAC,QAAQ;wDAAC;6BAjBlB,kBAAkB;IAD9B,IAAA,iBAAM,EAAC,EAAE,GAAG,EAAE,KAAK,EAAE,CAAC;GACV,kBAAkB,CAkB9B;AAEY,QAAA,wBAAwB,GACnC,wBAAa,CAAC,cAAc,CAAC,kBAAkB,CAAC,CAAC"}
@@ -3,6 +3,7 @@ import { II18n } from '../../util/interfaces/i18n.interface';
3
3
  import { RecordState } from '../../util/enums/record-state.enum';
4
4
  export interface IDictionaryEmbedded {
5
5
  originId: mongo.ObjectId;
6
+ originIds: mongo.ObjectId[];
6
7
  dictionaryId: mongo.ObjectId;
7
8
  title: II18n;
8
9
  keyword: string;
@@ -1 +1 @@
1
- {"version":3,"file":"author.dto.js","sourceRoot":"","sources":["../../../src/models/dtos/author.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAkE;AAElE,MAAa,SAAS;CAQrB;AARD,8BAQC;AALQ;IAFN,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;yCACU;AAItB;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;2CACI"}
1
+ {"version":3,"file":"author.dto.js","sourceRoot":"","sources":["../../../src/models/dtos/author.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAkE;AAElE,MAAa,SAAS;CAQrB;AARD,8BAQC;AALC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,2BAAS,GAAE;;yCACG;AAIf;IAFC,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;;2CACI"}
@@ -1,4 +1,4 @@
1
- import { ISessionUserData } from "./session-data.interface";
1
+ import { ISessionUserData } from "../../session/interfaces/session-user-data.interface";
2
2
  export interface ISession {
3
3
  token: string;
4
4
  userAgent: string;
@@ -0,0 +1,20 @@
1
+ import { IDictionaryEmbedded } from '../../dictionary/interfaces/dictionary-embedded.interface';
2
+ import { IPermission } from '../../um/interfaces/permission.interface';
3
+ import { IAddress } from '../../util/interfaces/address.interface';
4
+ import { IContact } from '../../util/interfaces/contact.interface';
5
+ import { II18n } from '../../util/interfaces/i18n.interface';
6
+ export declare class ISessionClientData {
7
+ clientId: string;
8
+ type: IDictionaryEmbedded;
9
+ name: II18n;
10
+ address: IAddress;
11
+ highland: boolean;
12
+ code: string;
13
+ contacts: IContact[];
14
+ region: IDictionaryEmbedded;
15
+ district: IDictionaryEmbedded;
16
+ languageSectors: IDictionaryEmbedded[];
17
+ levels: IDictionaryEmbedded[];
18
+ subjects: IDictionaryEmbedded[];
19
+ permissions: IPermission[];
20
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ISessionClientData = void 0;
4
+ class ISessionClientData {
5
+ }
6
+ exports.ISessionClientData = ISessionClientData;
7
+ //# sourceMappingURL=session-client-data.interface.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"session-client-data.interface.js","sourceRoot":"","sources":["../../../../src/models/session/interfaces/session-client-data.interface.ts"],"names":[],"mappings":";;;AAMA,MAAa,kBAAkB;CAc9B;AAdD,gDAcC"}
@@ -0,0 +1,9 @@
1
+ import { IDictionaryEmbedded } from '../../dictionary/interfaces/dictionary-embedded.interface';
2
+ export interface ISessionUserData {
3
+ userId: string;
4
+ username: string;
5
+ fistName: string;
6
+ lastName: string;
7
+ pid: string;
8
+ subjects: IDictionaryEmbedded[];
9
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=session-user-data.interface.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"session-user-data.interface.js","sourceRoot":"","sources":["../../../../src/models/session/interfaces/session-user-data.interface.ts"],"names":[],"mappings":""}
@@ -1,6 +1,3 @@
1
- import { PermissionsIncludeStrategy } from '../um/enums/permission-include-strategy.enum';
2
1
  export declare class PermissionGuardConfig {
3
- appAbbr?: string;
4
- includeStrategy?: PermissionsIncludeStrategy;
5
- keyword?: string;
2
+ keyword: string;
6
3
  }
@@ -2,9 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PermissionGuardConfig = void 0;
4
4
  class PermissionGuardConfig {
5
- constructor() {
6
- this.appAbbr = 'EH';
7
- }
8
5
  }
9
6
  exports.PermissionGuardConfig = PermissionGuardConfig;
10
7
  //# sourceMappingURL=permission-guard-config.wrapper.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"permission-guard-config.wrapper.js","sourceRoot":"","sources":["../../../src/models/wrappers/permission-guard-config.wrapper.ts"],"names":[],"mappings":";;;AAEA,MAAa,qBAAqB;IAAlC;QACE,YAAO,GAAY,IAAI,CAAC;IAG1B,CAAC;CAAA;AAJD,sDAIC"}
1
+ {"version":3,"file":"permission-guard-config.wrapper.js","sourceRoot":"","sources":["../../../src/models/wrappers/permission-guard-config.wrapper.ts"],"names":[],"mappings":";;;AAEA,MAAa,qBAAqB;CAEjC;AAFD,sDAEC"}
@@ -1,14 +1,15 @@
1
1
  import { CanActivate, ExecutionContext } from '@nestjs/common';
2
2
  import { SessionService } from '../services/session.service';
3
3
  import { Reflector } from '@nestjs/core';
4
+ import { Observable } from 'rxjs';
4
5
  export declare class PermissionGuard implements CanActivate {
5
6
  private sessionService;
6
7
  private reflector;
7
8
  constructor(sessionService: SessionService, reflector: Reflector);
8
- canActivate(context: ExecutionContext): Promise<boolean>;
9
+ canActivate(context: ExecutionContext): Observable<boolean>;
9
10
  private getTokenFromHeaders;
10
11
  private getClientIdFromQuery;
11
- private getPermissionAbbr;
12
- private checkPerrmission;
12
+ private checkPermission;
13
13
  private setUserData;
14
+ private validateUserData;
14
15
  }
@@ -14,52 +14,39 @@ const common_1 = require("@nestjs/common");
14
14
  const session_service_1 = require("../services/session.service");
15
15
  const core_1 = require("@nestjs/core");
16
16
  const permission_reflector_1 = require("../reflector/permission.reflector");
17
- const permission_include_strategy_enum_1 = require("../../../models/um/enums/permission-include-strategy.enum");
18
17
  const rest_wrapper_class_1 = require("../../../models/wrappers/rest-wrapper.class");
18
+ const rxjs_1 = require("rxjs");
19
19
  let PermissionGuard = class PermissionGuard {
20
20
  constructor(sessionService, reflector) {
21
21
  this.sessionService = sessionService;
22
22
  this.reflector = reflector;
23
23
  }
24
- async canActivate(context) {
24
+ canActivate(context) {
25
25
  const config = this.reflector.get(permission_reflector_1.Permission, context.getHandler());
26
26
  const request = context.switchToHttp().getRequest();
27
27
  const queryParameters = request.query;
28
28
  const headers = request.headers;
29
29
  const token = this.getTokenFromHeaders(headers);
30
- if (!token)
31
- rest_wrapper_class_1.RESTError.throw('unauthorized', common_1.HttpStatus.UNAUTHORIZED);
32
- const userData = {};
33
- if (!userData) {
34
- rest_wrapper_class_1.RESTError.throw('unauthorized', common_1.HttpStatus.UNAUTHORIZED);
35
- return false;
30
+ if (!token) {
31
+ throw new rest_wrapper_class_1.RESTError('unauthorized', common_1.HttpStatus.UNAUTHORIZED);
36
32
  }
37
- const abbr = config.appAbbr;
38
33
  const clientId = this.getClientIdFromQuery(queryParameters);
39
- let clientPermissionsArray;
40
- switch (config.includeStrategy) {
41
- case permission_include_strategy_enum_1.PermissionsIncludeStrategy.ONLY_CHECK:
42
- break;
43
- case permission_include_strategy_enum_1.PermissionsIncludeStrategy.CHECK_AND_INCLUDE_ALL:
44
- break;
45
- case permission_include_strategy_enum_1.PermissionsIncludeStrategy.CHECK_AND_INCLUDE_SELECTED:
46
- if (!clientId) {
47
- rest_wrapper_class_1.RESTError.throw('CLIENT_ID_REQUIRED', common_1.HttpStatus.FORBIDDEN);
48
- }
49
- break;
50
- }
51
- if (config.includeStrategy) {
52
- if (!clientId) {
53
- rest_wrapper_class_1.RESTError.throw('CLIENT_ID_REQUIRED', common_1.HttpStatus.FORBIDDEN);
54
- }
55
- if (!clientPermissionsArray || clientPermissionsArray.length <= 0) {
56
- }
57
- const selectedPermissions = clientPermissionsArray.find((clientPermissions) => clientPermissions.clientId === clientId);
58
- return this.checkPerrmission(((selectedPermissions || {}).permissions || []), config.keyword);
59
- }
60
- else {
61
- return true;
62
- }
34
+ const userData$ = this.sessionService.getUserData(token);
35
+ const result$ = userData$.pipe((0, rxjs_1.map)(this.validateUserData), (0, rxjs_1.mergeMap)((userData) => {
36
+ return this.sessionService
37
+ .getUserClientPermissions(userData.userId, clientId)
38
+ .pipe((0, rxjs_1.map)((data) => {
39
+ return {
40
+ user: userData,
41
+ client: data.client,
42
+ permissions: data.permissions,
43
+ };
44
+ }));
45
+ }), (0, rxjs_1.map)((data) => {
46
+ this.setUserData(data.user, data.client, data.permissions, request);
47
+ return this.checkPermission(data.permissions, config.keyword);
48
+ }));
49
+ return result$;
63
50
  }
64
51
  getTokenFromHeaders(headers) {
65
52
  let token = headers.authorization;
@@ -70,24 +57,27 @@ let PermissionGuard = class PermissionGuard {
70
57
  return token;
71
58
  }
72
59
  getClientIdFromQuery(queryParameters) {
73
- return +queryParameters.clientId;
60
+ return queryParameters.clientId;
74
61
  }
75
- getPermissionAbbr(inputString) {
76
- const parts = inputString.split('.');
77
- if (parts.length > 1) {
78
- return parts[0];
62
+ checkPermission(userPermissions, allowedPermission) {
63
+ if (allowedPermission) {
64
+ return userPermissions.some((item) => item.keyword === allowedPermission);
79
65
  }
80
66
  else {
81
- return inputString;
67
+ return true;
82
68
  }
83
69
  }
84
- checkPerrmission(userPermissions, allowedPermission) {
85
- return !allowedPermission || userPermissions.includes(allowedPermission);
86
- }
87
- setUserData(userData, clientPermissions, request) {
88
- const userInfo = Object.assign(Object.assign({}, userData), { clientPermissions });
70
+ setUserData(userData, client, permissions, request) {
71
+ const userInfo = Object.assign(Object.assign({}, userData), { client,
72
+ permissions });
89
73
  request['user'] = userInfo;
90
74
  }
75
+ validateUserData(userData) {
76
+ if (!userData) {
77
+ throw new rest_wrapper_class_1.RESTError('unauthorized', common_1.HttpStatus.UNAUTHORIZED);
78
+ }
79
+ return userData;
80
+ }
91
81
  };
92
82
  exports.PermissionGuard = PermissionGuard;
93
83
  exports.PermissionGuard = PermissionGuard = __decorate([
@@ -1 +1 @@
1
- {"version":3,"file":"permission.guard.js","sourceRoot":"","sources":["../../../../src/modules/cache/guards/permission.guard.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"permission.guard.js","sourceRoot":"","sources":["../../../../src/modules/cache/guards/permission.guard.ts"],"names":[],"mappings":"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"}
@@ -3,4 +3,10 @@ export declare class SessionService {
3
3
  private redisService;
4
4
  private sessionClient;
5
5
  constructor(redisService: RedisService);
6
+ getUserData(token: string): import("rxjs").Observable<import("../../..").ISessionUserData>;
7
+ getClientData(userId: string): import("rxjs").Observable<Map<string, import("../../../models/session/interfaces/session-client-data.interface").ISessionClientData>>;
8
+ getUserClientPermissions(userId: string, clientId: string): import("rxjs").Observable<{
9
+ client: import("../../..").IClient;
10
+ permissions: import("../../..").IPermission[];
11
+ }>;
6
12
  }
@@ -18,6 +18,15 @@ let SessionService = class SessionService {
18
18
  this.redisService = redisService;
19
19
  this.sessionClient = new session_client_1.SessionClient(this.redisService.getRedisClient());
20
20
  }
21
+ getUserData(token) {
22
+ return this.sessionClient.getUserData(token);
23
+ }
24
+ getClientData(userId) {
25
+ return this.sessionClient.getUserClients(userId);
26
+ }
27
+ getUserClientPermissions(userId, clientId) {
28
+ return this.sessionClient.getUserClientPermissions(userId, clientId);
29
+ }
21
30
  };
22
31
  exports.SessionService = SessionService;
23
32
  exports.SessionService = SessionService = __decorate([
@@ -1 +1 @@
1
- {"version":3,"file":"session.service.js","sourceRoot":"","sources":["../../../../src/modules/cache/services/session.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,mDAA+C;AAC/C,oEAAgE;AAGzD,IAAM,cAAc,GAApB,MAAM,cAAc;IAEzB,YAAoB,YAA0B;QAA1B,iBAAY,GAAZ,YAAY,CAAc;QAC5C,IAAI,CAAC,aAAa,GAAG,IAAI,8BAAa,CAAC,IAAI,CAAC,YAAY,CAAC,cAAc,EAAE,CAAC,CAAC;IAC7E,CAAC;CACF,CAAA;AALY,wCAAc;yBAAd,cAAc;IAD1B,IAAA,mBAAU,GAAE;qCAGuB,4BAAY;GAFnC,cAAc,CAK1B"}
1
+ {"version":3,"file":"session.service.js","sourceRoot":"","sources":["../../../../src/modules/cache/services/session.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,mDAA+C;AAC/C,oEAAgE;AAGzD,IAAM,cAAc,GAApB,MAAM,cAAc;IAEzB,YAAoB,YAA0B;QAA1B,iBAAY,GAAZ,YAAY,CAAc;QAC5C,IAAI,CAAC,aAAa,GAAG,IAAI,8BAAa,CAAC,IAAI,CAAC,YAAY,CAAC,cAAc,EAAE,CAAC,CAAC;IAC7E,CAAC;IAEM,WAAW,CAAC,KAAa;QAC9B,OAAO,IAAI,CAAC,aAAa,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;IAC/C,CAAC;IAEM,aAAa,CAAC,MAAc;QACjC,OAAO,IAAI,CAAC,aAAa,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC;IACnD,CAAC;IAEM,wBAAwB,CAAC,MAAc,EAAE,QAAgB;QAC9D,OAAO,IAAI,CAAC,aAAa,CAAC,wBAAwB,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;IACvE,CAAC;CACF,CAAA;AAjBY,wCAAc;yBAAd,cAAc;IAD1B,IAAA,mBAAU,GAAE;qCAGuB,4BAAY;GAFnC,cAAc,CAiB1B"}
@@ -0,0 +1,2 @@
1
+ export declare class DictionaryModule {
2
+ }
@@ -0,0 +1,24 @@
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
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ exports.DictionaryModule = void 0;
10
+ const common_1 = require("@nestjs/common");
11
+ const dictionary_service_1 = require("./services/dictionary.service");
12
+ const config_1 = require("@nestjs/config");
13
+ let DictionaryModule = class DictionaryModule {
14
+ };
15
+ exports.DictionaryModule = DictionaryModule;
16
+ exports.DictionaryModule = DictionaryModule = __decorate([
17
+ (0, common_1.Module)({
18
+ imports: [config_1.ConfigModule],
19
+ controllers: [],
20
+ providers: [dictionary_service_1.DictionaryService],
21
+ exports: [dictionary_service_1.DictionaryService],
22
+ })
23
+ ], DictionaryModule);
24
+ //# sourceMappingURL=dictionary.module.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dictionary.module.js","sourceRoot":"","sources":["../../../src/modules/dictionary/dictionary.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,2CAAwC;AACxC,sEAAkE;AAClE,2CAA8C;AAQvC,IAAM,gBAAgB,GAAtB,MAAM,gBAAgB;CAAG,CAAA;AAAnB,4CAAgB;2BAAhB,gBAAgB;IAN5B,IAAA,eAAM,EAAC;QACN,OAAO,EAAE,CAAC,qBAAY,CAAC;QACvB,WAAW,EAAE,EAAE;QACf,SAAS,EAAE,CAAC,sCAAiB,CAAC;QAC9B,OAAO,EAAE,CAAC,sCAAiB,CAAC;KAC7B,CAAC;GACW,gBAAgB,CAAG"}
@@ -0,0 +1,10 @@
1
+ import { RecordState } from '../../../models/util/enums/record-state.enum';
2
+ export declare class DictionaryListDTO {
3
+ rootOnly: boolean;
4
+ keyword: string;
5
+ title: string;
6
+ parentId: string;
7
+ originId: string;
8
+ recordStates: RecordState[];
9
+ ids: string[];
10
+ }