@tomei/sso 0.2.2 → 0.2.5

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 (152) hide show
  1. package/.commitlintrc.json +22 -22
  2. package/.prettierrc +4 -4
  3. package/Jenkinsfile +46 -0
  4. package/README.md +23 -23
  5. package/__tests__/unit/components/login-history/login-history.repository.spec.ts +95 -95
  6. package/__tests__/unit/components/login-user/login-user.spec.ts +223 -223
  7. package/__tests__/unit/components/login-user/user.repository.spec.ts +81 -81
  8. package/__tests__/unit/components/password-hash/password-hash.service.spec.ts +31 -32
  9. package/__tests__/unit/components/system-access/system-access.repository.spec.ts +78 -78
  10. package/__tests__/unit/redis-client/redis.service.spec.ts +23 -23
  11. package/__tests__/unit/session/session.service.spec.ts +27 -27
  12. package/create-sso-user.sql +39 -39
  13. package/dist/__tests__/unit/components/login-history/login-history.repository.spec.d.ts +1 -1
  14. package/dist/__tests__/unit/components/login-history/login-history.repository.spec.js +98 -98
  15. package/dist/__tests__/unit/components/login-user/login-user.spec.d.ts +1 -1
  16. package/dist/__tests__/unit/components/login-user/login-user.spec.js +207 -207
  17. package/dist/__tests__/unit/components/login-user/login-user.spec.js.map +1 -1
  18. package/dist/__tests__/unit/components/login-user/user.repository.spec.d.ts +1 -1
  19. package/dist/__tests__/unit/components/login-user/user.repository.spec.js +77 -77
  20. package/dist/__tests__/unit/components/password-hash/password-hash.service.spec.d.ts +1 -1
  21. package/dist/__tests__/unit/components/password-hash/password-hash.service.spec.js +37 -37
  22. package/dist/__tests__/unit/components/password-hash/password-hash.service.spec.js.map +1 -1
  23. package/dist/__tests__/unit/components/system/system.repository.spec.d.ts +1 -1
  24. package/dist/__tests__/unit/components/system/system.repository.spec.js +84 -84
  25. package/dist/__tests__/unit/components/system-access/system-access.repository.spec.d.ts +1 -1
  26. package/dist/__tests__/unit/components/system-access/system-access.repository.spec.js +74 -74
  27. package/dist/__tests__/unit/redis-client/redis.service.spec.d.ts +1 -1
  28. package/dist/__tests__/unit/redis-client/redis.service.spec.js +31 -31
  29. package/dist/__tests__/unit/session/session.service.spec.d.ts +1 -1
  30. package/dist/__tests__/unit/session/session.service.spec.js +35 -35
  31. package/dist/index.d.ts +1 -1
  32. package/dist/index.js +17 -17
  33. package/dist/src/components/index.d.ts +7 -7
  34. package/dist/src/components/index.js +23 -23
  35. package/dist/src/components/login-history/index.d.ts +1 -1
  36. package/dist/src/components/login-history/index.js +17 -17
  37. package/dist/src/components/login-history/login-history.repository.d.ts +9 -9
  38. package/dist/src/components/login-history/login-history.repository.js +49 -49
  39. package/dist/src/components/login-user/index.d.ts +3 -3
  40. package/dist/src/components/login-user/index.js +19 -19
  41. package/dist/src/components/login-user/interfaces/index.d.ts +1 -1
  42. package/dist/src/components/login-user/interfaces/index.js +17 -17
  43. package/dist/src/components/login-user/interfaces/user-info.interface.d.ts +9 -9
  44. package/dist/src/components/login-user/interfaces/user-info.interface.js +2 -2
  45. package/dist/src/components/login-user/login-user.d.ts +41 -41
  46. package/dist/src/components/login-user/login-user.js +332 -332
  47. package/dist/src/components/login-user/user.repository.d.ts +9 -9
  48. package/dist/src/components/login-user/user.repository.js +49 -49
  49. package/dist/src/components/password-hash/index.d.ts +2 -2
  50. package/dist/src/components/password-hash/index.js +18 -18
  51. package/dist/src/components/password-hash/interfaces/index.d.ts +1 -1
  52. package/dist/src/components/password-hash/interfaces/index.js +17 -17
  53. package/dist/src/components/password-hash/interfaces/password-hash-service.interface.d.ts +4 -4
  54. package/dist/src/components/password-hash/interfaces/password-hash-service.interface.js +2 -2
  55. package/dist/src/components/password-hash/password-hash.service.d.ts +6 -6
  56. package/dist/src/components/password-hash/password-hash.service.js +27 -27
  57. package/dist/src/components/system/index.d.ts +1 -1
  58. package/dist/src/components/system/index.js +17 -17
  59. package/dist/src/components/system/system.repository.d.ts +9 -9
  60. package/dist/src/components/system/system.repository.js +49 -49
  61. package/dist/src/components/system-access/index.d.ts +1 -1
  62. package/dist/src/components/system-access/index.js +17 -17
  63. package/dist/src/components/system-access/system-access.repository.d.ts +9 -9
  64. package/dist/src/components/system-access/system-access.repository.js +49 -49
  65. package/dist/src/components/user-group/index.d.ts +1 -1
  66. package/dist/src/components/user-group/index.js +17 -17
  67. package/dist/src/components/user-group/user-group.repository.d.ts +9 -9
  68. package/dist/src/components/user-group/user-group.repository.js +49 -49
  69. package/dist/src/components/user-user-group/index.d.ts +1 -1
  70. package/dist/src/components/user-user-group/index.js +17 -17
  71. package/dist/src/components/user-user-group/user-user-group.repository.d.ts +9 -9
  72. package/dist/src/components/user-user-group/user-user-group.repository.js +49 -49
  73. package/dist/src/index.d.ts +6 -6
  74. package/dist/src/index.js +23 -23
  75. package/dist/src/interfaces/index.d.ts +2 -2
  76. package/dist/src/interfaces/index.js +18 -18
  77. package/dist/src/interfaces/system-login.interface.d.ts +6 -6
  78. package/dist/src/interfaces/system-login.interface.js +2 -2
  79. package/dist/src/interfaces/user-session.interface.d.ts +4 -4
  80. package/dist/src/interfaces/user-session.interface.js +2 -2
  81. package/dist/src/mail/index.d.ts +2 -2
  82. package/dist/src/mail/index.js +18 -18
  83. package/dist/src/mail/interfaces/index.d.ts +2 -2
  84. package/dist/src/mail/interfaces/index.js +18 -18
  85. package/dist/src/mail/interfaces/send-mail.interface.d.ts +8 -8
  86. package/dist/src/mail/interfaces/send-mail.interface.js +2 -2
  87. package/dist/src/mail/interfaces/send-new-login-alert.interface.d.ts +6 -6
  88. package/dist/src/mail/interfaces/send-new-login-alert.interface.js +2 -2
  89. package/dist/src/mail/mail.d.ts +7 -7
  90. package/dist/src/mail/mail.js +48 -48
  91. package/dist/src/mail/mail.service.d.ts +7 -7
  92. package/dist/src/mail/mail.service.js +41 -41
  93. package/dist/src/prisma-client/__mocks__/prisma.d.ts +3 -3
  94. package/dist/src/prisma-client/__mocks__/prisma.js +13 -13
  95. package/dist/src/prisma-client/client.d.ts +3 -3
  96. package/dist/src/prisma-client/client.js +5 -5
  97. package/dist/src/prisma-client/index.d.ts +1 -1
  98. package/dist/src/prisma-client/index.js +17 -17
  99. package/dist/src/redis-client/__mocks__/jest-initial-setup.d.ts +1 -1
  100. package/dist/src/redis-client/__mocks__/jest-initial-setup.js +4 -4
  101. package/dist/src/redis-client/__mocks__/redis-mock.d.ts +2 -2
  102. package/dist/src/redis-client/__mocks__/redis-mock.js +22 -22
  103. package/dist/src/redis-client/index.d.ts +1 -1
  104. package/dist/src/redis-client/index.js +17 -17
  105. package/dist/src/redis-client/redis.service.d.ts +7 -7
  106. package/dist/src/redis-client/redis.service.js +55 -55
  107. package/dist/src/session/index.d.ts +2 -2
  108. package/dist/src/session/index.js +18 -18
  109. package/dist/src/session/interfaces/index.d.ts +1 -1
  110. package/dist/src/session/interfaces/index.js +17 -17
  111. package/dist/src/session/interfaces/session-service.interface.d.ts +5 -5
  112. package/dist/src/session/interfaces/session-service.interface.js +2 -2
  113. package/dist/src/session/session.service.d.ts +9 -9
  114. package/dist/src/session/session.service.js +51 -51
  115. package/dist/tsconfig.tsbuildinfo +1 -1
  116. package/package.json +69 -69
  117. package/sampledotenv +7 -7
  118. package/src/components/index.ts +7 -7
  119. package/src/components/login-history/index.ts +1 -1
  120. package/src/components/login-history/login-history.repository.ts +33 -33
  121. package/src/components/login-user/index.ts +4 -4
  122. package/src/components/login-user/interfaces/user-info.interface.ts +9 -9
  123. package/src/components/login-user/login-user.ts +1 -1
  124. package/src/components/login-user/user.repository.ts +33 -33
  125. package/src/components/password-hash/index.ts +2 -2
  126. package/src/components/password-hash/interfaces/password-hash-service.interface.ts +4 -4
  127. package/src/components/password-hash/password-hash.service.ts +14 -14
  128. package/src/components/system/index.ts +1 -1
  129. package/src/components/system/system.repository.ts +33 -33
  130. package/src/components/system-access/index.ts +1 -1
  131. package/src/components/system-access/system-access.repository.ts +33 -33
  132. package/src/components/user-group/user-group.repository.ts +33 -33
  133. package/src/components/user-user-group/user-user-group.repository.ts +33 -33
  134. package/src/index.ts +7 -7
  135. package/src/interfaces/index.ts +2 -2
  136. package/src/interfaces/system-login.interface.ts +6 -6
  137. package/src/interfaces/user-session.interface.ts +5 -5
  138. package/src/mail/index.ts +2 -2
  139. package/src/mail/interfaces/index.ts +2 -2
  140. package/src/mail/interfaces/send-mail.interface.ts +8 -8
  141. package/src/mail/interfaces/send-new-login-alert.interface.ts +6 -6
  142. package/src/mail/mail.service.ts +33 -33
  143. package/src/mail/mail.ts +40 -40
  144. package/src/prisma-client/__mocks__/prisma.ts +15 -15
  145. package/src/prisma-client/client.ts +3 -3
  146. package/src/redis-client/__mocks__/jest-initial-setup.ts +2 -2
  147. package/src/redis-client/__mocks__/redis-mock.ts +28 -28
  148. package/src/session/index.ts +2 -2
  149. package/src/session/interfaces/index.ts +1 -1
  150. package/src/session/interfaces/session-service.interface.ts +6 -6
  151. package/src/session/session.service.ts +45 -45
  152. package/tsconfig.build.json +5 -5
