@strapi/content-releases 0.0.0-next.1168c576ca50587b1a4377082ee09d2375410204 → 0.0.0-next.16afe21665d27a27f5c86939ba362066eabf1982

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 (31) hide show
  1. package/LICENSE +17 -1
  2. package/dist/_chunks/{App-_20W9dYa.js → App-dLXY5ei3.js} +784 -468
  3. package/dist/_chunks/App-dLXY5ei3.js.map +1 -0
  4. package/dist/_chunks/App-jrh58sXY.mjs +1330 -0
  5. package/dist/_chunks/App-jrh58sXY.mjs.map +1 -0
  6. package/dist/_chunks/PurchaseContentReleases-3tRbmbY3.mjs +51 -0
  7. package/dist/_chunks/PurchaseContentReleases-3tRbmbY3.mjs.map +1 -0
  8. package/dist/_chunks/PurchaseContentReleases-bpIYXOfu.js +51 -0
  9. package/dist/_chunks/PurchaseContentReleases-bpIYXOfu.js.map +1 -0
  10. package/dist/_chunks/{en-gYDqKYFd.js → en-HrREghh3.js} +30 -7
  11. package/dist/_chunks/en-HrREghh3.js.map +1 -0
  12. package/dist/_chunks/{en-MyLPoISH.mjs → en-ltT1TlKQ.mjs} +30 -7
  13. package/dist/_chunks/en-ltT1TlKQ.mjs.map +1 -0
  14. package/dist/_chunks/{index-KJa1Rb5F.js → index-CVO0Rqdm.js} +469 -41
  15. package/dist/_chunks/index-CVO0Rqdm.js.map +1 -0
  16. package/dist/_chunks/{index-c4zRX_sg.mjs → index-PiOGBETy.mjs} +486 -58
  17. package/dist/_chunks/index-PiOGBETy.mjs.map +1 -0
  18. package/dist/admin/index.js +1 -1
  19. package/dist/admin/index.mjs +2 -2
  20. package/dist/server/index.js +1066 -398
  21. package/dist/server/index.js.map +1 -1
  22. package/dist/server/index.mjs +1065 -398
  23. package/dist/server/index.mjs.map +1 -1
  24. package/package.json +16 -13
  25. package/dist/_chunks/App-L1jSxCiL.mjs +0 -1015
  26. package/dist/_chunks/App-L1jSxCiL.mjs.map +0 -1
  27. package/dist/_chunks/App-_20W9dYa.js.map +0 -1
  28. package/dist/_chunks/en-MyLPoISH.mjs.map +0 -1
  29. package/dist/_chunks/en-gYDqKYFd.js.map +0 -1
  30. package/dist/_chunks/index-KJa1Rb5F.js.map +0 -1
  31. package/dist/_chunks/index-c4zRX_sg.mjs.map +0 -1
@@ -1,7 +1,9 @@
1
1
  import { contentTypes as contentTypes$1, mapAsync, setCreatorFields, errors, validateYupSchema, yup as yup$1 } from "@strapi/utils";
2
+ import isEqual from "lodash/isEqual";
2
3
  import { difference, keys } from "lodash";
3
4
  import _ from "lodash/fp";
4
5
  import EE from "@strapi/strapi/dist/utils/ee";
6
+ import { scheduleJob } from "node-schedule";
5
7
  import * as yup from "yup";
6
8
  const RELEASE_MODEL_UID = "plugin::content-releases.release";
7
9
  const RELEASE_ACTION_MODEL_UID = "plugin::content-releases.release-action";
@@ -49,6 +51,32 @@ const ACTIONS = [
49
51
  pluginName: "content-releases"
50
52
  }
51
53
  ];
54
+ const ALLOWED_WEBHOOK_EVENTS = {
55
+ RELEASES_PUBLISH: "releases.publish"
56
+ };
57
+ const getService = (name, { strapi: strapi2 } = { strapi: global.strapi }) => {
58
+ return strapi2.plugin("content-releases").service(name);
59
+ };
60
+ const getPopulatedEntry = async (contentTypeUid, entryId, { strapi: strapi2 } = { strapi: global.strapi }) => {
61
+ const populateBuilderService = strapi2.plugin("content-manager").service("populate-builder");
62
+ const populate = await populateBuilderService(contentTypeUid).populateDeep(Infinity).build();
63
+ const entry = await strapi2.entityService.findOne(contentTypeUid, entryId, { populate });
64
+ return entry;
65
+ };
66
+ const getEntryValidStatus = async (contentTypeUid, entry, { strapi: strapi2 } = { strapi: global.strapi }) => {
67
+ try {
68
+ await strapi2.entityValidator.validateEntityCreation(
69
+ strapi2.getModel(contentTypeUid),
70
+ entry,
71
+ void 0,
72
+ // @ts-expect-error - FIXME: entity here is unnecessary
73
+ entry
74
+ );
75
+ return true;
76
+ } catch {
77
+ return false;
78
+ }
79
+ };
52
80
  async function deleteActionsOnDisableDraftAndPublish({
53
81
  oldContentTypes,
54
82
  contentTypes: contentTypes2
@@ -75,28 +103,202 @@ async function deleteActionsOnDeleteContentType({ oldContentTypes, contentTypes:
75
103
  });
76
104
  }
77
105
  }
106
+ async function migrateIsValidAndStatusReleases() {
107
+ const releasesWithoutStatus = await strapi.db.query(RELEASE_MODEL_UID).findMany({
108
+ where: {
109
+ status: null,
110
+ releasedAt: null
111
+ },
112
+ populate: {
113
+ actions: {
114
+ populate: {
115
+ entry: true
116
+ }
117
+ }
118
+ }
119
+ });
120
+ mapAsync(releasesWithoutStatus, async (release2) => {
121
+ const actions = release2.actions;
122
+ const notValidatedActions = actions.filter((action) => action.isEntryValid === null);
123
+ for (const action of notValidatedActions) {
124
+ if (action.entry) {
125
+ const populatedEntry = await getPopulatedEntry(action.contentType, action.entry.id, {
126
+ strapi
127
+ });
128
+ if (populatedEntry) {
129
+ const isEntryValid = getEntryValidStatus(action.contentType, populatedEntry, { strapi });
130
+ await strapi.db.query(RELEASE_ACTION_MODEL_UID).update({
131
+ where: {
132
+ id: action.id
133
+ },
134
+ data: {
135
+ isEntryValid
136
+ }
137
+ });
138
+ }
139
+ }
140
+ }
141
+ return getService("release", { strapi }).updateReleaseStatus(release2.id);
142
+ });
143
+ const publishedReleases = await strapi.db.query(RELEASE_MODEL_UID).findMany({
144
+ where: {
145
+ status: null,
146
+ releasedAt: {
147
+ $notNull: true
148
+ }
149
+ }
150
+ });
151
+ mapAsync(publishedReleases, async (release2) => {
152
+ return strapi.db.query(RELEASE_MODEL_UID).update({
153
+ where: {
154
+ id: release2.id
155
+ },
156
+ data: {
157
+ status: "done"
158
+ }
159
+ });
160
+ });
161
+ }
162
+ async function revalidateChangedContentTypes({ oldContentTypes, contentTypes: contentTypes2 }) {
163
+ if (oldContentTypes !== void 0 && contentTypes2 !== void 0) {
164
+ const contentTypesWithDraftAndPublish = Object.keys(oldContentTypes).filter(
165
+ (uid) => oldContentTypes[uid]?.options?.draftAndPublish
166
+ );
167
+ const releasesAffected = /* @__PURE__ */ new Set();
168
+ mapAsync(contentTypesWithDraftAndPublish, async (contentTypeUID) => {
169
+ const oldContentType = oldContentTypes[contentTypeUID];
170
+ const contentType = contentTypes2[contentTypeUID];
171
+ if (!isEqual(oldContentType?.attributes, contentType?.attributes)) {
172
+ const actions = await strapi.db.query(RELEASE_ACTION_MODEL_UID).findMany({
173
+ where: {
174
+ contentType: contentTypeUID
175
+ },
176
+ populate: {
177
+ entry: true,
178
+ release: true
179
+ }
180
+ });
181
+ await mapAsync(actions, async (action) => {
182
+ if (action.entry && action.release) {
183
+ const populatedEntry = await getPopulatedEntry(contentTypeUID, action.entry.id, {
184
+ strapi
185
+ });
186
+ if (populatedEntry) {
187
+ const isEntryValid = await getEntryValidStatus(contentTypeUID, populatedEntry, {
188
+ strapi
189
+ });
190
+ releasesAffected.add(action.release.id);
191
+ await strapi.db.query(RELEASE_ACTION_MODEL_UID).update({
192
+ where: {
193
+ id: action.id
194
+ },
195
+ data: {
196
+ isEntryValid
197
+ }
198
+ });
199
+ }
200
+ }
201
+ });
202
+ }
203
+ }).then(() => {
204
+ mapAsync(releasesAffected, async (releaseId) => {
205
+ return getService("release", { strapi }).updateReleaseStatus(releaseId);
206
+ });
207
+ });
208
+ }
209
+ }
210
+ async function disableContentTypeLocalized({ oldContentTypes, contentTypes: contentTypes2 }) {
211
+ if (!oldContentTypes) {
212
+ return;
213
+ }
214
+ const i18nPlugin = strapi.plugin("i18n");
215
+ if (!i18nPlugin) {
216
+ return;
217
+ }
218
+ for (const uid in contentTypes2) {
219
+ if (!oldContentTypes[uid]) {
220
+ continue;
221
+ }
222
+ const oldContentType = oldContentTypes[uid];
223
+ const contentType = contentTypes2[uid];
224
+ const { isLocalizedContentType } = i18nPlugin.service("content-types");
225
+ if (isLocalizedContentType(oldContentType) && !isLocalizedContentType(contentType)) {
226
+ await strapi.db.queryBuilder(RELEASE_ACTION_MODEL_UID).update({
227
+ locale: null
228
+ }).where({ contentType: uid }).execute();
229
+ }
230
+ }
231
+ }
232
+ async function enableContentTypeLocalized({ oldContentTypes, contentTypes: contentTypes2 }) {
233
+ if (!oldContentTypes) {
234
+ return;
235
+ }
236
+ const i18nPlugin = strapi.plugin("i18n");
237
+ if (!i18nPlugin) {
238
+ return;
239
+ }
240
+ for (const uid in contentTypes2) {
241
+ if (!oldContentTypes[uid]) {
242
+ continue;
243
+ }
244
+ const oldContentType = oldContentTypes[uid];
245
+ const contentType = contentTypes2[uid];
246
+ const { isLocalizedContentType } = i18nPlugin.service("content-types");
247
+ const { getDefaultLocale } = i18nPlugin.service("locales");
248
+ if (!isLocalizedContentType(oldContentType) && isLocalizedContentType(contentType)) {
249
+ const defaultLocale = await getDefaultLocale();
250
+ await strapi.db.queryBuilder(RELEASE_ACTION_MODEL_UID).update({
251
+ locale: defaultLocale
252
+ }).where({ contentType: uid }).execute();
253
+ }
254
+ }
255
+ }
78
256
  const { features: features$2 } = require("@strapi/strapi/dist/utils/ee");
