@webiny/api-record-locking 0.0.0-unstable.e53eceafb5 → 0.0.0-unstable.e6f0dc8ca7

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 (295) hide show
  1. package/README.md +10 -9
  2. package/domain/LockRecord.d.ts +45 -0
  3. package/{utils/convertEntryToLockRecord.js → domain/LockRecord.js} +10 -21
  4. package/domain/LockRecord.js.map +1 -0
  5. package/domain/RecordLockingModel.d.ts +9 -0
  6. package/domain/RecordLockingModel.js +29 -0
  7. package/domain/RecordLockingModel.js.map +1 -0
  8. package/domain/abstractions.d.ts +18 -0
  9. package/domain/abstractions.js +10 -0
  10. package/domain/abstractions.js.map +1 -0
  11. package/domain/calculateExpiresOn.d.ts +1 -0
  12. package/domain/calculateExpiresOn.js +9 -0
  13. package/domain/calculateExpiresOn.js.map +1 -0
  14. package/domain/errors.d.ts +71 -0
  15. package/domain/errors.js +95 -0
  16. package/domain/errors.js.map +1 -0
  17. package/domain/index.d.ts +4 -0
  18. package/domain/index.js +6 -0
  19. package/domain/index.js.map +1 -0
  20. package/domain/types.d.ts +44 -0
  21. package/domain/types.js +12 -0
  22. package/domain/types.js.map +1 -0
  23. package/features/GetLockRecord/GetLockRecordRepository.d.ts +16 -0
  24. package/features/GetLockRecord/GetLockRecordRepository.js +37 -0
  25. package/features/GetLockRecord/GetLockRecordRepository.js.map +1 -0
  26. package/features/GetLockRecord/GetLockRecordUseCase.d.ts +12 -0
  27. package/features/GetLockRecord/GetLockRecordUseCase.js +15 -0
  28. package/features/GetLockRecord/GetLockRecordUseCase.js.map +1 -0
  29. package/features/GetLockRecord/abstractions.d.ts +41 -0
  30. package/features/GetLockRecord/abstractions.js +17 -0
  31. package/features/GetLockRecord/abstractions.js.map +1 -0
  32. package/features/GetLockRecord/feature.d.ts +4 -0
  33. package/features/GetLockRecord/feature.js +12 -0
  34. package/features/GetLockRecord/feature.js.map +1 -0
  35. package/features/GetLockRecord/index.d.ts +2 -0
  36. package/features/GetLockRecord/index.js +4 -0
  37. package/features/GetLockRecord/index.js.map +1 -0
  38. package/features/GetLockedEntryLockRecord/GetLockedEntryLockRecordUseCase.d.ts +15 -0
  39. package/features/GetLockedEntryLockRecord/GetLockedEntryLockRecordUseCase.js +39 -0
  40. package/features/GetLockedEntryLockRecord/GetLockedEntryLockRecordUseCase.js.map +1 -0
  41. package/features/GetLockedEntryLockRecord/abstractions.d.ts +26 -0
  42. package/features/GetLockedEntryLockRecord/abstractions.js +13 -0
  43. package/features/GetLockedEntryLockRecord/abstractions.js.map +1 -0
  44. package/features/GetLockedEntryLockRecord/feature.d.ts +4 -0
  45. package/features/GetLockedEntryLockRecord/feature.js +10 -0
  46. package/features/GetLockedEntryLockRecord/feature.js.map +1 -0
  47. package/features/GetLockedEntryLockRecord/index.d.ts +2 -0
  48. package/features/GetLockedEntryLockRecord/index.js +4 -0
  49. package/features/GetLockedEntryLockRecord/index.js.map +1 -0
  50. package/features/IsEntryLocked/IsEntryLockedUseCase.d.ts +14 -0
  51. package/features/IsEntryLocked/IsEntryLockedUseCase.js +39 -0
  52. package/features/IsEntryLocked/IsEntryLockedUseCase.js.map +1 -0
  53. package/features/IsEntryLocked/abstractions.d.ts +24 -0
  54. package/features/IsEntryLocked/abstractions.js +12 -0
  55. package/features/IsEntryLocked/abstractions.js.map +1 -0
  56. package/features/IsEntryLocked/feature.d.ts +4 -0
  57. package/features/IsEntryLocked/feature.js +10 -0
  58. package/features/IsEntryLocked/feature.js.map +1 -0
  59. package/features/IsEntryLocked/index.d.ts +1 -0
  60. package/features/IsEntryLocked/index.js +3 -0
  61. package/features/IsEntryLocked/index.js.map +1 -0
  62. package/features/KickOutCurrentUser/KickOutCurrentUserUseCase.d.ts +15 -0
  63. package/features/KickOutCurrentUser/KickOutCurrentUserUseCase.js +42 -0
  64. package/features/KickOutCurrentUser/KickOutCurrentUserUseCase.js.map +1 -0
  65. package/features/KickOutCurrentUser/abstractions.d.ts +17 -0
  66. package/features/KickOutCurrentUser/abstractions.js +9 -0
  67. package/features/KickOutCurrentUser/abstractions.js.map +1 -0
  68. package/features/KickOutCurrentUser/feature.d.ts +4 -0
  69. package/features/KickOutCurrentUser/feature.js +10 -0
  70. package/features/KickOutCurrentUser/feature.js.map +1 -0
  71. package/features/KickOutCurrentUser/index.d.ts +1 -0
  72. package/features/KickOutCurrentUser/index.js +3 -0
  73. package/features/KickOutCurrentUser/index.js.map +1 -0
  74. package/features/ListAllLockRecords/ListAllLockRecordsRepository.d.ts +16 -0
  75. package/features/ListAllLockRecords/ListAllLockRecordsRepository.js +43 -0
  76. package/features/ListAllLockRecords/ListAllLockRecordsRepository.js.map +1 -0
  77. package/features/ListAllLockRecords/ListAllLockRecordsUseCase.d.ts +11 -0
  78. package/features/ListAllLockRecords/ListAllLockRecordsUseCase.js +15 -0
  79. package/features/ListAllLockRecords/ListAllLockRecordsUseCase.js.map +1 -0
  80. package/features/ListAllLockRecords/abstractions.d.ts +40 -0
  81. package/features/ListAllLockRecords/abstractions.js +17 -0
  82. package/features/ListAllLockRecords/abstractions.js.map +1 -0
  83. package/features/ListAllLockRecords/feature.d.ts +4 -0
  84. package/features/ListAllLockRecords/feature.js +12 -0
  85. package/features/ListAllLockRecords/feature.js.map +1 -0
  86. package/features/ListAllLockRecords/index.d.ts +2 -0
  87. package/features/ListAllLockRecords/index.js +4 -0
  88. package/features/ListAllLockRecords/index.js.map +1 -0
  89. package/features/ListLockRecords/ListLockRecordsRepository.d.ts +15 -0
  90. package/features/ListLockRecords/ListLockRecordsRepository.js +43 -0
  91. package/features/ListLockRecords/ListLockRecordsRepository.js.map +1 -0
  92. package/features/ListLockRecords/ListLockRecordsUseCase.d.ts +15 -0
  93. package/features/ListLockRecords/ListLockRecordsUseCase.js +30 -0
  94. package/features/ListLockRecords/ListLockRecordsUseCase.js.map +1 -0
  95. package/features/ListLockRecords/abstractions.d.ts +45 -0
  96. package/features/ListLockRecords/abstractions.js +17 -0
  97. package/features/ListLockRecords/abstractions.js.map +1 -0
  98. package/features/ListLockRecords/feature.d.ts +4 -0
  99. package/features/ListLockRecords/feature.js +12 -0
  100. package/features/ListLockRecords/feature.js.map +1 -0
  101. package/features/ListLockRecords/index.d.ts +1 -0
  102. package/features/ListLockRecords/index.js +3 -0
  103. package/features/ListLockRecords/index.js.map +1 -0
  104. package/features/LockEntry/LockEntryEventsDecorator.d.ts +14 -0
  105. package/features/LockEntry/LockEntryEventsDecorator.js +40 -0
  106. package/features/LockEntry/LockEntryEventsDecorator.js.map +1 -0
  107. package/features/LockEntry/LockEntryRepository.d.ts +16 -0
  108. package/features/LockEntry/LockEntryRepository.js +42 -0
  109. package/features/LockEntry/LockEntryRepository.js.map +1 -0
  110. package/features/LockEntry/LockEntryUseCase.d.ts +14 -0
  111. package/features/LockEntry/LockEntryUseCase.js +36 -0
  112. package/features/LockEntry/LockEntryUseCase.js.map +1 -0
  113. package/features/LockEntry/abstractions.d.ts +41 -0
  114. package/features/LockEntry/abstractions.js +17 -0
  115. package/features/LockEntry/abstractions.js.map +1 -0
  116. package/features/LockEntry/events.d.ts +45 -0
  117. package/features/LockEntry/events.js +40 -0
  118. package/features/LockEntry/events.js.map +1 -0
  119. package/features/LockEntry/feature.d.ts +4 -0
  120. package/features/LockEntry/feature.js +14 -0
  121. package/features/LockEntry/feature.js.map +1 -0
  122. package/features/LockEntry/index.d.ts +1 -0
  123. package/features/LockEntry/index.js +3 -0
  124. package/features/LockEntry/index.js.map +1 -0
  125. package/features/RecordLockingFeature.d.ts +15 -0
  126. package/features/RecordLockingFeature.js +36 -0
  127. package/features/RecordLockingFeature.js.map +1 -0
  128. package/features/UnlockEntry/UnlockEntryEventsDecorator.d.ts +14 -0
  129. package/features/UnlockEntry/UnlockEntryEventsDecorator.js +41 -0
  130. package/features/UnlockEntry/UnlockEntryEventsDecorator.js.map +1 -0
  131. package/features/UnlockEntry/UnlockEntryRepository.d.ts +14 -0
  132. package/features/UnlockEntry/UnlockEntryRepository.js +40 -0
  133. package/features/UnlockEntry/UnlockEntryRepository.js.map +1 -0
  134. package/features/UnlockEntry/UnlockEntryUseCase.d.ts +18 -0
  135. package/features/UnlockEntry/UnlockEntryUseCase.js +81 -0
  136. package/features/UnlockEntry/UnlockEntryUseCase.js.map +1 -0
  137. package/features/UnlockEntry/abstractions.d.ts +44 -0
  138. package/features/UnlockEntry/abstractions.js +17 -0
  139. package/features/UnlockEntry/abstractions.js.map +1 -0
  140. package/features/UnlockEntry/events.d.ts +46 -0
  141. package/features/UnlockEntry/events.js +40 -0
  142. package/features/UnlockEntry/events.js.map +1 -0
  143. package/features/UnlockEntry/feature.d.ts +4 -0
  144. package/features/UnlockEntry/feature.js +14 -0
  145. package/features/UnlockEntry/feature.js.map +1 -0
  146. package/features/UnlockEntry/hasFullAccessPermission.d.ts +2 -0
  147. package/features/UnlockEntry/hasFullAccessPermission.js +10 -0
  148. package/features/UnlockEntry/hasFullAccessPermission.js.map +1 -0
  149. package/features/UnlockEntry/index.d.ts +1 -0
  150. package/features/UnlockEntry/index.js +3 -0
  151. package/features/UnlockEntry/index.js.map +1 -0
  152. package/features/UnlockEntryRequest/UnlockEntryRequestEventsDecorator.d.ts +14 -0
  153. package/features/UnlockEntryRequest/UnlockEntryRequestEventsDecorator.js +40 -0
  154. package/features/UnlockEntryRequest/UnlockEntryRequestEventsDecorator.js.map +1 -0
  155. package/features/UnlockEntryRequest/UnlockEntryRequestRepository.d.ts +17 -0
  156. package/features/UnlockEntryRequest/UnlockEntryRequestRepository.js +43 -0
  157. package/features/UnlockEntryRequest/UnlockEntryRequestRepository.js.map +1 -0
  158. package/features/UnlockEntryRequest/UnlockEntryRequestUseCase.d.ts +16 -0
  159. package/features/UnlockEntryRequest/UnlockEntryRequestUseCase.js +92 -0
  160. package/features/UnlockEntryRequest/UnlockEntryRequestUseCase.js.map +1 -0
  161. package/features/UnlockEntryRequest/abstractions.d.ts +42 -0
  162. package/features/UnlockEntryRequest/abstractions.js +17 -0
  163. package/features/UnlockEntryRequest/abstractions.js.map +1 -0
  164. package/features/UnlockEntryRequest/events.d.ts +45 -0
  165. package/features/UnlockEntryRequest/events.js +40 -0
  166. package/features/UnlockEntryRequest/events.js.map +1 -0
  167. package/features/UnlockEntryRequest/feature.d.ts +4 -0
  168. package/features/UnlockEntryRequest/feature.js +14 -0
  169. package/features/UnlockEntryRequest/feature.js.map +1 -0
  170. package/features/UnlockEntryRequest/index.d.ts +3 -0
  171. package/features/UnlockEntryRequest/index.js +5 -0
  172. package/features/UnlockEntryRequest/index.js.map +1 -0
  173. package/features/UpdateEntryLock/UpdateEntryLockRepository.d.ts +20 -0
  174. package/features/UpdateEntryLock/UpdateEntryLockRepository.js +63 -0
  175. package/features/UpdateEntryLock/UpdateEntryLockRepository.js.map +1 -0
  176. package/features/UpdateEntryLock/UpdateEntryLockUseCase.d.ts +18 -0
  177. package/features/UpdateEntryLock/UpdateEntryLockUseCase.js +62 -0
  178. package/features/UpdateEntryLock/UpdateEntryLockUseCase.js.map +1 -0
  179. package/features/UpdateEntryLock/abstractions.d.ts +42 -0
  180. package/features/UpdateEntryLock/abstractions.js +17 -0
  181. package/features/UpdateEntryLock/abstractions.js.map +1 -0
  182. package/features/UpdateEntryLock/feature.d.ts +4 -0
  183. package/features/UpdateEntryLock/feature.js +12 -0
  184. package/features/UpdateEntryLock/feature.js.map +1 -0
  185. package/features/UpdateEntryLock/index.d.ts +1 -0
  186. package/features/UpdateEntryLock/index.js +3 -0
  187. package/features/UpdateEntryLock/index.js.map +1 -0
  188. package/graphql/checkPermissions.d.ts +5 -0
  189. package/graphql/checkPermissions.js +14 -0
  190. package/graphql/checkPermissions.js.map +1 -0
  191. package/{utils → graphql}/resolve.d.ts +3 -3
  192. package/graphql/resolve.js +22 -0
  193. package/graphql/resolve.js.map +1 -0
  194. package/graphql/schema.d.ts +7 -3
  195. package/graphql/schema.js +101 -66
  196. package/graphql/schema.js.map +1 -1
  197. package/index.d.ts +3 -3
  198. package/index.js +49 -25
  199. package/index.js.map +1 -1
  200. package/package.json +25 -26
  201. package/types.d.ts +3 -132
  202. package/types.js +2 -20
  203. package/types.js.map +1 -1
  204. package/utils/convertWhereCondition.d.ts +1 -1
  205. package/utils/convertWhereCondition.js +11 -14
  206. package/utils/convertWhereCondition.js.map +1 -1
  207. package/utils/getTimeout.js +1 -8
  208. package/utils/getTimeout.js.map +1 -1
  209. package/utils/lockRecordDatabaseId.js +4 -12
  210. package/utils/lockRecordDatabaseId.js.map +1 -1
  211. package/abstractions/IGetLockRecordUseCase.d.ts +0 -8
  212. package/abstractions/IGetLockRecordUseCase.js +0 -7
  213. package/abstractions/IGetLockRecordUseCase.js.map +0 -1
  214. package/abstractions/IGetLockedEntryLockRecordUseCase.d.ts +0 -8
  215. package/abstractions/IGetLockedEntryLockRecordUseCase.js +0 -7
  216. package/abstractions/IGetLockedEntryLockRecordUseCase.js.map +0 -1
  217. package/abstractions/IIsEntryLocked.d.ts +0 -8
  218. package/abstractions/IIsEntryLocked.js +0 -7
  219. package/abstractions/IIsEntryLocked.js.map +0 -1
  220. package/abstractions/IKickOutCurrentUserUseCase.d.ts +0 -5
  221. package/abstractions/IKickOutCurrentUserUseCase.js +0 -7
  222. package/abstractions/IKickOutCurrentUserUseCase.js.map +0 -1
  223. package/abstractions/IListAllLockRecordsUseCase.d.ts +0 -9
  224. package/abstractions/IListAllLockRecordsUseCase.js +0 -7
  225. package/abstractions/IListAllLockRecordsUseCase.js.map +0 -1
  226. package/abstractions/IListLockRecordsUseCase.d.ts +0 -10
  227. package/abstractions/IListLockRecordsUseCase.js +0 -7
  228. package/abstractions/IListLockRecordsUseCase.js.map +0 -1
  229. package/abstractions/ILockEntryUseCase.d.ts +0 -11
  230. package/abstractions/ILockEntryUseCase.js +0 -7
  231. package/abstractions/ILockEntryUseCase.js.map +0 -1
  232. package/abstractions/IUnlockEntryRequestUseCase.d.ts +0 -11
  233. package/abstractions/IUnlockEntryRequestUseCase.js +0 -7
  234. package/abstractions/IUnlockEntryRequestUseCase.js.map +0 -1
  235. package/abstractions/IUnlockEntryUseCase.d.ts +0 -12
  236. package/abstractions/IUnlockEntryUseCase.js +0 -7
  237. package/abstractions/IUnlockEntryUseCase.js.map +0 -1
  238. package/abstractions/IUpdateEntryLockUseCase.d.ts +0 -11
  239. package/abstractions/IUpdateEntryLockUseCase.js +0 -7
  240. package/abstractions/IUpdateEntryLockUseCase.js.map +0 -1
  241. package/crud/crud.d.ts +0 -7
  242. package/crud/crud.js +0 -204
  243. package/crud/crud.js.map +0 -1
  244. package/crud/model.d.ts +0 -2
  245. package/crud/model.js +0 -127
  246. package/crud/model.js.map +0 -1
  247. package/useCases/GetLockRecord/GetLockRecordUseCase.d.ts +0 -16
  248. package/useCases/GetLockRecord/GetLockRecordUseCase.js +0 -39
  249. package/useCases/GetLockRecord/GetLockRecordUseCase.js.map +0 -1
  250. package/useCases/GetLockedEntryLockRecord/GetLockedEntryLockRecordUseCase.d.ts +0 -16
  251. package/useCases/GetLockedEntryLockRecord/GetLockedEntryLockRecordUseCase.js +0 -29
  252. package/useCases/GetLockedEntryLockRecord/GetLockedEntryLockRecordUseCase.js.map +0 -1
  253. package/useCases/IsEntryLocked/IsEntryLockedUseCase.d.ts +0 -13
  254. package/useCases/IsEntryLocked/IsEntryLockedUseCase.js +0 -31
  255. package/useCases/IsEntryLocked/IsEntryLockedUseCase.js.map +0 -1
  256. package/useCases/KickOutCurrentUser/KickOutCurrentUserUseCase.d.ts +0 -12
  257. package/useCases/KickOutCurrentUser/KickOutCurrentUserUseCase.js +0 -46
  258. package/useCases/KickOutCurrentUser/KickOutCurrentUserUseCase.js.map +0 -1
  259. package/useCases/ListAllLockRecordsUseCase/ListAllLockRecordsUseCase.d.ts +0 -13
  260. package/useCases/ListAllLockRecordsUseCase/ListAllLockRecordsUseCase.js +0 -34
  261. package/useCases/ListAllLockRecordsUseCase/ListAllLockRecordsUseCase.js.map +0 -1
  262. package/useCases/ListLockRecordsUseCase/ListLockRecordsUseCase.d.ts +0 -14
  263. package/useCases/ListLockRecordsUseCase/ListLockRecordsUseCase.js +0 -27
  264. package/useCases/ListLockRecordsUseCase/ListLockRecordsUseCase.js.map +0 -1
  265. package/useCases/LockEntryUseCase/LockEntryUseCase.d.ts +0 -21
  266. package/useCases/LockEntryUseCase/LockEntryUseCase.js +0 -64
  267. package/useCases/LockEntryUseCase/LockEntryUseCase.js.map +0 -1
  268. package/useCases/UnlockEntryUseCase/UnlockEntryUseCase.d.ts +0 -23
  269. package/useCases/UnlockEntryUseCase/UnlockEntryUseCase.js +0 -90
  270. package/useCases/UnlockEntryUseCase/UnlockEntryUseCase.js.map +0 -1
  271. package/useCases/UnlockRequestUseCase/UnlockEntryRequestUseCase.d.ts +0 -21
  272. package/useCases/UnlockRequestUseCase/UnlockEntryRequestUseCase.js +0 -82
  273. package/useCases/UnlockRequestUseCase/UnlockEntryRequestUseCase.js.map +0 -1
  274. package/useCases/UpdateEntryLock/UpdateEntryLockUseCase.d.ts +0 -26
  275. package/useCases/UpdateEntryLock/UpdateEntryLockUseCase.js +0 -93
  276. package/useCases/UpdateEntryLock/UpdateEntryLockUseCase.js.map +0 -1
  277. package/useCases/index.d.ts +0 -31
  278. package/useCases/index.js +0 -96
  279. package/useCases/index.js.map +0 -1
  280. package/useCases/types.d.ts +0 -5
  281. package/useCases/types.js +0 -7
  282. package/useCases/types.js.map +0 -1
  283. package/utils/calculateExpiresOn.d.ts +0 -2
  284. package/utils/calculateExpiresOn.js +0 -16
  285. package/utils/calculateExpiresOn.js.map +0 -1
  286. package/utils/checkPermissions.d.ts +0 -7
  287. package/utils/checkPermissions.js +0 -21
  288. package/utils/checkPermissions.js.map +0 -1
  289. package/utils/convertEntryToLockRecord.d.ts +0 -28
  290. package/utils/convertEntryToLockRecord.js.map +0 -1
  291. package/utils/resolve.js +0 -30
  292. package/utils/resolve.js.map +0 -1
  293. package/utils/validateSameIdentity.d.ts +0 -6
  294. package/utils/validateSameIdentity.js +0 -24
  295. package/utils/validateSameIdentity.js.map +0 -1