package/package.json CHANGED
@@ -1,69 +1,69 @@
1
- {
2
- "name": "@tomei/sso",
3
- "version": "0.2.2",
4
- "description": "Tomei SSO Package",
5
- "main": "dist/index.js",
6
- "scripts": {
7
- "start:dev": "tsc -w",
8
- "build": "tsc",
9
- "prepare": "husky install",
10
- "format": "prettier --write \"src/**/*.ts\"",
11
- "lint": "npx eslint . --fix",
12
- "test": "jest"
13
- },
14
- "repository": {
15
- "type": "git",
16
- "url": "git+ssh://git@gitlab.com/tomei-package/sso.git"
17
- },
18
- "keywords": [
19
- "tomei",
20
- "sso"
21
- ],
22
- "author": "Tomei",
23
- "license": "ISC",
24
- "bugs": {
25
- "url": "https://gitlab.com/tomei-package/sso/issues"
26
- },
27
- "homepage": "https://gitlab.com/tomei-package/sso#readme",
28
- "devDependencies": {
29
- "@commitlint/cli": "^17.6.3",
30
- "@commitlint/config-conventional": "^17.6.3",
31
- "@tsconfig/node18": "^2.0.1",
32
- "@types/bcrypt": "^5.0.0",
33
- "@types/jest": "^29.5.2",
34
- "@types/node": "^18.0.6",
35
- "@types/redis": "^4.0.11",
36
- "@typescript-eslint/eslint-plugin": "^5.33.0",
37
- "dotenv": "^16.1.4",
38
- "eslint": "^8.40.0",
39
- "eslint-config-prettier": "^8.5.0",
40
- "eslint-plugin-prettier": "^4.2.1",
41
- "husky": "^8.0.3",
42
- "jest": "^29.5.0",
43
- "jest-mock-extended": "^3.0.4",
44
- "prettier": "^2.7.1",
45
- "prisma": "^4.14.0",
46
- "redis-mock": "^0.56.3",
47
- "ts-jest": "^29.1.0",
48
- "ts-node": "^10.9.1",
49
- "tsc-watch": "^5.0.3",
50
- "tsconfig-paths": "^4.0.0",
51
- "tslint": "^6.1.3",
52
- "typescript": "^4.7.4"
53
- },
54
- "publishConfig": {
55
- "access": "public"
56
- },
57
- "peerDependencies": {
58
- "@prisma/client": "^4.14.1",
59
- "@tomei/general": "^0.1.0",
60
- "@types/jest": "^29.5.2",
61
- "cls-hooked": "^4.2.2",
62
- "nodemailer": "^6.9.3",
63
- "prismock": "^1.14.0",
64
- "redis": "^4.6.7"
65
- },
66
- "dependencies": {
67
- "argon2": "^0.30.3"
68
- }
69
- }
1
+ {
2
+ "name": "@tomei/sso",
3
+ "version": "0.2.5",
4
+ "description": "Tomei SSO Package",
5
+ "main": "dist/index.js",
6
+ "scripts": {
7
+ "start:dev": "tsc -w",
8
+ "build": "tsc",
9
+ "prepare": "husky install",
10
+ "format": "prettier --write \"src/**/*.ts\"",
11
+ "lint": "npx eslint . --fix",
12
+ "test": "jest --forceExit --detectOpenHandles"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+ssh://git@gitlab.com/tomei-package/sso.git"
17
+ },
18
+ "keywords": [
19
+ "tomei",
20
+ "sso"
21
+ ],
22
+ "author": "Tomei",
23
+ "license": "ISC",
24
+ "bugs": {
25
+ "url": "https://gitlab.com/tomei-package/sso/issues"
26
+ },
27
+ "homepage": "https://gitlab.com/tomei-package/sso#readme",
28
+ "devDependencies": {
29
+ "@commitlint/cli": "^17.6.3",
30
+ "@commitlint/config-conventional": "^17.6.3",
31
+ "@tsconfig/node18": "^2.0.1",
32
+ "@types/bcrypt": "^5.0.0",
33
+ "@types/jest": "^29.5.2",
34
+ "@types/node": "^18.0.6",
35
+ "@types/redis": "^4.0.11",
36
+ "@typescript-eslint/eslint-plugin": "^5.33.0",
37
+ "dotenv": "^16.1.4",
38
+ "eslint": "^8.40.0",
39
+ "eslint-config-prettier": "^8.5.0",
40
+ "eslint-plugin-prettier": "^4.2.1",
41
+ "husky": "^8.0.3",
42
+ "jest": "^29.5.0",
43
+ "jest-mock-extended": "^3.0.4",
44
+ "prettier": "^2.7.1",
45
+ "prisma": "^4.14.0",
46
+ "redis-mock": "^0.56.3",
47
+ "ts-jest": "^29.1.0",
48
+ "ts-node": "^10.9.1",
49
+ "tsc-watch": "^5.0.3",
50
+ "tsconfig-paths": "^4.0.0",
51
+ "tslint": "^6.1.3",
52
+ "typescript": "^4.7.4"
53
+ },
54
+ "publishConfig": {
55
+ "access": "public"
56
+ },
57
+ "peerDependencies": {
58
+ "@prisma/client": "^4.14.1",
59
+ "@tomei/general": "^0.1.0",
60
+ "@types/jest": "^29.5.2",
61
+ "cls-hooked": "^4.2.2",
62
+ "nodemailer": "^6.9.3",
63
+ "prismock": "^1.14.0",
64
+ "redis": "^4.6.7"
65
+ },
66
+ "dependencies": {
67
+ "argon2": "^0.30.3"
68
+ }
69
+ }
package/sampledotenv CHANGED
@@ -1,8 +1,8 @@
1
- DATABASE_URL=
2
- SHADOW_DATABASE_URL=
3
- REDIS_URL=
4
- REDIS_PASSWORD=
5
- SMTP_HOST=
6
- SMTP_PORT=
7
- EMAIL_SENDER=
1
+ DATABASE_URL=
2
+ SHADOW_DATABASE_URL=
3
+ REDIS_URL=
4
+ REDIS_PASSWORD=
5
+ SMTP_HOST=
6
+ SMTP_PORT=
7
+ EMAIL_SENDER=
8
8
  EMAIL_PASSWORD=