79
257
  const register = async ({ strapi: strapi2 }) => {
80
258
  if (features$2.isEnabled("cms-content-releases")) {
81
259
  await strapi2.admin.services.permission.actionProvider.registerMany(ACTIONS);
82
- strapi2.hook("strapi::content-types.beforeSync").register(deleteActionsOnDisableDraftAndPublish);
83
- strapi2.hook("strapi::content-types.afterSync").register(deleteActionsOnDeleteContentType);
260
+ strapi2.hook("strapi::content-types.beforeSync").register(deleteActionsOnDisableDraftAndPublish).register(disableContentTypeLocalized);
261
+ strapi2.hook("strapi::content-types.afterSync").register(deleteActionsOnDeleteContentType).register(enableContentTypeLocalized).register(revalidateChangedContentTypes).register(migrateIsValidAndStatusReleases);
262
+ }
263
+ if (strapi2.plugin("graphql")) {
264
+ const graphqlExtensionService = strapi2.plugin("graphql").service("extension");
265
+ graphqlExtensionService.shadowCRUD(RELEASE_MODEL_UID).disable();
266
+ graphqlExtensionService.shadowCRUD(RELEASE_ACTION_MODEL_UID).disable();
84
267
  }
85
268
  };
86
269
  const { features: features$1 } = require("@strapi/strapi/dist/utils/ee");