@@ -1,13 +0,0 @@
1
- import type { IListAllLockRecordsUseCase, IListAllLockRecordsUseCaseExecuteParams, IListAllLockRecordsUseCaseExecuteResponse } from "../../abstractions/IListAllLockRecordsUseCase";
2
- import type { IRecordLockingModelManager } from "../../types";
3
- import type { ConvertEntryToLockRecordCb } from "../types";
4
- export interface IListAllLockRecordsUseCaseParams {
5
- getManager(): Promise<IRecordLockingModelManager>;
6
- convert: ConvertEntryToLockRecordCb;
7
- }
8
- export declare class ListAllLockRecordsUseCase implements IListAllLockRecordsUseCase {
9
- private readonly getManager;
10
- private readonly convert;
11
- constructor(params: IListAllLockRecordsUseCaseParams);
12
- execute(input: IListAllLockRecordsUseCaseExecuteParams): Promise<IListAllLockRecordsUseCaseExecuteResponse>;
13
- }
@@ -1,34 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.ListAllLockRecordsUseCase = void 0;
7
- var _convertWhereCondition = require("../../utils/convertWhereCondition");
8
- class ListAllLockRecordsUseCase {
9
- constructor(params) {
10
- this.getManager = params.getManager;
11
- this.convert = params.convert;
12
- }
13
- async execute(input) {
14
- try {
15
- const manager = await this.getManager();
16
- const params = {
17
- ...input,
18
- where: (0, _convertWhereCondition.convertWhereCondition)(input.where)
19
- };
20
- const [items, meta] = await manager.listLatest(params);
21
- return {
22
- items: items.map(item => {
23
- return this.convert(item);
24
- }),
25
- meta
26
- };
27
- } catch (ex) {
28
- throw ex;
29
- }
30
- }
31
- }
32
- exports.ListAllLockRecordsUseCase = ListAllLockRecordsUseCase;
33
-
34
- //# sourceMappingURL=ListAllLockRecordsUseCase.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_convertWhereCondition","require","ListAllLockRecordsUseCase","constructor","params","getManager","convert","execute","input","manager","where","convertWhereCondition","items","meta","listLatest","map","item","ex","exports"],"sources":["ListAllLockRecordsUseCase.ts"],"sourcesContent":["import type {\n IListAllLockRecordsUseCase,\n IListAllLockRecordsUseCaseExecuteParams,\n IListAllLockRecordsUseCaseExecuteResponse\n} from \"~/abstractions/IListAllLockRecordsUseCase\";\nimport type { IRecordLockingModelManager } from \"~/types\";\nimport { convertWhereCondition } from \"~/utils/convertWhereCondition\";\nimport type { ConvertEntryToLockRecordCb } from \"~/useCases/types\";\n\nexport interface IListAllLockRecordsUseCaseParams {\n getManager(): Promise<IRecordLockingModelManager>;\n convert: ConvertEntryToLockRecordCb;\n}\n\nexport class ListAllLockRecordsUseCase implements IListAllLockRecordsUseCase {\n private readonly getManager: () => Promise<IRecordLockingModelManager>;\n private readonly convert: ConvertEntryToLockRecordCb;\n\n public constructor(params: IListAllLockRecordsUseCaseParams) {\n this.getManager = params.getManager;\n this.convert = params.convert;\n }\n public async execute(\n input: IListAllLockRecordsUseCaseExecuteParams\n ): Promise<IListAllLockRecordsUseCaseExecuteResponse> {\n try {\n const manager = await this.getManager();\n const params: IListAllLockRecordsUseCaseExecuteParams = {\n ...input,\n where: convertWhereCondition(input.where)\n };\n\n const [items, meta] = await manager.listLatest(params);\n return {\n items: items.map(item => {\n return this.convert(item);\n }),\n meta\n };\n } catch (ex) {\n throw ex;\n }\n }\n}\n"],"mappings":";;;;;;AAMA,IAAAA,sBAAA,GAAAC,OAAA;AAQO,MAAMC,yBAAyB,CAAuC;EAIlEC,WAAWA,CAACC,MAAwC,EAAE;IACzD,IAAI,CAACC,UAAU,GAAGD,MAAM,CAACC,UAAU;IACnC,IAAI,CAACC,OAAO,GAAGF,MAAM,CAACE,OAAO;EACjC;EACA,MAAaC,OAAOA,CAChBC,KAA8C,EACI;IAClD,IAAI;MACA,MAAMC,OAAO,GAAG,MAAM,IAAI,CAACJ,UAAU,CAAC,CAAC;MACvC,MAAMD,MAA+C,GAAG;QACpD,GAAGI,KAAK;QACRE,KAAK,EAAE,IAAAC,4CAAqB,EAACH,KAAK,CAACE,KAAK;MAC5C,CAAC;MAED,MAAM,CAACE,KAAK,EAAEC,IAAI,CAAC,GAAG,MAAMJ,OAAO,CAACK,UAAU,CAACV,MAAM,CAAC;MACtD,OAAO;QACHQ,KAAK,EAAEA,KAAK,CAACG,GAAG,CAACC,IAAI,IAAI;UACrB,OAAO,IAAI,CAACV,OAAO,CAACU,IAAI,CAAC;QAC7B,CAAC,CAAC;QACFH;MACJ,CAAC;IACL,CAAC,CAAC,OAAOI,EAAE,EAAE;MACT,MAAMA,EAAE;IACZ;EACJ;AACJ;AAACC,OAAA,CAAAhB,yBAAA,GAAAA,yBAAA","ignoreList":[]}
@@ -1,14 +0,0 @@
1
- import type { IListLockRecordsUseCase, IListLockRecordsUseCaseExecuteParams, IListLockRecordsUseCaseExecuteResponse } from "../../abstractions/IListLockRecordsUseCase";
2
- import type { IGetIdentity } from "../../types";
3
- export interface IListLockRecordsUseCaseParams {
4
- listAllLockRecordsUseCase: IListLockRecordsUseCase;
5
- timeout: number;
6
- getIdentity: IGetIdentity;
7
- }
8
- export declare class ListLockRecordsUseCase implements IListLockRecordsUseCase {
9
- private readonly listAllLockRecordsUseCase;
10
- private readonly timeout;
11
- private readonly getIdentity;
12
- constructor(params: IListLockRecordsUseCaseParams);
13
- execute(input: IListLockRecordsUseCaseExecuteParams): Promise<IListLockRecordsUseCaseExecuteResponse>;
14
- }
@@ -1,27 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.ListLockRecordsUseCase = void 0;
7
- class ListLockRecordsUseCase {
8
- constructor(params) {
9
- this.listAllLockRecordsUseCase = params.listAllLockRecordsUseCase;
10
- this.timeout = params.timeout;
11
- this.getIdentity = params.getIdentity;
12
- }
13
- async execute(input) {
14
- const identity = this.getIdentity();
15
- return this.listAllLockRecordsUseCase.execute({
16
- ...input,
17
- where: {
18
- ...input.where,
19
- createdBy_not: identity.id,
20
- savedOn_gte: new Date(new Date().getTime() - this.timeout)
21
- }
22
- });
23
- }
24
- }
25
- exports.ListLockRecordsUseCase = ListLockRecordsUseCase;
26
-
27
- //# sourceMappingURL=ListLockRecordsUseCase.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["ListLockRecordsUseCase","constructor","params","listAllLockRecordsUseCase","timeout","getIdentity","execute","input","identity","where","createdBy_not","id","savedOn_gte","Date","getTime","exports"],"sources":["ListLockRecordsUseCase.ts"],"sourcesContent":["import type {\n IListLockRecordsUseCase,\n IListLockRecordsUseCaseExecuteParams,\n IListLockRecordsUseCaseExecuteResponse\n} from \"~/abstractions/IListLockRecordsUseCase\";\nimport type { IGetIdentity } from \"~/types\";\n\nexport interface IListLockRecordsUseCaseParams {\n listAllLockRecordsUseCase: IListLockRecordsUseCase;\n timeout: number;\n getIdentity: IGetIdentity;\n}\n\nexport class ListLockRecordsUseCase implements IListLockRecordsUseCase {\n private readonly listAllLockRecordsUseCase: IListLockRecordsUseCase;\n private readonly timeout: number;\n private readonly getIdentity: IGetIdentity;\n\n public constructor(params: IListLockRecordsUseCaseParams) {\n this.listAllLockRecordsUseCase = params.listAllLockRecordsUseCase;\n this.timeout = params.timeout;\n this.getIdentity = params.getIdentity;\n }\n public async execute(\n input: IListLockRecordsUseCaseExecuteParams\n ): Promise<IListLockRecordsUseCaseExecuteResponse> {\n const identity = this.getIdentity();\n return this.listAllLockRecordsUseCase.execute({\n ...input,\n where: {\n ...input.where,\n createdBy_not: identity.id,\n savedOn_gte: new Date(new Date().getTime() - this.timeout)\n }\n });\n }\n}\n"],"mappings":";;;;;;AAaO,MAAMA,sBAAsB,CAAoC;EAK5DC,WAAWA,CAACC,MAAqC,EAAE;IACtD,IAAI,CAACC,yBAAyB,GAAGD,MAAM,CAACC,yBAAyB;IACjE,IAAI,CAACC,OAAO,GAAGF,MAAM,CAACE,OAAO;IAC7B,IAAI,CAACC,WAAW,GAAGH,MAAM,CAACG,WAAW;EACzC;EACA,MAAaC,OAAOA,CAChBC,KAA2C,EACI;IAC/C,MAAMC,QAAQ,GAAG,IAAI,CAACH,WAAW,CAAC,CAAC;IACnC,OAAO,IAAI,CAACF,yBAAyB,CAACG,OAAO,CAAC;MAC1C,GAAGC,KAAK;MACRE,KAAK,EAAE;QACH,GAAGF,KAAK,CAACE,KAAK;QACdC,aAAa,EAAEF,QAAQ,CAACG,EAAE;QAC1BC,WAAW,EAAE,IAAIC,IAAI,CAAC,IAAIA,IAAI,CAAC,CAAC,CAACC,OAAO,CAAC,CAAC,GAAG,IAAI,CAACV,OAAO;MAC7D;IACJ,CAAC,CAAC;EACN;AACJ;AAACW,OAAA,CAAAf,sBAAA,GAAAA,sBAAA","ignoreList":[]}
@@ -1,21 +0,0 @@
1
- import type { ILockEntryUseCase, ILockEntryUseCaseExecuteParams } from "../../abstractions/ILockEntryUseCase";
2
- import type { IRecordLockingLockRecord, IRecordLockingModelManager } from "../../types";
3
- import type { IIsEntryLockedUseCase } from "../../abstractions/IIsEntryLocked";
4
- import type { ConvertEntryToLockRecordCb } from "../types";
5
- import type { Security, SecurityIdentity } from "@webiny/api-security/types";
6
- export interface ILockEntryUseCaseParams {
7
- isEntryLockedUseCase: IIsEntryLockedUseCase;
8
- getManager(): Promise<IRecordLockingModelManager>;
9
- getSecurity(): Pick<Security, "withoutAuthorization">;
10
- getIdentity(): SecurityIdentity;
11
- convert: ConvertEntryToLockRecordCb;
12
- }
13
- export declare class LockEntryUseCase implements ILockEntryUseCase {
14
- private readonly isEntryLockedUseCase;
15
- private readonly getManager;
16
- private readonly getSecurity;
17
- private readonly getIdentity;
18
- private readonly convert;
19
- constructor(params: ILockEntryUseCaseParams);
20
- execute(params: ILockEntryUseCaseExecuteParams): Promise<IRecordLockingLockRecord>;
21
- }
@@ -1,64 +0,0 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- Object.defineProperty(exports, "__esModule", {
5
- value: true
6
- });
7
- exports.LockEntryUseCase = void 0;
8
- var _error = _interopRequireDefault(require("@webiny/error"));
9
- var _lockRecordDatabaseId = require("../../utils/lockRecordDatabaseId");
10
- var _handlerGraphql = require("@webiny/handler-graphql");
11
- class LockEntryUseCase {
12
- constructor(params) {
13
- this.isEntryLockedUseCase = params.isEntryLockedUseCase;
14
- this.getManager = params.getManager;
15
- this.getSecurity = params.getSecurity;
16
- this.getIdentity = params.getIdentity;
17
- this.convert = params.convert;
18
- }
19
- async execute(params) {
20
- let locked = false;
21
- try {
22
- locked = await this.isEntryLockedUseCase.execute(params);
23
- } catch (ex) {
24
- if (ex instanceof _handlerGraphql.NotFoundError === false) {
25
- throw ex;
26
- }
27
- locked = false;
28
- }
29
- if (locked) {
30
- throw new _error.default("Entry is already locked for editing.", "ENTRY_ALREADY_LOCKED", {
31
- ...params
32
- });
33
- }
34
- const security = this.getSecurity();
35
- const identity = this.getIdentity();
36
- try {
37
- const user = {
38
- id: identity.id,
39
- displayName: identity.displayName,
40
- type: identity.type
41
- };
42
- const manager = await this.getManager();
43
- const id = (0, _lockRecordDatabaseId.createLockRecordDatabaseId)(params.id);
44
- return await security.withoutAuthorization(async () => {
45
- const entry = await manager.create({
46
- id,
47
- createdBy: user,
48
- savedBy: user,
49
- targetId: params.id,
50
- type: params.type,
51
- actions: []
52
- });
53
- return this.convert(entry);
54
- });
55
- } catch (ex) {
56
- throw new _error.default(`Could not lock entry: ${ex.message}`, ex.code || "LOCK_ENTRY_ERROR", {
57
- ...ex.data
58
- });
59
- }
60
- }
61
- }
62
- exports.LockEntryUseCase = LockEntryUseCase;
63
-
64
- //# sourceMappingURL=LockEntryUseCase.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_error","_interopRequireDefault","require","_lockRecordDatabaseId","_handlerGraphql","LockEntryUseCase","constructor","params","isEntryLockedUseCase","getManager","getSecurity","getIdentity","convert","execute","locked","ex","NotFoundError","WebinyError","security","identity","user","id","displayName","type","manager","createLockRecordDatabaseId","withoutAuthorization","entry","create","createdBy","savedBy","targetId","actions","message","code","data","exports"],"sources":["LockEntryUseCase.ts"],"sourcesContent":["import WebinyError from \"@webiny/error\";\nimport type {\n ILockEntryUseCase,\n ILockEntryUseCaseExecuteParams\n} from \"~/abstractions/ILockEntryUseCase\";\nimport type {\n IRecordLockingLockRecord,\n IRecordLockingLockRecordValues,\n IRecordLockingModelManager\n} from \"~/types\";\nimport type { IIsEntryLockedUseCase } from \"~/abstractions/IIsEntryLocked\";\nimport { createLockRecordDatabaseId } from \"~/utils/lockRecordDatabaseId\";\nimport { NotFoundError } from \"@webiny/handler-graphql\";\nimport type { ConvertEntryToLockRecordCb } from \"~/useCases/types\";\nimport type { Security, SecurityIdentity } from \"@webiny/api-security/types\";\n\nexport interface ILockEntryUseCaseParams {\n isEntryLockedUseCase: IIsEntryLockedUseCase;\n getManager(): Promise<IRecordLockingModelManager>;\n getSecurity(): Pick<Security, \"withoutAuthorization\">;\n getIdentity(): SecurityIdentity;\n convert: ConvertEntryToLockRecordCb;\n}\n\nexport class LockEntryUseCase implements ILockEntryUseCase {\n private readonly isEntryLockedUseCase: IIsEntryLockedUseCase;\n private readonly getManager: ILockEntryUseCaseParams[\"getManager\"];\n private readonly getSecurity: ILockEntryUseCaseParams[\"getSecurity\"];\n private readonly getIdentity: ILockEntryUseCaseParams[\"getIdentity\"];\n private readonly convert: ConvertEntryToLockRecordCb;\n\n public constructor(params: ILockEntryUseCaseParams) {\n this.isEntryLockedUseCase = params.isEntryLockedUseCase;\n this.getManager = params.getManager;\n this.getSecurity = params.getSecurity;\n this.getIdentity = params.getIdentity;\n this.convert = params.convert;\n }\n\n public async execute(\n params: ILockEntryUseCaseExecuteParams\n ): Promise<IRecordLockingLockRecord> {\n let locked = false;\n try {\n locked = await this.isEntryLockedUseCase.execute(params);\n } catch (ex) {\n if (ex instanceof NotFoundError === false) {\n throw ex;\n }\n locked = false;\n }\n if (locked) {\n throw new WebinyError(\"Entry is already locked for editing.\", \"ENTRY_ALREADY_LOCKED\", {\n ...params\n });\n }\n const security = this.getSecurity();\n const identity = this.getIdentity();\n try {\n const user: SecurityIdentity = {\n id: identity.id,\n displayName: identity.displayName,\n type: identity.type\n };\n const manager = await this.getManager();\n\n const id = createLockRecordDatabaseId(params.id);\n return await security.withoutAuthorization(async () => {\n const entry = await manager.create<IRecordLockingLockRecordValues>({\n id,\n createdBy: user,\n savedBy: user,\n targetId: params.id,\n type: params.type,\n actions: []\n });\n return this.convert(entry);\n });\n } catch (ex) {\n throw new WebinyError(\n `Could not lock entry: ${ex.message}`,\n ex.code || \"LOCK_ENTRY_ERROR\",\n {\n ...ex.data\n }\n );\n }\n }\n}\n"],"mappings":";;;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AAWA,IAAAC,qBAAA,GAAAD,OAAA;AACA,IAAAE,eAAA,GAAAF,OAAA;AAYO,MAAMG,gBAAgB,CAA8B;EAOhDC,WAAWA,CAACC,MAA+B,EAAE;IAChD,IAAI,CAACC,oBAAoB,GAAGD,MAAM,CAACC,oBAAoB;IACvD,IAAI,CAACC,UAAU,GAAGF,MAAM,CAACE,UAAU;IACnC,IAAI,CAACC,WAAW,GAAGH,MAAM,CAACG,WAAW;IACrC,IAAI,CAACC,WAAW,GAAGJ,MAAM,CAACI,WAAW;IACrC,IAAI,CAACC,OAAO,GAAGL,MAAM,CAACK,OAAO;EACjC;EAEA,MAAaC,OAAOA,CAChBN,MAAsC,EACL;IACjC,IAAIO,MAAM,GAAG,KAAK;IAClB,IAAI;MACAA,MAAM,GAAG,MAAM,IAAI,CAACN,oBAAoB,CAACK,OAAO,CAACN,MAAM,CAAC;IAC5D,CAAC,CAAC,OAAOQ,EAAE,EAAE;MACT,IAAIA,EAAE,YAAYC,6BAAa,KAAK,KAAK,EAAE;QACvC,MAAMD,EAAE;MACZ;MACAD,MAAM,GAAG,KAAK;IAClB;IACA,IAAIA,MAAM,EAAE;MACR,MAAM,IAAIG,cAAW,CAAC,sCAAsC,EAAE,sBAAsB,EAAE;QAClF,GAAGV;MACP,CAAC,CAAC;IACN;IACA,MAAMW,QAAQ,GAAG,IAAI,CAACR,WAAW,CAAC,CAAC;IACnC,MAAMS,QAAQ,GAAG,IAAI,CAACR,WAAW,CAAC,CAAC;IACnC,IAAI;MACA,MAAMS,IAAsB,GAAG;QAC3BC,EAAE,EAAEF,QAAQ,CAACE,EAAE;QACfC,WAAW,EAAEH,QAAQ,CAACG,WAAW;QACjCC,IAAI,EAAEJ,QAAQ,CAACI;MACnB,CAAC;MACD,MAAMC,OAAO,GAAG,MAAM,IAAI,CAACf,UAAU,CAAC,CAAC;MAEvC,MAAMY,EAAE,GAAG,IAAAI,gDAA0B,EAAClB,MAAM,CAACc,EAAE,CAAC;MAChD,OAAO,MAAMH,QAAQ,CAACQ,oBAAoB,CAAC,YAAY;QACnD,MAAMC,KAAK,GAAG,MAAMH,OAAO,CAACI,MAAM,CAAiC;UAC/DP,EAAE;UACFQ,SAAS,EAAET,IAAI;UACfU,OAAO,EAAEV,IAAI;UACbW,QAAQ,EAAExB,MAAM,CAACc,EAAE;UACnBE,IAAI,EAAEhB,MAAM,CAACgB,IAAI;UACjBS,OAAO,EAAE;QACb,CAAC,CAAC;QACF,OAAO,IAAI,CAACpB,OAAO,CAACe,KAAK,CAAC;MAC9B,CAAC,CAAC;IACN,CAAC,CAAC,OAAOZ,EAAE,EAAE;MACT,MAAM,IAAIE,cAAW,CACjB,yBAAyBF,EAAE,CAACkB,OAAO,EAAE,EACrClB,EAAE,CAACmB,IAAI,IAAI,kBAAkB,EAC7B;QACI,GAAGnB,EAAE,CAACoB;MACV,CACJ,CAAC;IACL;EACJ;AACJ;AAACC,OAAA,CAAA/B,gBAAA,GAAAA,gBAAA","ignoreList":[]}
@@ -1,23 +0,0 @@
1
- import type { IUnlockEntryUseCase, IUnlockEntryUseCaseExecuteParams } from "../../abstractions/IUnlockEntryUseCase";
2
- import type { IGetIdentity, IHasRecordLockingAccessCallable, IRecordLockingLockRecord, IRecordLockingModelManager } from "../../types";
3
- import type { IGetLockRecordUseCase } from "../../abstractions/IGetLockRecordUseCase";
4
- import type { IKickOutCurrentUserUseCase } from "../../abstractions/IKickOutCurrentUserUseCase";
5
- import type { Security } from "@webiny/api-security/types";
6
- export interface IUnlockEntryUseCaseParams {
7
- readonly getLockRecordUseCase: IGetLockRecordUseCase;
8
- readonly kickOutCurrentUserUseCase: IKickOutCurrentUserUseCase;
9
- getManager(): Promise<IRecordLockingModelManager>;
10
- getSecurity(): Pick<Security, "withoutAuthorization">;
11
- getIdentity: IGetIdentity;
12
- hasRecordLockingAccess: IHasRecordLockingAccessCallable;
13
- }
14
- export declare class UnlockEntryUseCase implements IUnlockEntryUseCase {
15
- private readonly getLockRecordUseCase;
16
- private readonly kickOutCurrentUserUseCase;
17
- private readonly getManager;
18
- private readonly getSecurity;
19
- private readonly getIdentity;
20
- private readonly hasRecordLockingAccess;
21
- constructor(params: IUnlockEntryUseCaseParams);
22
- execute(params: IUnlockEntryUseCaseExecuteParams): Promise<IRecordLockingLockRecord>;
23
- }
@@ -1,90 +0,0 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- Object.defineProperty(exports, "__esModule", {
5
- value: true
6
- });
7
- exports.UnlockEntryUseCase = void 0;
8
- var _error = _interopRequireDefault(require("@webiny/error"));
9
- var _lockRecordDatabaseId = require("../../utils/lockRecordDatabaseId");
10
- var _validateSameIdentity = require("../../utils/validateSameIdentity");
11
- var _apiSecurity = require("@webiny/api-security");
12
- var _handlerGraphql = require("@webiny/handler-graphql");
13
- class UnlockEntryUseCase {
14
- constructor(params) {
15
- this.getLockRecordUseCase = params.getLockRecordUseCase;
16
- this.kickOutCurrentUserUseCase = params.kickOutCurrentUserUseCase;
17
- this.getManager = params.getManager;
18
- this.getSecurity = params.getSecurity;
19
- this.getIdentity = params.getIdentity;
20
- this.hasRecordLockingAccess = params.hasRecordLockingAccess;
21
- }
22
- async execute(params) {
23
- const record = await this.getLockRecordUseCase.execute(params);
24
- if (!record || record.isExpired()) {
25
- const security = this.getSecurity();
26
- try {
27
- const manager = await this.getManager();
28
- await security.withoutAuthorization(async () => {
29
- await manager.delete((0, _lockRecordDatabaseId.createLockRecordDatabaseId)(params.id), {
30
- force: true,
31
- permanently: true
32
- });
33
- });
34
- } catch (ex) {
35
- if (ex instanceof _handlerGraphql.NotFoundError === false) {
36
- console.log("Could not forcefully delete lock record.");
37
- console.error(ex);
38
- }
39
- }
40
- throw new _error.default("Lock Record not found.", "LOCK_RECORD_NOT_FOUND", {
41
- ...params
42
- });
43
- }
44
-
45
- /**
46
- * We need to validate that the user executing unlock is the same user that locked the entry.
47
- * In case it is not the same user, there is a possibility that it is a user which has full access,
48
- * and at that point, we allow unlocking, but we also need to message the user who locked the entry.
49
- *
50
- */
51
- let kickOutCurrentUser = false;
52
- try {
53
- (0, _validateSameIdentity.validateSameIdentity)({
54
- getIdentity: this.getIdentity,
55
- target: record.lockedBy
56
- });
57
- } catch (ex) {
58
- if (!params.force) {
59
- throw ex;
60
- }
61
- const hasAccess = await this.hasRecordLockingAccess();
62
- if (ex instanceof _apiSecurity.NotAuthorizedError === false || !hasAccess) {
63
- throw ex;
64
- }
65
- kickOutCurrentUser = true;
66
- }
67
- const security = this.getSecurity();
68
- try {
69
- const manager = await this.getManager();
70
- return await security.withoutAuthorization(async () => {
71
- await manager.delete((0, _lockRecordDatabaseId.createLockRecordDatabaseId)(params.id), {
72
- force: true,
73
- permanently: true
74
- });
75
- if (!kickOutCurrentUser) {
76
- return record;
77
- }
78
- await this.kickOutCurrentUserUseCase.execute(record);
79
- return record;
80
- });
81
- } catch (ex) {
82
- throw new _error.default(`Could not unlock entry: ${ex.message}`, ex.code || "UNLOCK_ENTRY_ERROR", {
83
- ...ex.data
84
- });
85
- }
86
- }
87
- }
88
- exports.UnlockEntryUseCase = UnlockEntryUseCase;
89
-
90
- //# sourceMappingURL=UnlockEntryUseCase.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_error","_interopRequireDefault","require","_lockRecordDatabaseId","_validateSameIdentity","_apiSecurity","_handlerGraphql","UnlockEntryUseCase","constructor","params","getLockRecordUseCase","kickOutCurrentUserUseCase","getManager","getSecurity","getIdentity","hasRecordLockingAccess","execute","record","isExpired","security","manager","withoutAuthorization","delete","createLockRecordDatabaseId","id","force","permanently","ex","NotFoundError","console","log","error","WebinyError","kickOutCurrentUser","validateSameIdentity","target","lockedBy","hasAccess","NotAuthorizedError","message","code","data","exports"],"sources":["UnlockEntryUseCase.ts"],"sourcesContent":["import WebinyError from \"@webiny/error\";\nimport type {\n IUnlockEntryUseCase,\n IUnlockEntryUseCaseExecuteParams\n} from \"~/abstractions/IUnlockEntryUseCase\";\nimport type {\n IGetIdentity,\n IHasRecordLockingAccessCallable,\n IRecordLockingLockRecord,\n IRecordLockingModelManager\n} from \"~/types\";\nimport { createLockRecordDatabaseId } from \"~/utils/lockRecordDatabaseId\";\nimport type { IGetLockRecordUseCase } from \"~/abstractions/IGetLockRecordUseCase\";\nimport { validateSameIdentity } from \"~/utils/validateSameIdentity\";\nimport { NotAuthorizedError } from \"@webiny/api-security\";\nimport type { IKickOutCurrentUserUseCase } from \"~/abstractions/IKickOutCurrentUserUseCase\";\nimport { NotFoundError } from \"@webiny/handler-graphql\";\nimport type { Security } from \"@webiny/api-security/types\";\n\nexport interface IUnlockEntryUseCaseParams {\n readonly getLockRecordUseCase: IGetLockRecordUseCase;\n readonly kickOutCurrentUserUseCase: IKickOutCurrentUserUseCase;\n getManager(): Promise<IRecordLockingModelManager>;\n getSecurity(): Pick<Security, \"withoutAuthorization\">;\n getIdentity: IGetIdentity;\n hasRecordLockingAccess: IHasRecordLockingAccessCallable;\n}\n\nexport class UnlockEntryUseCase implements IUnlockEntryUseCase {\n private readonly getLockRecordUseCase: IGetLockRecordUseCase;\n private readonly kickOutCurrentUserUseCase: IKickOutCurrentUserUseCase;\n private readonly getManager: IUnlockEntryUseCaseParams[\"getManager\"];\n private readonly getSecurity: IUnlockEntryUseCaseParams[\"getSecurity\"];\n private readonly getIdentity: IGetIdentity;\n private readonly hasRecordLockingAccess: IHasRecordLockingAccessCallable;\n\n public constructor(params: IUnlockEntryUseCaseParams) {\n this.getLockRecordUseCase = params.getLockRecordUseCase;\n this.kickOutCurrentUserUseCase = params.kickOutCurrentUserUseCase;\n this.getManager = params.getManager;\n this.getSecurity = params.getSecurity;\n this.getIdentity = params.getIdentity;\n this.hasRecordLockingAccess = params.hasRecordLockingAccess;\n }\n\n public async execute(\n params: IUnlockEntryUseCaseExecuteParams\n ): Promise<IRecordLockingLockRecord> {\n const record = await this.getLockRecordUseCase.execute(params);\n if (!record || record.isExpired()) {\n const security = this.getSecurity();\n try {\n const manager = await this.getManager();\n await security.withoutAuthorization(async () => {\n await manager.delete(createLockRecordDatabaseId(params.id), {\n force: true,\n permanently: true\n });\n });\n } catch (ex) {\n if (ex instanceof NotFoundError === false) {\n console.log(\"Could not forcefully delete lock record.\");\n console.error(ex);\n }\n }\n\n throw new WebinyError(\"Lock Record not found.\", \"LOCK_RECORD_NOT_FOUND\", {\n ...params\n });\n }\n\n /**\n * We need to validate that the user executing unlock is the same user that locked the entry.\n * In case it is not the same user, there is a possibility that it is a user which has full access,\n * and at that point, we allow unlocking, but we also need to message the user who locked the entry.\n *\n */\n let kickOutCurrentUser = false;\n try {\n validateSameIdentity({\n getIdentity: this.getIdentity,\n target: record.lockedBy\n });\n } catch (ex) {\n if (!params.force) {\n throw ex;\n }\n const hasAccess = await this.hasRecordLockingAccess();\n if (ex instanceof NotAuthorizedError === false || !hasAccess) {\n throw ex;\n }\n\n kickOutCurrentUser = true;\n }\n\n const security = this.getSecurity();\n try {\n const manager = await this.getManager();\n return await security.withoutAuthorization(async () => {\n await manager.delete(createLockRecordDatabaseId(params.id), {\n force: true,\n permanently: true\n });\n\n if (!kickOutCurrentUser) {\n return record;\n }\n await this.kickOutCurrentUserUseCase.execute(record);\n return record;\n });\n } catch (ex) {\n throw new WebinyError(\n `Could not unlock entry: ${ex.message}`,\n ex.code || \"UNLOCK_ENTRY_ERROR\",\n {\n ...ex.data\n }\n );\n }\n }\n}\n"],"mappings":"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","ignoreList":[]}
@@ -1,21 +0,0 @@
1
- import type { IUnlockEntryRequestUseCase, IUnlockEntryRequestUseCaseExecuteParams } from "../../abstractions/IUnlockEntryRequestUseCase";
2
- import type { IGetIdentity, IRecordLockingLockRecord, IRecordLockingModelManager } from "../../types";
3
- import type { IGetLockRecordUseCase } from "../../abstractions/IGetLockRecordUseCase";
4
- import type { ConvertEntryToLockRecordCb } from "../types";
5
- import type { Security } from "@webiny/api-security/types";
6
- export interface IUnlockEntryRequestUseCaseParams {
7
- getLockRecordUseCase: IGetLockRecordUseCase;
8
- getManager(): Promise<IRecordLockingModelManager>;
9
- getSecurity(): Pick<Security, "withoutAuthorization">;
10
- getIdentity: IGetIdentity;
11
- convert: ConvertEntryToLockRecordCb;
12
- }
13
- export declare class UnlockEntryRequestUseCase implements IUnlockEntryRequestUseCase {
14
- private readonly getLockRecordUseCase;
15
- private readonly getManager;
16
- private readonly getSecurity;
17
- private readonly getIdentity;
18
- private readonly convert;
19
- constructor(params: IUnlockEntryRequestUseCaseParams);
20
- execute(params: IUnlockEntryRequestUseCaseExecuteParams): Promise<IRecordLockingLockRecord>;
21
- }
@@ -1,82 +0,0 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- Object.defineProperty(exports, "__esModule", {
5
- value: true
6
- });
7
- exports.UnlockEntryRequestUseCase = void 0;
8
- var _error = _interopRequireDefault(require("@webiny/error"));
9
- var _types = require("../../types");
10
- var _lockRecordDatabaseId = require("../../utils/lockRecordDatabaseId");
11
- var _utils = require("@webiny/utils");
12
- class UnlockEntryRequestUseCase {
13
- constructor(params) {
14
- this.getLockRecordUseCase = params.getLockRecordUseCase;
15
- this.getManager = params.getManager;
16
- this.getSecurity = params.getSecurity;
17
- this.getIdentity = params.getIdentity;
18
- this.convert = params.convert;
19
- }
20
- async execute(params) {
21
- const record = await this.getLockRecordUseCase.execute(params);
22
- if (!record || record.isExpired()) {
23
- throw new _error.default("Entry is not locked.", "ENTRY_NOT_LOCKED", {
24
- ...params
25
- });
26
- }
27
- const unlockRequested = record.getUnlockRequested();
28
- if (unlockRequested) {
29
- const currentIdentity = this.getIdentity();
30
- /**
31
- * If a current identity did not request unlock, we will not allow that user to continue.
32
- */
33
- if (unlockRequested.createdBy.id !== currentIdentity.id) {
34
- throw new _error.default("Unlock request already sent.", "UNLOCK_REQUEST_ALREADY_SENT", {
35
- ...params,
36
- identity: unlockRequested.createdBy
37
- });
38
- }
39
- const approved = record.getUnlockApproved();
40
- const denied = record.getUnlockDenied();
41
- if (approved || denied) {
42
- return record;
43
- }
44
- throw new _error.default("Unlock request already sent.", "UNLOCK_REQUEST_ALREADY_SENT", {
45
- ...params,
46
- identity: unlockRequested.createdBy
47
- });
48
- }
49
- record.addAction({
50
- type: _types.RecordLockingLockRecordActionType.requested,
51
- createdOn: new Date(),
52
- createdBy: this.getIdentity()
53
- });
54
- const security = this.getSecurity();
55
- try {
56
- const manager = await this.getManager();
57
- const entryId = (0, _lockRecordDatabaseId.createLockRecordDatabaseId)(record.id);
58
- const id = (0, _utils.createIdentifier)({
59
- id: entryId,
60
- version: 1
61
- });
62
- return await security.withoutAuthorization(async () => {
63
- const result = await manager.update(id, record.toObject());
64
- return this.convert(result);
65
- });
66
- } catch (ex) {
67
- throw new _error.default("Could not update record with a unlock request.", "UNLOCK_REQUEST_ERROR", {
68
- ...ex.data,
69
- error: {
70
- message: ex.message,
71
- code: ex.code
72
- },
73
- id: params.id,
74
- type: params.type,
75
- recordId: record.id
76
- });
77
- }
78
- }
79
- }
80
- exports.UnlockEntryRequestUseCase = UnlockEntryRequestUseCase;
81
-
82
- //# sourceMappingURL=UnlockEntryRequestUseCase.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_error","_interopRequireDefault","require","_types","_lockRecordDatabaseId","_utils","UnlockEntryRequestUseCase","constructor","params","getLockRecordUseCase","getManager","getSecurity","getIdentity","convert","execute","record","isExpired","WebinyError","unlockRequested","getUnlockRequested","currentIdentity","createdBy","id","identity","approved","getUnlockApproved","denied","getUnlockDenied","addAction","type","RecordLockingLockRecordActionType","requested","createdOn","Date","security","manager","entryId","createLockRecordDatabaseId","createIdentifier","version","withoutAuthorization","result","update","toObject","ex","data","error","message","code","recordId","exports"],"sources":["UnlockEntryRequestUseCase.ts"],"sourcesContent":["import WebinyError from \"@webiny/error\";\nimport type {\n IUnlockEntryRequestUseCase,\n IUnlockEntryRequestUseCaseExecuteParams\n} from \"~/abstractions/IUnlockEntryRequestUseCase\";\nimport type { IGetIdentity, IRecordLockingLockRecord, IRecordLockingModelManager } from \"~/types\";\nimport { RecordLockingLockRecordActionType } from \"~/types\";\nimport type { IGetLockRecordUseCase } from \"~/abstractions/IGetLockRecordUseCase\";\nimport { createLockRecordDatabaseId } from \"~/utils/lockRecordDatabaseId\";\nimport { createIdentifier } from \"@webiny/utils\";\nimport type { ConvertEntryToLockRecordCb } from \"~/useCases/types\";\nimport type { Security } from \"@webiny/api-security/types\";\n\nexport interface IUnlockEntryRequestUseCaseParams {\n getLockRecordUseCase: IGetLockRecordUseCase;\n getManager(): Promise<IRecordLockingModelManager>;\n getSecurity(): Pick<Security, \"withoutAuthorization\">;\n getIdentity: IGetIdentity;\n convert: ConvertEntryToLockRecordCb;\n}\n\nexport class UnlockEntryRequestUseCase implements IUnlockEntryRequestUseCase {\n private readonly getLockRecordUseCase: IGetLockRecordUseCase;\n private readonly getManager: IUnlockEntryRequestUseCaseParams[\"getManager\"];\n private readonly getSecurity: IUnlockEntryRequestUseCaseParams[\"getSecurity\"];\n private readonly getIdentity: IGetIdentity;\n private readonly convert: ConvertEntryToLockRecordCb;\n\n public constructor(params: IUnlockEntryRequestUseCaseParams) {\n this.getLockRecordUseCase = params.getLockRecordUseCase;\n this.getManager = params.getManager;\n this.getSecurity = params.getSecurity;\n this.getIdentity = params.getIdentity;\n this.convert = params.convert;\n }\n\n public async execute(\n params: IUnlockEntryRequestUseCaseExecuteParams\n ): Promise<IRecordLockingLockRecord> {\n const record = await this.getLockRecordUseCase.execute(params);\n if (!record || record.isExpired()) {\n throw new WebinyError(\"Entry is not locked.\", \"ENTRY_NOT_LOCKED\", {\n ...params\n });\n }\n const unlockRequested = record.getUnlockRequested();\n if (unlockRequested) {\n const currentIdentity = this.getIdentity();\n /**\n * If a current identity did not request unlock, we will not allow that user to continue.\n */\n if (unlockRequested.createdBy.id !== currentIdentity.id) {\n throw new WebinyError(\n \"Unlock request already sent.\",\n \"UNLOCK_REQUEST_ALREADY_SENT\",\n {\n ...params,\n identity: unlockRequested.createdBy\n }\n );\n }\n const approved = record.getUnlockApproved();\n const denied = record.getUnlockDenied();\n if (approved || denied) {\n return record;\n }\n throw new WebinyError(\"Unlock request already sent.\", \"UNLOCK_REQUEST_ALREADY_SENT\", {\n ...params,\n identity: unlockRequested.createdBy\n });\n }\n\n record.addAction({\n type: RecordLockingLockRecordActionType.requested,\n createdOn: new Date(),\n createdBy: this.getIdentity()\n });\n\n const security = this.getSecurity();\n\n try {\n const manager = await this.getManager();\n\n const entryId = createLockRecordDatabaseId(record.id);\n const id = createIdentifier({\n id: entryId,\n version: 1\n });\n return await security.withoutAuthorization(async () => {\n const result = await manager.update(id, record.toObject());\n return this.convert(result);\n });\n } catch (ex) {\n throw new WebinyError(\n \"Could not update record with a unlock request.\",\n \"UNLOCK_REQUEST_ERROR\",\n {\n ...ex.data,\n error: {\n message: ex.message,\n code: ex.code\n },\n id: params.id,\n type: params.type,\n recordId: record.id\n }\n );\n }\n }\n}\n"],"mappings":"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","ignoreList":[]}
@@ -1,26 +0,0 @@
1
- import type { IUpdateEntryLockUseCase, IUpdateEntryLockUseCaseExecuteParams } from "../../abstractions/IUpdateEntryLockUseCase";
2
- import type { IGetIdentity, IRecordLockingLockRecord, IRecordLockingModelManager } from "../../types";
3
- import type { IGetLockRecordUseCase } from "../../abstractions/IGetLockRecordUseCase";
4
- import type { ILockEntryUseCase } from "../../abstractions/ILockEntryUseCase";
5
- import type { ConvertEntryToLockRecordCb } from "../types";
6
- import type { Security } from "@webiny/api-security/types";
7
- export interface IUpdateEntryLockUseCaseParams {
8
- readonly getLockRecordUseCase: IGetLockRecordUseCase;
9
- readonly lockEntryUseCase: ILockEntryUseCase;
10
- getManager(): Promise<IRecordLockingModelManager>;
11
- getSecurity(): Pick<Security, "withoutAuthorization">;
12
- getIdentity: IGetIdentity;
13
- convert: ConvertEntryToLockRecordCb;
14
- }
15
- export declare class UpdateEntryLockUseCase implements IUpdateEntryLockUseCase {
16
- private readonly getLockRecordUseCase;
17
- private readonly lockEntryUseCase;
18
- private readonly getManager;
19
- private readonly getSecurity;
20
- private readonly getIdentity;
21
- private readonly convert;
22
- constructor(params: IUpdateEntryLockUseCaseParams);
23
- execute(params: IUpdateEntryLockUseCaseExecuteParams): Promise<IRecordLockingLockRecord>;
24
- private updateOverExistingLockRecord;
25
- private updateExistingLockRecord;
26
- }
@@ -1,93 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.UpdateEntryLockUseCase = void 0;
7
- var _error = require("@webiny/error");
8
- var _lockRecordDatabaseId = require("../../utils/lockRecordDatabaseId");
9
- var _utils = require("@webiny/utils");
10
- var _validateSameIdentity = require("../../utils/validateSameIdentity");
11
- class UpdateEntryLockUseCase {
12
- constructor(params) {
13
- this.getLockRecordUseCase = params.getLockRecordUseCase;
14
- this.lockEntryUseCase = params.lockEntryUseCase;
15
- this.getManager = params.getManager;
16
- this.getSecurity = params.getSecurity;
17
- this.getIdentity = params.getIdentity;
18
- this.convert = params.convert;
19
- }
20
- async execute(params) {
21
- /**
22
- * There is a possibility that the lock record already exists, just that the entry is not actually locked - lock expired.
23
- */
24
- const record = await this.getLockRecordUseCase.execute(params);
25
- /**
26
- * If it exists, we will update the record with new user and dates.
27
- * But if it does not exist, we will create a new record.
28
- */
29
- if (!record) {
30
- return this.lockEntryUseCase.execute(params);
31
- } else if (record.isExpired()) {
32
- return this.updateOverExistingLockRecord(record);
33
- }
34
- /**
35
- * If the record exists and is not expired, we need to check if the user is the same as the one who locked it.
36
- */
37
- (0, _validateSameIdentity.validateSameIdentity)({
38
- getIdentity: this.getIdentity,
39
- target: record.lockedBy
40
- });
41
- return this.updateExistingLockRecord(record);
42
- }
43
- async updateOverExistingLockRecord(record) {
44
- try {
45
- const manager = await this.getManager();
46
- const security = this.getSecurity();
47
- const identity = this.getIdentity();
48
- const entryId = (0, _lockRecordDatabaseId.createLockRecordDatabaseId)(record.id);
49
- const id = (0, _utils.createIdentifier)({
50
- id: entryId,
51
- version: 1
52
- });
53
- return await security.withoutAuthorization(async () => {
54
- const date = new Date().toISOString();
55
- const result = await manager.update(id, {
56
- savedOn: date,
57
- createdOn: date,
58
- savedBy: identity,
59
- createdBy: identity
60
- });
61
- return this.convert(result);
62
- });
63
- } catch (ex) {
64
- throw new _error.WebinyError(`Could not update lock entry: ${ex.message}`, ex.code || "UPDATE_LOCK_ENTRY_ERROR", {
65
- ...ex.data
66
- });
67
- }
68
- }
69
- async updateExistingLockRecord(record) {
70
- try {
71
- const manager = await this.getManager();
72
- const security = this.getSecurity();
73
- const entryId = (0, _lockRecordDatabaseId.createLockRecordDatabaseId)(record.id);
74
- const id = (0, _utils.createIdentifier)({
75
- id: entryId,
76
- version: 1
77
- });
78
- return await security.withoutAuthorization(async () => {
79
- const result = await manager.update(id, {
80
- savedOn: new Date().toISOString()
81
- });
82
- return this.convert(result);
83
- });
84
- } catch (ex) {
85
- throw new _error.WebinyError(`Could not update lock entry: ${ex.message}`, ex.code || "UPDATE_LOCK_ENTRY_ERROR", {
86
- ...ex.data
87
- });
88
- }
89
- }
90
- }
91
- exports.UpdateEntryLockUseCase = UpdateEntryLockUseCase;
92
-
93
- //# sourceMappingURL=UpdateEntryLockUseCase.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_error","require","_lockRecordDatabaseId","_utils","_validateSameIdentity","UpdateEntryLockUseCase","constructor","params","getLockRecordUseCase","lockEntryUseCase","getManager","getSecurity","getIdentity","convert","execute","record","isExpired","updateOverExistingLockRecord","validateSameIdentity","target","lockedBy","updateExistingLockRecord","manager","security","identity","entryId","createLockRecordDatabaseId","id","createIdentifier","version","withoutAuthorization","date","Date","toISOString","result","update","savedOn","createdOn","savedBy","createdBy","ex","WebinyError","message","code","data","exports"],"sources":["UpdateEntryLockUseCase.ts"],"sourcesContent":["import type {\n IUpdateEntryLockUseCase,\n IUpdateEntryLockUseCaseExecuteParams\n} from \"~/abstractions/IUpdateEntryLockUseCase\";\nimport type { IGetIdentity, IRecordLockingLockRecord, IRecordLockingModelManager } from \"~/types\";\nimport type { IGetLockRecordUseCase } from \"~/abstractions/IGetLockRecordUseCase\";\nimport { WebinyError } from \"@webiny/error\";\nimport { createLockRecordDatabaseId } from \"~/utils/lockRecordDatabaseId\";\nimport { createIdentifier } from \"@webiny/utils\";\nimport { validateSameIdentity } from \"~/utils/validateSameIdentity\";\nimport type { ILockEntryUseCase } from \"~/abstractions/ILockEntryUseCase\";\nimport type { ConvertEntryToLockRecordCb } from \"~/useCases/types\";\nimport type { Security } from \"@webiny/api-security/types\";\n\nexport interface IUpdateEntryLockUseCaseParams {\n readonly getLockRecordUseCase: IGetLockRecordUseCase;\n readonly lockEntryUseCase: ILockEntryUseCase;\n getManager(): Promise<IRecordLockingModelManager>;\n getSecurity(): Pick<Security, \"withoutAuthorization\">;\n getIdentity: IGetIdentity;\n convert: ConvertEntryToLockRecordCb;\n}\n\nexport class UpdateEntryLockUseCase implements IUpdateEntryLockUseCase {\n private readonly getLockRecordUseCase: IGetLockRecordUseCase;\n private readonly lockEntryUseCase: ILockEntryUseCase;\n private readonly getManager: IUpdateEntryLockUseCaseParams[\"getManager\"];\n private readonly getSecurity: IUpdateEntryLockUseCaseParams[\"getSecurity\"];\n private readonly getIdentity: IGetIdentity;\n private readonly convert: ConvertEntryToLockRecordCb;\n\n public constructor(params: IUpdateEntryLockUseCaseParams) {\n this.getLockRecordUseCase = params.getLockRecordUseCase;\n this.lockEntryUseCase = params.lockEntryUseCase;\n this.getManager = params.getManager;\n this.getSecurity = params.getSecurity;\n this.getIdentity = params.getIdentity;\n this.convert = params.convert;\n }\n\n public async execute(\n params: IUpdateEntryLockUseCaseExecuteParams\n ): Promise<IRecordLockingLockRecord> {\n /**\n * There is a possibility that the lock record already exists, just that the entry is not actually locked - lock expired.\n */\n const record = await this.getLockRecordUseCase.execute(params);\n /**\n * If it exists, we will update the record with new user and dates.\n * But if it does not exist, we will create a new record.\n */\n if (!record) {\n return this.lockEntryUseCase.execute(params);\n } else if (record.isExpired()) {\n return this.updateOverExistingLockRecord(record);\n }\n /**\n * If the record exists and is not expired, we need to check if the user is the same as the one who locked it.\n */\n validateSameIdentity({\n getIdentity: this.getIdentity,\n target: record.lockedBy\n });\n return this.updateExistingLockRecord(record);\n }\n\n private async updateOverExistingLockRecord(\n record: Pick<IRecordLockingLockRecord, \"id\">\n ): Promise<IRecordLockingLockRecord> {\n try {\n const manager = await this.getManager();\n const security = this.getSecurity();\n const identity = this.getIdentity();\n\n const entryId = createLockRecordDatabaseId(record.id);\n const id = createIdentifier({\n id: entryId,\n version: 1\n });\n return await security.withoutAuthorization(async () => {\n const date = new Date().toISOString();\n const result = await manager.update(id, {\n savedOn: date,\n createdOn: date,\n savedBy: identity,\n createdBy: identity\n });\n return this.convert(result);\n });\n } catch (ex) {\n throw new WebinyError(\n `Could not update lock entry: ${ex.message}`,\n ex.code || \"UPDATE_LOCK_ENTRY_ERROR\",\n {\n ...ex.data\n }\n );\n }\n }\n\n private async updateExistingLockRecord(\n record: Pick<IRecordLockingLockRecord, \"id\">\n ): Promise<IRecordLockingLockRecord> {\n try {\n const manager = await this.getManager();\n const security = this.getSecurity();\n\n const entryId = createLockRecordDatabaseId(record.id);\n const id = createIdentifier({\n id: entryId,\n version: 1\n });\n return await security.withoutAuthorization(async () => {\n const result = await manager.update(id, {\n savedOn: new Date().toISOString()\n });\n return this.convert(result);\n });\n } catch (ex) {\n throw new WebinyError(\n `Could not update lock entry: ${ex.message}`,\n ex.code || \"UPDATE_LOCK_ENTRY_ERROR\",\n {\n ...ex.data\n }\n );\n }\n }\n}\n"],"mappings":"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","ignoreList":[]}
@@ -1,31 +0,0 @@
1
- import type { IGetIdentity, IGetWebsocketsContextCallable, IHasRecordLockingAccessCallable, IRecordLockingModelManager } from "../types";
2
- import type { IListAllLockRecordsUseCase } from "../abstractions/IListAllLockRecordsUseCase";
3
- import type { IListLockRecordsUseCase } from "../abstractions/IListLockRecordsUseCase";
4
- import type { IGetLockRecordUseCase } from "../abstractions/IGetLockRecordUseCase";
5
- import type { IIsEntryLockedUseCase } from "../abstractions/IIsEntryLocked";
6
- import type { IGetLockedEntryLockRecordUseCase } from "../abstractions/IGetLockedEntryLockRecordUseCase";
7
- import type { ILockEntryUseCase } from "../abstractions/ILockEntryUseCase";
8
- import type { IUpdateEntryLockUseCase } from "../abstractions/IUpdateEntryLockUseCase";
9
- import type { IUnlockEntryUseCase } from "../abstractions/IUnlockEntryUseCase";
10
- import type { IUnlockEntryRequestUseCase } from "../abstractions/IUnlockEntryRequestUseCase";
11
- import type { Security } from "@webiny/api-security/types";
12
- export interface ICreateUseCasesParams {
13
- getTimeout: () => number;
14
- getIdentity: IGetIdentity;
15
- getManager(): Promise<IRecordLockingModelManager>;
16
- getSecurity(): Pick<Security, "withoutAuthorization">;
17
- hasRecordLockingAccess: IHasRecordLockingAccessCallable;
18
- getWebsockets: IGetWebsocketsContextCallable;
19
- }
20
- export interface ICreateUseCasesResponse {
21
- listAllLockRecordsUseCase: IListAllLockRecordsUseCase;
22
- listLockRecordsUseCase: IListLockRecordsUseCase;
23
- getLockRecordUseCase: IGetLockRecordUseCase;
24
- isEntryLockedUseCase: IIsEntryLockedUseCase;
25
- getLockedEntryLockRecordUseCase: IGetLockedEntryLockRecordUseCase;
26
- lockEntryUseCase: ILockEntryUseCase;
27
- updateEntryLockUseCase: IUpdateEntryLockUseCase;
28
- unlockEntryUseCase: IUnlockEntryUseCase;
29
- unlockEntryRequestUseCase: IUnlockEntryRequestUseCase;
30
- }
31
- export declare const createUseCases: (params: ICreateUseCasesParams) => ICreateUseCasesResponse;