@@ -1,7 +1,7 @@
1
- export * from './login-history';
2
- export * from './login-user';
3
- export * from './password-hash';
4
- export * from './system';
5
- export * from './system-access';
6
- export * from './user-group';
7
- export * from './user-user-group';
1
+ export * from './login-history';
2
+ export * from './login-user';
3
+ export * from './password-hash';
4
+ export * from './system';
5
+ export * from './system-access';
6
+ export * from './user-group';
7
+ export * from './user-user-group';
@@ -1 +1 @@
1
- export * from './login-history.repository';
1
+ export * from './login-history.repository';
@@ -1,33 +1,33 @@
1
- import prisma from '../../prisma-client/client';
2
-
3
- export class LoginHistoryRepository {
4
- private _prisma: any;
5
-
6
- constructor(client?: any) {
7
- if (client) {
8
- this._prisma = client;
9
- } else {
10
- this._prisma = prisma;
11
- }
12
- }
13
-
14
- public async create(data: any): Promise<any> {
15
- return await this._prisma.loginHistory.create(data);
16
- }
17
-
18
- public async findAll(options: any): Promise<any[]> {
19
- return await this._prisma.loginHistory.findMany(options);
20
- }
21
-
22
- public async findOne(options: any): Promise<any> {
23
- return await this._prisma.loginHistory.findFirst(options);
24
- }
25
-
26
- public async update(where: any, data: any): Promise<any> {
27
- return await this._prisma.loginHistory.update(where, data);
28
- }
29
-
30
- public async delete(where: any): Promise<any> {
31
- return await this._prisma.loginHistory.delete(where);
32
- }
33
- }
1
+ import prisma from '../../prisma-client/client';
2
+
3
+ export class LoginHistoryRepository {
4
+ private _prisma: any;
5
+
6
+ constructor(client?: any) {
7
+ if (client) {
8
+ this._prisma = client;
9
+ } else {
10
+ this._prisma = prisma;
11
+ }
12
+ }
13
+
14
+ public async create(data: any): Promise<any> {
15
+ return await this._prisma.loginHistory.create(data);
16
+ }
17
+
18
+ public async findAll(options: any): Promise<any[]> {
19
+ return await this._prisma.loginHistory.findMany(options);
20
+ }
21
+
22
+ public async findOne(options: any): Promise<any> {
23
+ return await this._prisma.loginHistory.findFirst(options);
24
+ }
25
+
26
+ public async update(where: any, data: any): Promise<any> {
27
+ return await this._prisma.loginHistory.update(where, data);
28
+ }
29
+
30
+ public async delete(where: any): Promise<any> {
31
+ return await this._prisma.loginHistory.delete(where);
32
+ }
33
+ }
@@ -1,4 +1,4 @@
1
- //export all files inside this folder
2
- export * from './interfaces';
3
- export * from './login-user';
4
- export * from './user.repository';
1
+ //export all files inside this folder
2
+ export * from './interfaces';
3
+ export * from './login-user';
4
+ export * from './user.repository';
@@ -1,9 +1,9 @@
1
- export interface IUserInfo {
2
- FullName: string;
3
- IDNo: string;
4
- Email: string;
5
- ContactNo: string;
6
- ObjectId: string;
7
- Password: string;
8
- staffs?: any;
9
- }
1
+ export interface IUserInfo {
2
+ FullName: string;
3
+ IDNo: string;
4
+ Email: string;
5
+ ContactNo: string;
6
+ ObjectId: string;
7
+ Password: string;
8
+ staffs?: any;
9
+ }
@@ -1,7 +1,7 @@
1
1
  import { ObjectBase, IPerson, IAddress } from '@tomei/general';