87
270
  const bootstrap = async ({ strapi: strapi2 }) => {
88
271
  if (features$1.isEnabled("cms-content-releases")) {
272
+ const contentTypesWithDraftAndPublish = Object.keys(strapi2.contentTypes).filter(
273
+ (uid) => strapi2.contentTypes[uid]?.options?.draftAndPublish
274
+ );
89
275
  strapi2.db.lifecycles.subscribe({
90
- afterDelete(event) {
91
- const { model, result } = event;
92
- if (model.kind === "collectionType" && model.options?.draftAndPublish) {
93
- const { id } = result;
94
- strapi2.db.query(RELEASE_ACTION_MODEL_UID).deleteMany({
95
- where: {
96
- target_type: model.uid,
97
- target_id: id
276
+ models: contentTypesWithDraftAndPublish,
277
+ async afterDelete(event) {
278
+ try {
279
+ const { model, result } = event;
280
+ if (model.kind === "collectionType" && model.options?.draftAndPublish) {
281
+ const { id } = result;
282
+ const releases = await strapi2.db.query(RELEASE_MODEL_UID).findMany({
283
+ where: {
284
+ actions: {
285
+ target_type: model.uid,
286
+ target_id: id
287
+ }
288
+ }
289
+ });
290
+ await strapi2.db.query(RELEASE_ACTION_MODEL_UID).deleteMany({
291
+ where: {
292
+ target_type: model.uid,
293
+ target_id: id
294
+ }
295
+ });
296
+ for (const release2 of releases) {
297
+ getService("release", { strapi: strapi2 }).updateReleaseStatus(release2.id);
98
298
  }
99
- });
299
+ }
300
+ } catch (error) {
301
+ strapi2.log.error("Error while deleting release actions after entry delete", { error });
100
302
  }
101
303
  },
102
304
  /**
@@ -116,20 +318,94 @@ const bootstrap = async ({ strapi: strapi2 }) => {
116
318
  * We make this only after deleteMany is succesfully executed to avoid errors
117
319
  */
118
320
  async afterDeleteMany(event) {
119
- const { model, state } = event;
120
- const entriesToDelete = state.entriesToDelete;
121
- if (entriesToDelete) {
122
- await strapi2.db.query(RELEASE_ACTION_MODEL_UID).deleteMany({
123
- where: {
124
- target_type: model.uid,
125
- target_id: {
126
- $in: entriesToDelete.map((entry) => entry.id)
321
+ try {
322
+ const { model, state } = event;
323
+ const entriesToDelete = state.entriesToDelete;
324
+ if (entriesToDelete) {
325
+ const releases = await strapi2.db.query(RELEASE_MODEL_UID).findMany({
326
+ where: {
327
+ actions: {
328
+ target_type: model.uid,
329
+ target_id: {
330
+ $in: entriesToDelete.map(
331
+ (entry) => entry.id
332
+ )
333
+ }
334
+ }
127
335
  }
336
+ });
337
+ await strapi2.db.query(RELEASE_ACTION_MODEL_UID).deleteMany({
338
+ where: {
339
+ target_type: model.uid,
340
+ target_id: {
341
+ $in: entriesToDelete.map((entry) => entry.id)
342
+ }
343
+ }
344
+ });
345
+ for (const release2 of releases) {
346
+ getService("release", { strapi: strapi2 }).updateReleaseStatus(release2.id);
128
347
  }
348
+ }
349
+ } catch (error) {
350
+ strapi2.log.error("Error while deleting release actions after entry deleteMany", {
351
+ error
129
352
  });
130
353
  }
354
+ },
355
+ async afterUpdate(event) {
356
+ try {
357
+ const { model, result } = event;
358
+ if (model.kind === "collectionType" && model.options?.draftAndPublish) {
359
+ const isEntryValid = await getEntryValidStatus(
360
+ model.uid,
361
+ result,
362
+ {
363
+ strapi: strapi2
364
+ }
365
+ );
366
+ await strapi2.db.query(RELEASE_ACTION_MODEL_UID).update({
367
+ where: {
368
+ target_type: model.uid,
369
+ target_id: result.id
370
+ },
371
+ data: {
372
+ isEntryValid
373
+ }
374
+ });
375
+ const releases = await strapi2.db.query(RELEASE_MODEL_UID).findMany({
376
+ where: {
377
+ actions: {
378
+ target_type: model.uid,
379
+ target_id: result.id
380
+ }
381
+ }
382
+ });
383
+ for (const release2 of releases) {
384
+ getService("release", { strapi: strapi2 }).updateReleaseStatus(release2.id);
385
+ }
386
+ }
387
+ } catch (error) {
388
+ strapi2.log.error("Error while updating release actions after entry update", { error });
389
+ }
131
390
  }
132
391
  });
392
+ getService("scheduling", { strapi: strapi2 }).syncFromDatabase().catch((err) => {
393
+ strapi2.log.error(
394
+ "Error while syncing scheduled jobs from the database in the content-releases plugin. This could lead to errors in the releases scheduling."
395
+ );
396
+ throw err;
397
+ });
398
+ Object.entries(ALLOWED_WEBHOOK_EVENTS).forEach(([key, value]) => {
399
+ strapi2.webhookStore.addAllowedEvent(key, value);
400
+ });
401
+ }
402
+ };
403
+ const destroy = async ({ strapi: strapi2 }) => {
404
+ const scheduledJobs = getService("scheduling", {
405
+ strapi: strapi2
406
+ }).getAll();
407
+ for (const [, job] of scheduledJobs) {
408
+ job.cancel();
133
409
  }
134
410
  };
135
411
  const schema$1 = {
@@ -158,6 +434,17 @@ const schema$1 = {
158
434
  releasedAt: {
159
435
  type: "datetime"
160
436
  },
437
+ scheduledAt: {
438
+ type: "datetime"
439
+ },
440
+ timezone: {
441
+ type: "string"
442
+ },
443
+ status: {
444
+ type: "enumeration",
445
+ enum: ["ready", "blocked", "failed", "done", "empty"],
446
+ required: true
447
+ },
161
448
  actions: {
162
449
  type: "relation",
163
450
  relation: "oneToMany",
@@ -210,6 +497,9 @@ const schema = {
210
497
  relation: "manyToOne",
211
498
  target: RELEASE_MODEL_UID,
212
499
  inversedBy: "actions"
500
+ },
501
+ isEntryValid: {
502
+ type: "boolean"
213
503
  }
214
504
  }
215
505
  };
@@ -220,9 +510,6 @@ const contentTypes = {
220
510
  release: release$1,
221
511
  "release-action": releaseAction$1
222
512
  };
223
- const getService = (name, { strapi: strapi2 } = { strapi: global.strapi }) => {
224
- return strapi2.plugin("content-releases").service(name);
225
- };
226
513
  const getGroupName = (queryValue) => {
227
514
  switch (queryValue) {
228
515
  case "contentType":
@@ -235,415 +522,596 @@ const getGroupName = (queryValue) => {
235
522
  return "contentType.displayName";
236
523
  }
237
524
  };
238
- const createReleaseService = ({ strapi: strapi2 }) => ({
239
- async create(releaseData, { user }) {
240
- const releaseWithCreatorFields = await setCreatorFields({ user })(releaseData);
241
- const { validatePendingReleasesLimit, validateUniqueNameForPendingRelease } = getService(
242
- "release-validation",
243
- { strapi: strapi2 }
244
- );
245
- await Promise.all([
246
- validatePendingReleasesLimit(),
247
- validateUniqueNameForPendingRelease(releaseWithCreatorFields.name)
248
- ]);
249
- return strapi2.entityService.create(RELEASE_MODEL_UID, {
250
- data: releaseWithCreatorFields
525
+ const createReleaseService = ({ strapi: strapi2 }) => {
526
+ const dispatchWebhook = (event, { isPublished, release: release2, error }) => {
527
+ strapi2.eventHub.emit(event, {
528
+ isPublished,
529
+ error,
530
+ release: release2
251
531
  });
252
- },
253
- async findOne(id, query = {}) {
254
- const release2 = await strapi2.entityService.findOne(RELEASE_MODEL_UID, id, {
255
- ...query
532
+ };
533
+ const publishSingleTypeAction = async (uid, actionType, entryId) => {
534
+ const entityManagerService = strapi2.plugin("content-manager").service("entity-manager");
535
+ const populateBuilderService = strapi2.plugin("content-manager").service("populate-builder");
536
+ const populate = await populateBuilderService(uid).populateDeep(Infinity).build();
537
+ const entry = await strapi2.entityService.findOne(uid, entryId, { populate });
538
+ try {
539
+ if (actionType === "publish") {
540
+ await entityManagerService.publish(entry, uid);
541
+ } else {
542
+ await entityManagerService.unpublish(entry, uid);
543
+ }
544
+ } catch (error) {
545
+ if (error instanceof errors.ApplicationError && (error.message === "already.published" || error.message === "already.draft"))
546
+ ;
547
+ else {
548
+ throw error;
549
+ }
550
+ }
551
+ };
552
+ const publishCollectionTypeAction = async (uid, entriesToPublishIds, entriestoUnpublishIds) => {
553
+ const entityManagerService = strapi2.plugin("content-manager").service("entity-manager");
554
+ const populateBuilderService = strapi2.plugin("content-manager").service("populate-builder");
555
+ const populate = await populateBuilderService(uid).populateDeep(Infinity).build();
556
+ const entriesToPublish = await strapi2.entityService.findMany(uid, {
557
+ filters: {
558
+ id: {
559
+ $in: entriesToPublishIds
560
+ }
561
+ },
562
+ populate
256
563
  });
257
- return release2;
258
- },
259
- findPage(query) {
260
- return strapi2.entityService.findPage(RELEASE_MODEL_UID, {
261
- ...query,
262
- populate: {
263
- actions: {
264
- // @ts-expect-error Ignore missing properties
265
- count: true
564
+ const entriesToUnpublish = await strapi2.entityService.findMany(uid, {
565
+ filters: {
566
+ id: {
567
+ $in: entriestoUnpublishIds
266
568
  }
267
- }
569
+ },
570
+ populate
268
571
  });
269
- },
270
- async findManyWithContentTypeEntryAttached(contentTypeUid, entryId) {
271
- const releases = await strapi2.db.query(RELEASE_MODEL_UID).findMany({
572
+ if (entriesToPublish.length > 0) {
573
+ await entityManagerService.publishMany(entriesToPublish, uid);
574
+ }
575
+ if (entriesToUnpublish.length > 0) {
576
+ await entityManagerService.unpublishMany(entriesToUnpublish, uid);
577
+ }
578
+ };
579
+ const getFormattedActions = async (releaseId) => {
580
+ const actions = await strapi2.db.query(RELEASE_ACTION_MODEL_UID).findMany({
272
581
  where: {
273
- actions: {
274
- target_type: contentTypeUid,
275
- target_id: entryId
276
- },
277
- releasedAt: {
278
- $null: true
582
+ release: {
583
+ id: releaseId
279
584
  }
280
585
  },
281
586
  populate: {
282
- // Filter the action to get only the content type entry
283
- actions: {
284
- where: {
285
- target_type: contentTypeUid,
286
- target_id: entryId
287
- }
587
+ entry: {
588
+ fields: ["id"]
288
589
  }
289
590
  }
290
591
  });
291
- return releases.map((release2) => {
292
- if (release2.actions?.length) {
293
- const [actionForEntry] = release2.actions;
294
- delete release2.actions;
295
- return {
296
- ...release2,
297
- action: actionForEntry
298
- };
592
+ if (actions.length === 0) {
593
+ throw new errors.ValidationError("No entries to publish");
594
+ }
595
+ const collectionTypeActions = {};
596
+ const singleTypeActions = [];
597
+ for (const action of actions) {
598
+ const contentTypeUid = action.contentType;
599
+ if (strapi2.contentTypes[contentTypeUid].kind === "collectionType") {
600
+ if (!collectionTypeActions[contentTypeUid]) {
601
+ collectionTypeActions[contentTypeUid] = {
602
+ entriesToPublishIds: [],
603
+ entriesToUnpublishIds: []
604
+ };
605
+ }
606
+ if (action.type === "publish") {
607
+ collectionTypeActions[contentTypeUid].entriesToPublishIds.push(action.entry.id);
608
+ } else {
609
+ collectionTypeActions[contentTypeUid].entriesToUnpublishIds.push(action.entry.id);
610
+ }
611
+ } else {
612
+ singleTypeActions.push({
613
+ uid: contentTypeUid,
614
+ action: action.type,
615
+ id: action.entry.id
616
+ });
299
617
  }
618
+ }
619
+ return { collectionTypeActions, singleTypeActions };
620
+ };
621
+ return {
622
+ async create(releaseData, { user }) {
623
+ const releaseWithCreatorFields = await setCreatorFields({ user })(releaseData);
624
+ const {
625
+ validatePendingReleasesLimit,
626
+ validateUniqueNameForPendingRelease,
627
+ validateScheduledAtIsLaterThanNow
628
+ } = getService("release-validation", { strapi: strapi2 });
629
+ await Promise.all([
630
+ validatePendingReleasesLimit(),
631
+ validateUniqueNameForPendingRelease(releaseWithCreatorFields.name),
632
+ validateScheduledAtIsLaterThanNow(releaseWithCreatorFields.scheduledAt)
633
+ ]);
634
+ const release2 = await strapi2.entityService.create(RELEASE_MODEL_UID, {
635
+ data: {
636
+ ...releaseWithCreatorFields,
637
+ status: "empty"
638
+ }
639
+ });
640
+ if (releaseWithCreatorFields.scheduledAt) {
641
+ const schedulingService = getService("scheduling", { strapi: strapi2 });
642
+ await schedulingService.set(release2.id, release2.scheduledAt);
643
+ }
644
+ strapi2.telemetry.send("didCreateContentRelease");
300
645
  return release2;
301
- });
302
- },
303
- async findManyWithoutContentTypeEntryAttached(contentTypeUid, entryId) {
304
- const releasesRelated = await strapi2.db.query(RELEASE_MODEL_UID).findMany({
305
- where: {
306
- releasedAt: {
307
- $null: true
308
- },
309
- actions: {
310
- target_type: contentTypeUid,
311
- target_id: entryId
646
+ },
647
+ async findOne(id, query = {}) {
648
+ const release2 = await strapi2.entityService.findOne(RELEASE_MODEL_UID, id, {
649
+ ...query
650
+ });
651
+ return release2;
652
+ },
653
+ findPage(query) {
654
+ return strapi2.entityService.findPage(RELEASE_MODEL_UID, {
655
+ ...query,
656
+ populate: {
657
+ actions: {
658
+ // @ts-expect-error Ignore missing properties
659
+ count: true
660
+ }
312
661
  }
662
+ });
663
+ },
664
+ async findManyWithContentTypeEntryAttached(contentTypeUid, entriesIds) {
665
+ let entries = entriesIds;
666
+ if (!Array.isArray(entriesIds)) {
667
+ entries = [entriesIds];
313
668
  }
314
- });
315
- const releases = await strapi2.db.query(RELEASE_MODEL_UID).findMany({
316
- where: {
317
- $or: [
318
- {
319
- id: {
320
- $notIn: releasesRelated.map((release2) => release2.id)
669
+ const releases = await strapi2.db.query(RELEASE_MODEL_UID).findMany({
670
+ where: {
671
+ actions: {
672
+ target_type: contentTypeUid,
673
+ target_id: {
674
+ $in: entries
321
675
  }
322
676
  },
323
- {
324
- actions: null
677
+ releasedAt: {
678
+ $null: true
679
+ }
680
+ },
681
+ populate: {
682
+ // Filter the action to get only the content type entry
683
+ actions: {
684
+ where: {
685
+ target_type: contentTypeUid,
686
+ target_id: {
687
+ $in: entries
688
+ }
689
+ },
690
+ populate: {
691
+ entry: {
692
+ select: ["id"]
693
+ }
694
+ }
695
+ }
696
+ }
697
+ });
698
+ return releases.map((release2) => {
699
+ if (release2.actions?.length) {
700
+ const actionsForEntry = release2.actions;
701
+ delete release2.actions;
702
+ return {
703
+ ...release2,
704
+ actions: actionsForEntry
705
+ };
706
+ }
707
+ return release2;
708
+ });
709
+ },
710
+ async findManyWithoutContentTypeEntryAttached(contentTypeUid, entryId) {
711
+ const releasesRelated = await strapi2.db.query(RELEASE_MODEL_UID).findMany({
712
+ where: {
713
+ releasedAt: {
714
+ $null: true
715
+ },
716
+ actions: {
717
+ target_type: contentTypeUid,
718
+ target_id: entryId
325
719
  }
326
- ],
327
- releasedAt: {
328
- $null: true
329
720
  }
721
+ });
722
+ const releases = await strapi2.db.query(RELEASE_MODEL_UID).findMany({
723
+ where: {
724
+ $or: [
725
+ {
726
+ id: {
727
+ $notIn: releasesRelated.map((release2) => release2.id)
728
+ }
729
+ },
730
+ {
731
+ actions: null
732
+ }
733
+ ],
734
+ releasedAt: {
735
+ $null: true
736
+ }
737
+ }
738
+ });
739
+ return releases.map((release2) => {
740
+ if (release2.actions?.length) {
741
+ const [actionForEntry] = release2.actions;
742
+ delete release2.actions;
743
+ return {
744
+ ...release2,
745
+ action: actionForEntry
746
+ };
747
+ }
748
+ return release2;
749
+ });
750
+ },
751
+ async update(id, releaseData, { user }) {
752
+ const releaseWithCreatorFields = await setCreatorFields({ user, isEdition: true })(
753
+ releaseData
754
+ );
755
+ const { validateUniqueNameForPendingRelease, validateScheduledAtIsLaterThanNow } = getService(
756
+ "release-validation",
757
+ { strapi: strapi2 }
758
+ );
759
+ await Promise.all([
760
+ validateUniqueNameForPendingRelease(releaseWithCreatorFields.name, id),
761
+ validateScheduledAtIsLaterThanNow(releaseWithCreatorFields.scheduledAt)
762
+ ]);
763
+ const release2 = await strapi2.entityService.findOne(RELEASE_MODEL_UID, id);
764
+ if (!release2) {
765
+ throw new errors.NotFoundError(`No release found for id ${id}`);
330
766
  }
331
- });
332
- return releases.map((release2) => {
333
- if (release2.actions?.length) {
334
- const [actionForEntry] = release2.actions;
335
- delete release2.actions;
336
- return {
337
- ...release2,
338
- action: actionForEntry
339
- };
767
+ if (release2.releasedAt) {
768
+ throw new errors.ValidationError("Release already published");
340
769
  }
341
- return release2;
342
- });
343
- },
344
- async update(id, releaseData, { user }) {
345
- const releaseWithCreatorFields = await setCreatorFields({ user, isEdition: true })(releaseData);
346
- const release2 = await strapi2.entityService.findOne(RELEASE_MODEL_UID, id);
347
- if (!release2) {
348
- throw new errors.NotFoundError(`No release found for id ${id}`);
349
- }
350
- if (release2.releasedAt) {
351
- throw new errors.ValidationError("Release already published");
352
- }
353
- const updatedRelease = await strapi2.entityService.update(RELEASE_MODEL_UID, id, {
354
- /*
355
- * The type returned from the entity service: Partial<Input<"plugin::content-releases.release">>
356
- * is not compatible with the type we are passing here: UpdateRelease.Request['body']
357
- */
358
- // @ts-expect-error see above
359
- data: releaseWithCreatorFields
360
- });
361
- return updatedRelease;
362
- },
363
- async createAction(releaseId, action) {
364
- const { validateEntryContentType, validateUniqueEntry } = getService("release-validation", {
365
- strapi: strapi2
366
- });
367
- await Promise.all([
368
- validateEntryContentType(action.entry.contentType),
369
- validateUniqueEntry(releaseId, action)
370
- ]);
371
- const release2 = await strapi2.entityService.findOne(RELEASE_MODEL_UID, releaseId);
372
- if (!release2) {
373
- throw new errors.NotFoundError(`No release found for id ${releaseId}`);
374
- }
375
- if (release2.releasedAt) {
376
- throw new errors.ValidationError("Release already published");
377
- }
378
- const { entry, type } = action;
379
- return strapi2.entityService.create(RELEASE_ACTION_MODEL_UID, {
380
- data: {
381
- type,
382
- contentType: entry.contentType,
383
- locale: entry.locale,
384
- entry: {
385
- id: entry.id,
386
- __type: entry.contentType,
387
- __pivot: { field: "entry" }
388
- },
389
- release: releaseId
390
- },
391
- populate: { release: { fields: ["id"] }, entry: { fields: ["id"] } }
392
- });
393
- },
394
- async findActions(releaseId, query) {
395
- const release2 = await strapi2.entityService.findOne(RELEASE_MODEL_UID, releaseId, {
396
- fields: ["id"]
397
- });
398
- if (!release2) {
399
- throw new errors.NotFoundError(`No release found for id ${releaseId}`);
400
- }
401
- return strapi2.entityService.findPage(RELEASE_ACTION_MODEL_UID, {
402
- ...query,
403
- populate: {
404
- entry: {
405
- populate: "*"
406
- }
407
- },
408
- filters: {
409
- release: releaseId
770
+ const updatedRelease = await strapi2.entityService.update(RELEASE_MODEL_UID, id, {
771
+ /*
772
+ * The type returned from the entity service: Partial<Input<"plugin::content-releases.release">>
773
+ * is not compatible with the type we are passing here: UpdateRelease.Request['body']
774
+ */
775
+ // @ts-expect-error see above
776
+ data: releaseWithCreatorFields
777
+ });
778
+ const schedulingService = getService("scheduling", { strapi: strapi2 });
779
+ if (releaseData.scheduledAt) {
780
+ await schedulingService.set(id, releaseData.scheduledAt);
781
+ } else if (release2.scheduledAt) {
782
+ schedulingService.cancel(id);
783
+ }
784
+ this.updateReleaseStatus(id);
785
+ strapi2.telemetry.send("didUpdateContentRelease");
786
+ return updatedRelease;
787
+ },
788
+ async createAction(releaseId, action, { disableUpdateReleaseStatus = false } = {}) {
789
+ const { validateEntryContentType, validateUniqueEntry } = getService("release-validation", {
790
+ strapi: strapi2
791
+ });
792
+ await Promise.all([
793
+ validateEntryContentType(action.entry.contentType),
794
+ validateUniqueEntry(releaseId, action)
795
+ ]);
796
+ const release2 = await strapi2.entityService.findOne(RELEASE_MODEL_UID, releaseId);
797
+ if (!release2) {
798
+ throw new errors.NotFoundError(`No release found for id ${releaseId}`);
799
+ }
800
+ if (release2.releasedAt) {
801
+ throw new errors.ValidationError("Release already published");
802
+ }
803
+ const { entry, type } = action;
804
+ const populatedEntry = await getPopulatedEntry(entry.contentType, entry.id, { strapi: strapi2 });
805
+ const isEntryValid = await getEntryValidStatus(entry.contentType, populatedEntry, { strapi: strapi2 });
806
+ const releaseAction2 = await strapi2.entityService.create(RELEASE_ACTION_MODEL_UID, {
807
+ data: {
808
+ type,
809
+ contentType: entry.contentType,
810
+ locale: entry.locale,
811
+ isEntryValid,
812
+ entry: {
813
+ id: entry.id,
814
+ __type: entry.contentType,
815
+ __pivot: { field: "entry" }
816
+ },
817
+ release: releaseId
818
+ },
819
+ populate: { release: { fields: ["id"] }, entry: { fields: ["id"] } }
820
+ });
821
+ if (!disableUpdateReleaseStatus) {
822
+ this.updateReleaseStatus(releaseId);
410
823
  }
411
- });
412
- },
413
- async countActions(query) {
414
- return strapi2.entityService.count(RELEASE_ACTION_MODEL_UID, query);
415
- },
416
- async groupActions(actions, groupBy) {
417
- const contentTypeUids = actions.reduce((acc, action) => {
418
- if (!acc.includes(action.contentType)) {
419
- acc.push(action.contentType);
824
+ return releaseAction2;
825
+ },
826
+ async findActions(releaseId, query) {
827
+ const release2 = await strapi2.entityService.findOne(RELEASE_MODEL_UID, releaseId, {
828
+ fields: ["id"]
829
+ });
830
+ if (!release2) {
831
+ throw new errors.NotFoundError(`No release found for id ${releaseId}`);
420
832
  }
421
- return acc;
422
- }, []);
423
- const allReleaseContentTypesDictionary = await this.getContentTypesDataForActions(
424
- contentTypeUids
425
- );
426
- const allLocalesDictionary = await this.getLocalesDataForActions();
427
- const formattedData = actions.map((action) => {
428
- const { mainField, displayName } = allReleaseContentTypesDictionary[action.contentType];
429
- return {
430
- ...action,
431
- locale: action.locale ? allLocalesDictionary[action.locale] : null,
432
- contentType: {
433
- displayName,
434
- mainFieldValue: action.entry[mainField],
435
- uid: action.contentType
833
+ return strapi2.entityService.findPage(RELEASE_ACTION_MODEL_UID, {
834
+ ...query,
835
+ populate: {
836
+ entry: {
837
+ populate: "*"
838
+ }
839
+ },
840
+ filters: {
841
+ release: releaseId
436
842
  }
437
- };
438
- });
439
- const groupName = getGroupName(groupBy);
440
- return _.groupBy(groupName)(formattedData);
441
- },
442
- async getLocalesDataForActions() {
443
- if (!strapi2.plugin("i18n")) {
444
- return {};
445
- }
446
- const allLocales = await strapi2.plugin("i18n").service("locales").find() || [];
447
- return allLocales.reduce((acc, locale) => {
448
- acc[locale.code] = { name: locale.name, code: locale.code };
449
- return acc;
450
- }, {});
451
- },
452
- async getContentTypesDataForActions(contentTypesUids) {
453
- const contentManagerContentTypeService = strapi2.plugin("content-manager").service("content-types");
454
- const contentTypesData = {};
455
- for (const contentTypeUid of contentTypesUids) {
456
- const contentTypeConfig = await contentManagerContentTypeService.findConfiguration({
457
- uid: contentTypeUid
458
843
  });
459
- contentTypesData[contentTypeUid] = {
460
- mainField: contentTypeConfig.settings.mainField,
461
- displayName: strapi2.getModel(contentTypeUid).info.displayName
462
- };
463
- }
464
- return contentTypesData;
465
- },
466
- getContentTypeModelsFromActions(actions) {
467
- const contentTypeUids = actions.reduce((acc, action) => {
468
- if (!acc.includes(action.contentType)) {
469
- acc.push(action.contentType);
470
- }
471
- return acc;
472
- }, []);
473
- const contentTypeModelsMap = contentTypeUids.reduce(
474
- (acc, contentTypeUid) => {
475
- acc[contentTypeUid] = strapi2.getModel(contentTypeUid);
844
+ },
845
+ async countActions(query) {
846
+ return strapi2.entityService.count(RELEASE_ACTION_MODEL_UID, query);
847
+ },
848
+ async groupActions(actions, groupBy) {
849
+ const contentTypeUids = actions.reduce((acc, action) => {
850
+ if (!acc.includes(action.contentType)) {
851
+ acc.push(action.contentType);
852
+ }
476
853
  return acc;
477
- },
478
- {}
479
- );
480
- return contentTypeModelsMap;
481
- },
482
- async getAllComponents() {
483
- const contentManagerComponentsService = strapi2.plugin("content-manager").service("components");
484
- const components = await contentManagerComponentsService.findAllComponents();
485
- const componentsMap = components.reduce(
486
- (acc, component) => {
487
- acc[component.uid] = component;
854
+ }, []);
855
+ const allReleaseContentTypesDictionary = await this.getContentTypesDataForActions(
856
+ contentTypeUids
857
+ );
858
+ const allLocalesDictionary = await this.getLocalesDataForActions();
859
+ const formattedData = actions.map((action) => {
860
+ const { mainField, displayName } = allReleaseContentTypesDictionary[action.contentType];
861
+ return {
862
+ ...action,
863
+ locale: action.locale ? allLocalesDictionary[action.locale] : null,
864
+ contentType: {
865
+ displayName,
866
+ mainFieldValue: action.entry[mainField],
867
+ uid: action.contentType
868
+ }
869
+ };
870
+ });
871
+ const groupName = getGroupName(groupBy);
872
+ return _.groupBy(groupName)(formattedData);
873
+ },
874
+ async getLocalesDataForActions() {
875
+ if (!strapi2.plugin("i18n")) {
876
+ return {};
877
+ }
878
+ const allLocales = await strapi2.plugin("i18n").service("locales").find() || [];
879
+ return allLocales.reduce((acc, locale) => {
880
+ acc[locale.code] = { name: locale.name, code: locale.code };
488
881
  return acc;
489
- },
490
- {}
491
- );
492
- return componentsMap;
493
- },
494
- async delete(releaseId) {
495
- const release2 = await strapi2.entityService.findOne(RELEASE_MODEL_UID, releaseId, {
496
- populate: {
497
- actions: {
498
- fields: ["id"]
499
- }
882
+ }, {});
883
+ },
884
+ async getContentTypesDataForActions(contentTypesUids) {
885
+ const contentManagerContentTypeService = strapi2.plugin("content-manager").service("content-types");
886
+ const contentTypesData = {};
887
+ for (const contentTypeUid of contentTypesUids) {
888
+ const contentTypeConfig = await contentManagerContentTypeService.findConfiguration({
889
+ uid: contentTypeUid
890
+ });
891
+ contentTypesData[contentTypeUid] = {
892
+ mainField: contentTypeConfig.settings.mainField,
893
+ displayName: strapi2.getModel(contentTypeUid).info.displayName
894
+ };
500
895
  }
501
- });
502
- if (!release2) {
503
- throw new errors.NotFoundError(`No release found for id ${releaseId}`);
504
- }
505
- if (release2.releasedAt) {
506
- throw new errors.ValidationError("Release already published");
507
- }
508
- await strapi2.db.transaction(async () => {
509
- await strapi2.db.query(RELEASE_ACTION_MODEL_UID).deleteMany({
510
- where: {
511
- id: {
512
- $in: release2.actions.map((action) => action.id)
513
- }
896
+ return contentTypesData;
897
+ },
898
+ getContentTypeModelsFromActions(actions) {
899
+ const contentTypeUids = actions.reduce((acc, action) => {
900
+ if (!acc.includes(action.contentType)) {
901
+ acc.push(action.contentType);
514
902
  }
515
- });
516
- await strapi2.entityService.delete(RELEASE_MODEL_UID, releaseId);
517
- });
518
- return release2;
519
- },
520
- async publish(releaseId) {
521
- const releaseWithPopulatedActionEntries = await strapi2.entityService.findOne(
522
- RELEASE_MODEL_UID,
523
- releaseId,
524
- {
903
+ return acc;
904
+ }, []);
905
+ const contentTypeModelsMap = contentTypeUids.reduce(
906
+ (acc, contentTypeUid) => {
907
+ acc[contentTypeUid] = strapi2.getModel(contentTypeUid);
908
+ return acc;
909
+ },
910
+ {}
911
+ );
912
+ return contentTypeModelsMap;
913
+ },
914
+ async getAllComponents() {
915
+ const contentManagerComponentsService = strapi2.plugin("content-manager").service("components");
916
+ const components = await contentManagerComponentsService.findAllComponents();
917
+ const componentsMap = components.reduce(
918
+ (acc, component) => {
919
+ acc[component.uid] = component;
920
+ return acc;
921
+ },
922
+ {}
923
+ );
924
+ return componentsMap;
925
+ },
926
+ async delete(releaseId) {
927
+ const release2 = await strapi2.entityService.findOne(RELEASE_MODEL_UID, releaseId, {
525
928
  populate: {
526
929
  actions: {
527
- populate: {
528
- entry: {
529
- fields: ["id"]
530
- }
531
- }
930
+ fields: ["id"]
532
931
  }
533
932
  }
933
+ });
934
+ if (!release2) {
935
+ throw new errors.NotFoundError(`No release found for id ${releaseId}`);
534
936
  }
535
- );
536
- if (!releaseWithPopulatedActionEntries) {
537
- throw new errors.NotFoundError(`No release found for id ${releaseId}`);
538
- }
539
- if (releaseWithPopulatedActionEntries.releasedAt) {
540
- throw new errors.ValidationError("Release already published");
541
- }
542
- if (releaseWithPopulatedActionEntries.actions.length === 0) {
543
- throw new errors.ValidationError("No entries to publish");
544
- }
545
- const actions = {};
546
- for (const action of releaseWithPopulatedActionEntries.actions) {
547
- const contentTypeUid = action.contentType;
548
- if (!actions[contentTypeUid]) {
549
- actions[contentTypeUid] = {
550
- entriestoPublishIds: [],
551
- entriesToUnpublishIds: []
552
- };
937
+ if (release2.releasedAt) {
938
+ throw new errors.ValidationError("Release already published");
553
939
  }
554
- if (action.type === "publish") {
555
- actions[contentTypeUid].entriestoPublishIds.push(action.entry.id);
556
- } else {
557
- actions[contentTypeUid].entriesToUnpublishIds.push(action.entry.id);
940
+ await strapi2.db.transaction(async () => {
941
+ await strapi2.db.query(RELEASE_ACTION_MODEL_UID).deleteMany({
942
+ where: {
943
+ id: {
944
+ $in: release2.actions.map((action) => action.id)
945
+ }
946
+ }
947
+ });
948
+ await strapi2.entityService.delete(RELEASE_MODEL_UID, releaseId);
949
+ });
950
+ if (release2.scheduledAt) {
951
+ const schedulingService = getService("scheduling", { strapi: strapi2 });
952
+ await schedulingService.cancel(release2.id);
558
953
  }
559
- }
560
- const entityManagerService = strapi2.plugin("content-manager").service("entity-manager");
561
- const populateBuilderService = strapi2.plugin("content-manager").service("populate-builder");
562
- await strapi2.db.transaction(async () => {
563
- for (const contentTypeUid of Object.keys(actions)) {
564
- const populate = await populateBuilderService(contentTypeUid).populateDeep(Infinity).build();
565
- const { entriestoPublishIds, entriesToUnpublishIds } = actions[contentTypeUid];
566
- const entriesToPublish = await strapi2.entityService.findMany(
567
- contentTypeUid,
568
- {
569
- filters: {
570
- id: {
571
- $in: entriestoPublishIds
572
- }
954
+ strapi2.telemetry.send("didDeleteContentRelease");
955
+ return release2;
956
+ },
957
+ async publish(releaseId) {
958
+ const {
959
+ release: release2,
960
+ error
961
+ } = await strapi2.db.transaction(async ({ trx }) => {
962
+ const lockedRelease = await strapi2.db?.queryBuilder(RELEASE_MODEL_UID).where({ id: releaseId }).select(["id", "name", "releasedAt", "status"]).first().transacting(trx).forUpdate().execute();
963
+ if (!lockedRelease) {
964
+ throw new errors.NotFoundError(`No release found for id ${releaseId}`);
965
+ }
966
+ if (lockedRelease.releasedAt) {
967
+ throw new errors.ValidationError("Release already published");
968
+ }
969
+ if (lockedRelease.status === "failed") {
970
+ throw new errors.ValidationError("Release failed to publish");
971
+ }
972
+ try {
973
+ strapi2.log.info(`[Content Releases] Starting to publish release ${lockedRelease.name}`);
974
+ const { collectionTypeActions, singleTypeActions } = await getFormattedActions(
975
+ releaseId
976
+ );
977
+ await strapi2.db.transaction(async () => {
978
+ for (const { uid, action, id } of singleTypeActions) {
979
+ await publishSingleTypeAction(uid, action, id);
980
+ }
981
+ for (const contentTypeUid of Object.keys(collectionTypeActions)) {
982
+ const uid = contentTypeUid;
983
+ await publishCollectionTypeAction(
984
+ uid,
985
+ collectionTypeActions[uid].entriesToPublishIds,
986
+ collectionTypeActions[uid].entriesToUnpublishIds
987
+ );
988
+ }
989
+ });
990
+ const release22 = await strapi2.db.query(RELEASE_MODEL_UID).update({
991
+ where: {
992
+ id: releaseId
573
993
  },
574
- populate
994
+ data: {
995
+ status: "done",
996
+ releasedAt: /* @__PURE__ */ new Date()
997
+ }
998
+ });
999
+ dispatchWebhook(ALLOWED_WEBHOOK_EVENTS.RELEASES_PUBLISH, {
1000
+ isPublished: true,
1001
+ release: release22
1002
+ });
1003
+ strapi2.telemetry.send("didPublishContentRelease");
1004
+ return { release: release22, error: null };
1005
+ } catch (error2) {
1006
+ dispatchWebhook(ALLOWED_WEBHOOK_EVENTS.RELEASES_PUBLISH, {
1007
+ isPublished: false,
1008
+ error: error2
1009
+ });
1010
+ await strapi2.db?.queryBuilder(RELEASE_MODEL_UID).where({ id: releaseId }).update({
1011
+ status: "failed"
1012
+ }).transacting(trx).execute();
1013
+ return {
1014
+ release: null,
1015
+ error: error2
1016
+ };
1017
+ }
1018
+ });
1019
+ if (error) {
1020
+ throw error;
1021
+ }
1022
+ return release2;
1023
+ },
1024
+ async updateAction(actionId, releaseId, update) {
1025
+ const updatedAction = await strapi2.db.query(RELEASE_ACTION_MODEL_UID).update({
1026
+ where: {
1027
+ id: actionId,
1028
+ release: {
1029
+ id: releaseId,
1030
+ releasedAt: {
1031
+ $null: true
1032
+ }
575
1033
  }
1034
+ },
1035
+ data: update
1036
+ });
1037
+ if (!updatedAction) {
1038
+ throw new errors.NotFoundError(
1039
+ `Action with id ${actionId} not found in release with id ${releaseId} or it is already published`
576
1040
  );
577
- const entriesToUnpublish = await strapi2.entityService.findMany(
578
- contentTypeUid,
579
- {
580
- filters: {
581
- id: {
582
- $in: entriesToUnpublishIds
583
- }
584
- },
585
- populate
1041
+ }
1042
+ return updatedAction;
1043
+ },
1044
+ async deleteAction(actionId, releaseId) {
1045
+ const deletedAction = await strapi2.db.query(RELEASE_ACTION_MODEL_UID).delete({
1046
+ where: {
1047
+ id: actionId,
1048
+ release: {
1049
+ id: releaseId,
1050
+ releasedAt: {
1051
+ $null: true
1052
+ }
586
1053
  }
587
- );
588
- if (entriesToPublish.length > 0) {
589
- await entityManagerService.publishMany(entriesToPublish, contentTypeUid);
590
- }
591
- if (entriesToUnpublish.length > 0) {
592
- await entityManagerService.unpublishMany(entriesToUnpublish, contentTypeUid);
593
1054
  }
1055
+ });
1056
+ if (!deletedAction) {
1057
+ throw new errors.NotFoundError(
1058
+ `Action with id ${actionId} not found in release with id ${releaseId} or it is already published`
1059
+ );
594
1060
  }
595
- });
596
- const release2 = await strapi2.entityService.update(RELEASE_MODEL_UID, releaseId, {
597
- data: {
598
- /*
599
- * The type returned from the entity service: Partial<Input<"plugin::content-releases.release">> looks like it's wrong
600
- */
601
- // @ts-expect-error see above
602
- releasedAt: /* @__PURE__ */ new Date()
603
- }
604
- });
605
- return release2;
606
- },
607
- async updateAction(actionId, releaseId, update) {
608
- const updatedAction = await strapi2.db.query(RELEASE_ACTION_MODEL_UID).update({
609
- where: {
610
- id: actionId,
611
- release: {
612
- id: releaseId,
613
- releasedAt: {
614
- $null: true
1061
+ this.updateReleaseStatus(releaseId);
1062
+ return deletedAction;
1063
+ },
1064
+ async updateReleaseStatus(releaseId) {
1065
+ const [totalActions, invalidActions] = await Promise.all([
1066
+ this.countActions({
1067
+ filters: {
1068
+ release: releaseId
615
1069
  }
616
- }
617
- },
618
- data: update
619
- });
620
- if (!updatedAction) {
621
- throw new errors.NotFoundError(
622
- `Action with id ${actionId} not found in release with id ${releaseId} or it is already published`
623
- );
624
- }
625
- return updatedAction;
626
- },
627
- async deleteAction(actionId, releaseId) {
628
- const deletedAction = await strapi2.db.query(RELEASE_ACTION_MODEL_UID).delete({
629
- where: {
630
- id: actionId,
631
- release: {
632
- id: releaseId,
633
- releasedAt: {
634
- $null: true
1070
+ }),
1071
+ this.countActions({
1072
+ filters: {
1073
+ release: releaseId,
1074
+ isEntryValid: false
635
1075
  }
1076
+ })
1077
+ ]);
1078
+ if (totalActions > 0) {
1079
+ if (invalidActions > 0) {
1080
+ return strapi2.db.query(RELEASE_MODEL_UID).update({
1081
+ where: {
1082
+ id: releaseId
1083
+ },
1084
+ data: {
1085
+ status: "blocked"
1086
+ }
1087
+ });
636
1088
  }
1089
+ return strapi2.db.query(RELEASE_MODEL_UID).update({
1090
+ where: {
1091
+ id: releaseId
1092
+ },
1093
+ data: {
1094
+ status: "ready"
1095
+ }
1096
+ });
637
1097
  }
638
- });
639
- if (!deletedAction) {
640
- throw new errors.NotFoundError(
641
- `Action with id ${actionId} not found in release with id ${releaseId} or it is already published`
642
- );
1098
+ return strapi2.db.query(RELEASE_MODEL_UID).update({
1099
+ where: {
1100
+ id: releaseId
1101
+ },
1102
+ data: {
1103
+ status: "empty"
1104
+ }
1105
+ });
643
1106
  }
644
- return deletedAction;
1107
+ };
1108
+ };
1109
+ class AlreadyOnReleaseError extends errors.ApplicationError {
1110
+ constructor(message) {
1111
+ super(message);
1112
+ this.name = "AlreadyOnReleaseError";
645
1113
  }
646
- });
1114
+ }
647
1115
  const createReleaseValidationService = ({ strapi: strapi2 }) => ({
648
1116
  async validateUniqueEntry(releaseId, releaseActionArgs) {
649
1117
  const release2 = await strapi2.entityService.findOne(RELEASE_MODEL_UID, releaseId, {
@@ -656,7 +1124,7 @@ const createReleaseValidationService = ({ strapi: strapi2 }) => ({
656
1124
  (action) => Number(action.entry.id) === Number(releaseActionArgs.entry.id) && action.contentType === releaseActionArgs.entry.contentType
657
1125
  );
658
1126
  if (isEntryInRelease) {
659
- throw new errors.ValidationError(
1127
+ throw new AlreadyOnReleaseError(
660
1128
  `Entry with id ${releaseActionArgs.entry.id} and contentType ${releaseActionArgs.entry.contentType} already exists in release with id ${releaseId}`
661
1129
  );
662
1130
  }
@@ -688,27 +1156,103 @@ const createReleaseValidationService = ({ strapi: strapi2 }) => ({
688
1156
  throw new errors.ValidationError("You have reached the maximum number of pending releases");
689
1157
  }
690
1158
  },
691
- async validateUniqueNameForPendingRelease(name) {
1159
+ async validateUniqueNameForPendingRelease(name, id) {
692
1160
  const pendingReleases = await strapi2.entityService.findMany(RELEASE_MODEL_UID, {
693
1161
  filters: {
694
1162
  releasedAt: {
695
1163
  $null: true
696
1164
  },
697
- name
1165
+ name,
1166
+ ...id && { id: { $ne: id } }
698
1167
  }
699
1168
  });
700
1169
  const isNameUnique = pendingReleases.length === 0;
701
1170
  if (!isNameUnique) {
702
1171
  throw new errors.ValidationError(`Release with name ${name} already exists`);
703
1172
  }
1173
+ },
1174
+ async validateScheduledAtIsLaterThanNow(scheduledAt) {
1175
+ if (scheduledAt && new Date(scheduledAt) <= /* @__PURE__ */ new Date()) {
1176
+ throw new errors.ValidationError("Scheduled at must be later than now");
1177
+ }
704
1178
  }
705
1179
  });
1180
+ const createSchedulingService = ({ strapi: strapi2 }) => {
1181
+ const scheduledJobs = /* @__PURE__ */ new Map();
1182
+ return {
1183
+ async set(releaseId, scheduleDate) {
1184
+ const release2 = await strapi2.db.query(RELEASE_MODEL_UID).findOne({ where: { id: releaseId, releasedAt: null } });
1185
+ if (!release2) {
1186
+ throw new errors.NotFoundError(`No release found for id ${releaseId}`);
1187
+ }
1188
+ const job = scheduleJob(scheduleDate, async () => {
1189
+ try {
1190
+ await getService("release").publish(releaseId);
1191
+ } catch (error) {
1192
+ }
1193
+ this.cancel(releaseId);
1194
+ });
1195
+ if (scheduledJobs.has(releaseId)) {
1196
+ this.cancel(releaseId);
1197
+ }
1198
+ scheduledJobs.set(releaseId, job);
1199
+ return scheduledJobs;
1200
+ },
1201
+ cancel(releaseId) {
1202
+ if (scheduledJobs.has(releaseId)) {
1203
+ scheduledJobs.get(releaseId).cancel();
1204
+ scheduledJobs.delete(releaseId);
1205
+ }
1206
+ return scheduledJobs;
1207
+ },
1208
+ getAll() {
1209
+ return scheduledJobs;
1210
+ },
1211
+ /**
1212
+ * On bootstrap, we can use this function to make sure to sync the scheduled jobs from the database that are not yet released
1213
+ * This is useful in case the server was restarted and the scheduled jobs were lost
1214
+ * This also could be used to sync different Strapi instances in case of a cluster
1215
+ */
1216
+ async syncFromDatabase() {
1217
+ const releases = await strapi2.db.query(RELEASE_MODEL_UID).findMany({
1218
+ where: {
1219
+ scheduledAt: {
1220
+ $gte: /* @__PURE__ */ new Date()
1221
+ },
1222
+ releasedAt: null
1223
+ }
1224
+ });
1225
+ for (const release2 of releases) {
1226
+ this.set(release2.id, release2.scheduledAt);
1227
+ }
1228
+ return scheduledJobs;
1229
+ }
1230
+ };
1231
+ };
706
1232
  const services = {
707
1233
  release: createReleaseService,
708
- "release-validation": createReleaseValidationService
1234
+ "release-validation": createReleaseValidationService,
1235
+ scheduling: createSchedulingService
709
1236
  };
710
1237
  const RELEASE_SCHEMA = yup.object().shape({
711
- name: yup.string().trim().required()
1238
+ name: yup.string().trim().required(),
1239
+ scheduledAt: yup.string().nullable(),
1240
+ isScheduled: yup.boolean().optional(),
1241
+ time: yup.string().when("isScheduled", {
1242
+ is: true,
1243
+ then: yup.string().trim().required(),
1244
+ otherwise: yup.string().nullable()
1245
+ }),
1246
+ timezone: yup.string().when("isScheduled", {
1247
+ is: true,
1248
+ then: yup.string().required().nullable(),
1249
+ otherwise: yup.string().nullable()
1250
+ }),
1251
+ date: yup.string().when("isScheduled", {
1252
+ is: true,
1253
+ then: yup.string().required().nullable(),
1254
+ otherwise: yup.string().nullable()
1255
+ })
712
1256
  }).required().noUnknown();
713
1257
  const validateRelease = validateYupSchema(RELEASE_SCHEMA);
714
1258
  const releaseController = {
@@ -741,26 +1285,30 @@ const releaseController = {
741
1285
  }
742
1286
  };
743
1287
  });
744
- ctx.body = { data, meta: { pagination } };
1288
+ const pendingReleasesCount = await strapi.query(RELEASE_MODEL_UID).count({
1289
+ where: {
1290
+ releasedAt: null
1291
+ }
1292
+ });
1293
+ ctx.body = { data, meta: { pagination, pendingReleasesCount } };
745
1294
  }
746
1295
  },
747
1296
  async findOne(ctx) {
748
1297
  const id = ctx.params.id;
749
1298
  const releaseService = getService("release", { strapi });
750
1299
  const release2 = await releaseService.findOne(id, { populate: ["createdBy"] });
751
- const permissionsManager = strapi.admin.services.permission.createPermissionsManager({
752
- ability: ctx.state.userAbility,
753
- model: RELEASE_MODEL_UID
754
- });
755
- const sanitizedRelease = await permissionsManager.sanitizeOutput(release2);
1300
+ if (!release2) {
1301
+ throw new errors.NotFoundError(`Release not found for id: ${id}`);
1302
+ }
756
1303
  const count = await releaseService.countActions({
757
1304
  filters: {
758
1305
  release: id
759
1306
  }
760
1307
  });
761
- if (!release2) {
762
- throw new errors.NotFoundError(`Release not found for id: ${id}`);
763
- }
1308
+ const sanitizedRelease = {
1309
+ ...release2,
1310
+ createdBy: release2.createdBy ? strapi.admin.services.user.sanitizeUser(release2.createdBy) : null
1311
+ };
764
1312
  const data = {
765
1313
  ...sanitizedRelease,
766
1314
  actions: {
@@ -771,6 +1319,33 @@ const releaseController = {
771
1319
  };
772
1320
  ctx.body = { data };
773
1321
  },
1322
+ async mapEntriesToReleases(ctx) {
1323
+ const { contentTypeUid, entriesIds } = ctx.query;
1324
+ if (!contentTypeUid || !entriesIds) {
1325
+ throw new errors.ValidationError("Missing required query parameters");
1326
+ }
1327
+ const releaseService = getService("release", { strapi });
1328
+ const releasesWithActions = await releaseService.findManyWithContentTypeEntryAttached(
1329
+ contentTypeUid,
1330
+ entriesIds
1331
+ );
1332
+ const mappedEntriesInReleases = releasesWithActions.reduce(
1333
+ (acc, release2) => {
1334
+ release2.actions.forEach((action) => {
1335
+ if (!acc[action.entry.id]) {
1336
+ acc[action.entry.id] = [{ id: release2.id, name: release2.name }];
1337
+ } else {
1338
+ acc[action.entry.id].push({ id: release2.id, name: release2.name });
1339
+ }
1340
+ });
1341
+ return acc;
1342
+ },
1343
+ {}
1344
+ );
1345
+ ctx.body = {
1346
+ data: mappedEntriesInReleases
1347
+ };
1348
+ },
774
1349
  async create(ctx) {
775
1350
  const user = ctx.state.user;
776
1351
  const releaseArgs = ctx.request.body;
@@ -813,8 +1388,27 @@ const releaseController = {
813
1388
  const id = ctx.params.id;
814
1389
  const releaseService = getService("release", { strapi });
815
1390
  const release2 = await releaseService.publish(id, { user });
1391
+ const [countPublishActions, countUnpublishActions] = await Promise.all([
1392
+ releaseService.countActions({
1393
+ filters: {
1394
+ release: id,
1395
+ type: "publish"
1396
+ }
1397
+ }),
1398
+ releaseService.countActions({
1399
+ filters: {
1400
+ release: id,
1401
+ type: "unpublish"
1402
+ }
1403
+ })
1404
+ ]);
816
1405
  ctx.body = {
817
- data: release2
1406
+ data: release2,
1407
+ meta: {
1408
+ totalEntries: countPublishActions + countUnpublishActions,
1409
+ totalPublishedEntries: countPublishActions,
1410
+ totalUnpublishedEntries: countUnpublishActions
1411
+ }
818
1412
  };
819
1413
  }
820
1414
  };
@@ -841,6 +1435,43 @@ const releaseActionController = {
841
1435
  data: releaseAction2
842
1436
  };
843
1437
  },
1438
+ async createMany(ctx) {
1439
+ const releaseId = ctx.params.releaseId;
1440
+ const releaseActionsArgs = ctx.request.body;
1441
+ await Promise.all(
1442
+ releaseActionsArgs.map((releaseActionArgs) => validateReleaseAction(releaseActionArgs))
1443
+ );
1444
+ const releaseService = getService("release", { strapi });
1445
+ const releaseActions = await strapi.db.transaction(async () => {
1446
+ const releaseActions2 = await Promise.all(
1447
+ releaseActionsArgs.map(async (releaseActionArgs) => {
1448
+ try {
1449
+ const action = await releaseService.createAction(releaseId, releaseActionArgs, {
1450
+ disableUpdateReleaseStatus: true
1451
+ });
1452
+ return action;
1453
+ } catch (error) {
1454
+ if (error instanceof AlreadyOnReleaseError) {
1455
+ return null;
1456
+ }
1457
+ throw error;
1458
+ }
1459
+ })
1460
+ );
1461
+ return releaseActions2;
1462
+ });
1463
+ const newReleaseActions = releaseActions.filter((action) => action !== null);
1464
+ if (newReleaseActions.length > 0) {
1465
+ releaseService.updateReleaseStatus(releaseId);
1466
+ }
1467
+ ctx.body = {
1468
+ data: newReleaseActions,
1469
+ meta: {
1470
+ entriesAlreadyInRelease: releaseActions.length - newReleaseActions.length,
1471
+ totalEntries: releaseActions.length
1472
+ }
1473
+ };
1474
+ },
844
1475
  async findMany(ctx) {
845
1476
  const releaseId = ctx.params.releaseId;
846
1477
  const permissionsManager = strapi.admin.services.permission.createPermissionsManager({
@@ -909,6 +1540,22 @@ const controllers = { release: releaseController, "release-action": releaseActio
909
1540
  const release = {
910
1541
  type: "admin",
911
1542
  routes: [
1543
+ {
1544
+ method: "GET",
1545
+ path: "/mapEntriesToReleases",
1546
+ handler: "release.mapEntriesToReleases",
1547
+ config: {
1548
+ policies: [
1549
+ "admin::isAuthenticatedAdmin",
1550
+ {
1551
+ name: "admin::hasPermissions",
1552
+ config: {
1553
+ actions: ["plugin::content-releases.read"]
1554
+ }
1555
+ }
1556
+ ]
1557
+ }
1558
+ },
912
1559
  {
913
1560
  method: "POST",
914
1561
  path: "/",
@@ -1026,6 +1673,22 @@ const releaseAction = {
1026
1673
  ]
1027
1674
  }
1028
1675
  },
1676
+ {
1677
+ method: "POST",
1678
+ path: "/:releaseId/actions/bulk",
1679
+ handler: "release-action.createMany",
1680
+ config: {
1681
+ policies: [
1682
+ "admin::isAuthenticatedAdmin",
1683
+ {
1684
+ name: "admin::hasPermissions",
1685
+ config: {
1686
+ actions: ["plugin::content-releases.create-action"]
1687
+ }
1688
+ }
1689
+ ]
1690
+ }
1691
+ },
1029
1692
  {
1030
1693
  method: "GET",
1031
1694
  path: "/:releaseId/actions",
@@ -1086,6 +1749,7 @@ const getPlugin = () => {
1086
1749
  return {
1087
1750
  register,
1088
1751
  bootstrap,
1752
+ destroy,
1089
1753
  contentTypes,
1090
1754
  services,
1091
1755
  controllers,
@@ -1093,6 +1757,9 @@ const getPlugin = () => {
1093
1757
  };
1094
1758
  }
1095
1759
  return {
1760
+ // Always return register, it handles its own feature check
1761
+ register,
1762
+ // Always return contentTypes to avoid losing data when the feature is disabled
1096
1763
  contentTypes
1097
1764
  };
1098
1765
  };