2
2
  import { ISessionService } from '../../session/interfaces/session-service.interface';
3
3
  import { IUserInfo } from './interfaces/user-info.interface';
4
- import { IPasswordHashService } from '../password-hash/interfaces/password-hash-service.interface';
4
+ // import { IPasswordHashService } from '../password-hash/interfaces/password-hash-service.interface';
5
5
  import { UserRepository } from './user.repository';
6
6
  import { SystemRepository } from '../system/system.repository';
7
7
  import { SystemAccessRepository } from '../system-access/system-access.repository';
@@ -1,33 +1,33 @@
1
- import prisma from '../../prisma-client/client';
2
-
3
- export class UserRepository {
4
- private _prisma: any;
5
-
6
- constructor(client?: any) {
7
- if (client) {
8
- this._prisma = client;
9
- } else {
10
- this._prisma = prisma;
11
- }
12
- }
13
-
14
- public async create(data: any): Promise<any> {
15
- return await this._prisma.user.create(data);
16
- }
17
-
18
- public async findAll(options: any): Promise<any[]> {
19
- return await this._prisma.user.findMany(options);
20
- }
21
-
22
- public async findOne(options: any): Promise<any> {
23
- return await this._prisma.user.findFirst(options);
24
- }
25
-
26
- public async update(where: any, data: any): Promise<any> {
27
- return await this._prisma.user.update(where, data);
28
- }
29
-
30
- public async delete(where: any): Promise<any> {
31
- return await this._prisma.user.delete(where);
32
- }
33
- }
1
+ import prisma from '../../prisma-client/client';
2
+
3
+ export class UserRepository {
4
+ private _prisma: any;
5
+
6
+ constructor(client?: any) {
7
+ if (client) {
8
+ this._prisma = client;
9
+ } else {
10
+ this._prisma = prisma;
11
+ }
12
+ }
13
+
14
+ public async create(data: any): Promise<any> {
15
+ return await this._prisma.user.create(data);
16
+ }
17
+
18
+ public async findAll(options: any): Promise<any[]> {
19
+ return await this._prisma.user.findMany(options);
20
+ }
21
+
22
+ public async findOne(options: any): Promise<any> {
23
+ return await this._prisma.user.findFirst(options);
24
+ }
25
+
26
+ public async update(where: any, data: any): Promise<any> {
27
+ return await this._prisma.user.update(where, data);
28
+ }
29
+
30
+ public async delete(where: any): Promise<any> {
31
+ return await this._prisma.user.delete(where);
32
+ }
33
+ }
@@ -1,2 +1,2 @@
1
- export * from './interfaces';
2
- export * from './password-hash.service';
1
+ export * from './interfaces';
2
+ export * from './password-hash.service';
@@ -1,4 +1,4 @@
1
- export interface IPasswordHashService {
2
- hashPassword(password: string): Promise<string>;
3
- verify(password: string, hash: string): Promise<boolean>;
4
- }
1
+ export interface IPasswordHashService {
2
+ hashPassword(password: string): Promise<string>;
3
+ verify(password: string, hash: string): Promise<boolean>;
4
+ }
@@ -1,14 +1,14 @@
1
- import * as argon2 from 'argon2';
2
- import { IPasswordHashService } from './interfaces/password-hash-service.interface';
3
-
4
- export class PasswordHashService implements IPasswordHashService {
5
- constructor() {}
6
-
7
- async hashPassword(password: string): Promise<string> {
8
- return await argon2.hash(password);
9
- }
10
-
11
- async verify(password: string, hash: string): Promise<boolean> {
12
- return await argon2.verify(hash, password);
13
- }
14
- }
1
+ import * as argon2 from 'argon2';
2
+ import { IPasswordHashService } from './interfaces/password-hash-service.interface';
3
+
4
+ export class PasswordHashService implements IPasswordHashService {
5
+ constructor() {}
6
+
7
+ async hashPassword(password: string): Promise<string> {
8
+ return await argon2.hash(password);
9
+ }
10
+
11
+ async verify(password: string, hash: string): Promise<boolean> {
12
+ return await argon2.verify(hash, password);
13
+ }
14
+ }
@@ -1 +1 @@
1
- export * from './system.repository';
1
+ export * from './system.repository';
@@ -1,33 +1,33 @@
1
- import prisma from '../../prisma-client/client';
2
-
3
- export class SystemRepository {
4
- private _prisma: any;
5
-
6
- constructor(client?: any) {
7
- if (client) {
8
- this._prisma = client;
9
- } else {
10
- this._prisma = prisma;
11
- }
12
- }
13
-
14
- public async create(data: any): Promise<any> {
15
- return await this._prisma.system.create(data);
16
- }
17
-
18
- public async findAll(options: any): Promise<any[]> {
19
- return await this._prisma.system.findMany(options);
20
- }
21
-
22
- public async findOne(options: any): Promise<any> {
23
- return await this._prisma.system.findFirst(options);
24
- }
25
-
26
- public async update(where: any, data: any): Promise<any> {
27
- return await this._prisma.system.update(where, data);
28
- }
29
-
30
- public async delete(where: any): Promise<any> {
31
- return await this._prisma.system.delete(where);
32
- }
33
- }
1
+ import prisma from '../../prisma-client/client';
2
+
3
+ export class SystemRepository {
4
+ private _prisma: any;
5
+
6
+ constructor(client?: any) {
7
+ if (client) {
8
+ this._prisma = client;
9
+ } else {
10
+ this._prisma = prisma;
11
+ }
12
+ }
13
+
14
+ public async create(data: any): Promise<any> {
15
+ return await this._prisma.system.create(data);
16
+ }
17
+
18
+ public async findAll(options: any): Promise<any[]> {
19
+ return await this._prisma.system.findMany(options);
20
+ }
21
+
22
+ public async findOne(options: any): Promise<any> {
23
+ return await this._prisma.system.findFirst(options);
24
+ }
25
+
26
+ public async update(where: any, data: any): Promise<any> {
27
+ return await this._prisma.system.update(where, data);
28
+ }
29
+
30
+ public async delete(where: any): Promise<any> {
31
+ return await this._prisma.system.delete(where);
32
+ }
33
+ }
@@ -1 +1 @@
1
- export * from './system-access.repository';
1
+ export * from './system-access.repository';
@@ -1,33 +1,33 @@
1
- import prisma from '../../prisma-client/client';
2
-
3
- export class SystemAccessRepository {
4
- private _prisma: any;
5
-
6
- constructor(client?: any) {
7
- if (client) {
8
- this._prisma = client;
9
- } else {
10
- this._prisma = prisma;
11
- }
12
- }
13
-
14
- public async create(data: any): Promise<any> {
15
- return await this._prisma.systemAccess.create(data);
16
- }
17
-
18
- public async findAll(options: any): Promise<any[]> {
19
- return await this._prisma.systemAccess.findMany(options);
20
- }
21
-
22
- public async findOne(options: any): Promise<any> {
23
- return await this._prisma.systemAccess.findFirst(options);
24
- }
25
-
26
- public async update(where: any, data: any): Promise<any> {
27
- return await this._prisma.systemAccess.update(where, data);
28
- }
29
-
30
- public async delete(where: any): Promise<any> {
31
- return await this._prisma.systemAccess.delete(where);
32
- }
33
- }
1
+ import prisma from '../../prisma-client/client';
2
+
3
+ export class SystemAccessRepository {
4
+ private _prisma: any;
5
+
6
+ constructor(client?: any) {
7
+ if (client) {
8
+ this._prisma = client;
9
+ } else {
10
+ this._prisma = prisma;
11
+ }
12
+ }
13
+
14
+ public async create(data: any): Promise<any> {
15
+ return await this._prisma.systemAccess.create(data);
16
+ }
17
+
18
+ public async findAll(options: any): Promise<any[]> {
19
+ return await this._prisma.systemAccess.findMany(options);
20
+ }
21
+
22
+ public async findOne(options: any): Promise<any> {
23
+ return await this._prisma.systemAccess.findFirst(options);
24
+ }
25
+
26
+ public async update(where: any, data: any): Promise<any> {
27
+ return await this._prisma.systemAccess.update(where, data);
28
+ }
29
+
30
+ public async delete(where: any): Promise<any> {
31
+ return await this._prisma.systemAccess.delete(where);
32
+ }
33
+ }
@@ -1,33 +1,33 @@
1
- import prisma from '../../prisma-client/client';
2
-
3
- export class UserGroupRepository {
4
- private _prisma: any;
5
-
6
- constructor(client?: any) {
7
- if (client) {
8
- this._prisma = client;
9
- } else {
10
- this._prisma = prisma;
11
- }
12
- }
13
-
14
- public async create(data: any): Promise<any> {
15
- return await this._prisma.userGroup.create(data);
16
- }
17
-
18
- public async findAll(options: any): Promise<any[]> {
19
- return await this._prisma.userGroup.findMany(options);
20
- }
21
-
22
- public async findOne(options: any): Promise<any> {
23
- return await this._prisma.userGroup.findFirst(options);
24
- }
25
-
26
- public async update(where: any, data: any): Promise<any> {
27
- return await this._prisma.userGroup.update(where, data);
28
- }
29
-
30
- public async delete(where: any): Promise<any> {
31
- return await this._prisma.userGroups.delete(where);
32
- }
33
- }
1
+ import prisma from '../../prisma-client/client';
2
+
3
+ export class UserGroupRepository {
4
+ private _prisma: any;
5
+
6
+ constructor(client?: any) {
7
+ if (client) {
8
+ this._prisma = client;
9
+ } else {
10
+ this._prisma = prisma;
11
+ }
12
+ }
13
+
14
+ public async create(data: any): Promise<any> {
15
+ return await this._prisma.userGroup.create(data);
16
+ }
17
+
18
+ public async findAll(options: any): Promise<any[]> {
19
+ return await this._prisma.userGroup.findMany(options);
20
+ }
21
+
22
+ public async findOne(options: any): Promise<any> {
23
+ return await this._prisma.userGroup.findFirst(options);
24
+ }
25
+
26
+ public async update(where: any, data: any): Promise<any> {
27
+ return await this._prisma.userGroup.update(where, data);
28
+ }
29
+
30
+ public async delete(where: any): Promise<any> {
31
+ return await this._prisma.userGroups.delete(where);
32
+ }
33
+ }