@strapi/review-workflows 5.0.0-rc.9 → 5.0.0

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 (41) hide show
  1. package/dist/_chunks/{Layout-D5aa9iUm.mjs → Layout-BJOxxAeM.mjs} +2 -2
  2. package/dist/_chunks/{Layout-D5aa9iUm.mjs.map → Layout-BJOxxAeM.mjs.map} +1 -1
  3. package/dist/_chunks/{Layout-AREWDuuq.js → Layout-DnEAvmeU.js} +2 -2
  4. package/dist/_chunks/{Layout-AREWDuuq.js.map → Layout-DnEAvmeU.js.map} +1 -1
  5. package/dist/_chunks/{_id-DDNHKV_W.mjs → _id-6LK95-rZ.mjs} +6 -6
  6. package/dist/_chunks/_id-6LK95-rZ.mjs.map +1 -0
  7. package/dist/_chunks/{_id-C7pCAzXV.js → _id-DSDzUpwX.js} +6 -6
  8. package/dist/_chunks/_id-DSDzUpwX.js.map +1 -0
  9. package/dist/_chunks/{index-Bv3cQ3c-.js → index-6FZL88pd.js} +8 -28
  10. package/dist/_chunks/index-6FZL88pd.js.map +1 -0
  11. package/dist/_chunks/{index-CIBLMG85.js → index-DZSLya4b.js} +25 -19
  12. package/dist/_chunks/index-DZSLya4b.js.map +1 -0
  13. package/dist/_chunks/{index-CeaoNBIP.mjs → index-Df1alkCk.mjs} +10 -30
  14. package/dist/_chunks/index-Df1alkCk.mjs.map +1 -0
  15. package/dist/_chunks/{index-Cx5QECZI.mjs → index-lJqpw8bs.mjs} +25 -19
  16. package/dist/_chunks/index-lJqpw8bs.mjs.map +1 -0
  17. package/dist/_chunks/{router-gRPIa2_c.js → router-CZqe-02r.js} +3 -3
  18. package/dist/_chunks/{router-gRPIa2_c.js.map → router-CZqe-02r.js.map} +1 -1
  19. package/dist/_chunks/{router-BEoNwQZ1.mjs → router-DeSH-NeW.mjs} +3 -3
  20. package/dist/_chunks/{router-BEoNwQZ1.mjs.map → router-DeSH-NeW.mjs.map} +1 -1
  21. package/dist/admin/index.js +1 -1
  22. package/dist/admin/index.mjs +1 -1
  23. package/dist/server/index.js +35 -20
  24. package/dist/server/index.js.map +1 -1
  25. package/dist/server/index.mjs +35 -20
  26. package/dist/server/index.mjs.map +1 -1
  27. package/dist/server/src/controllers/assignees.d.ts.map +1 -1
  28. package/dist/server/src/controllers/stages.d.ts.map +1 -1
  29. package/dist/server/src/index.d.ts +1 -1
  30. package/dist/server/src/services/document-service-middleware.d.ts.map +1 -1
  31. package/dist/server/src/services/index.d.ts +1 -1
  32. package/dist/server/src/services/stages.d.ts +2 -7
  33. package/dist/server/src/services/stages.d.ts.map +1 -1
  34. package/package.json +8 -8
  35. package/dist/_chunks/_id-C7pCAzXV.js.map +0 -1
  36. package/dist/_chunks/_id-DDNHKV_W.mjs.map +0 -1
  37. package/dist/_chunks/index-Bv3cQ3c-.js.map +0 -1
  38. package/dist/_chunks/index-CIBLMG85.js.map +0 -1
  39. package/dist/_chunks/index-CeaoNBIP.mjs.map +0 -1
  40. package/dist/_chunks/index-Cx5QECZI.mjs.map +0 -1
  41. package/strapi-server.js +0 -3
@@ -6901,7 +6901,7 @@ const reviewWorkflows = {
6901
6901
  {
6902
6902
  name: "admin::hasPermissions",
6903
6903
  config: {
6904
- actions: ["admin::users.read", "admin::review-workflows.read"]
6904
+ actions: ["admin::users.read"]
6905
6905
  }
6906
6906
  }
6907
6907
  ]
@@ -7322,23 +7322,17 @@ const stages$1 = ({ strapi: strapi2 }) => {
7322
7322
  },
7323
7323
  /**
7324
7324
  * Update the stage of an entity
7325
- *
7326
- * @param {object} entityInfo
7327
- * @param {number} entityInfo.id - Entity id
7328
- * @param {string} entityInfo.modelUID - the content-type of the entity
7329
- * @param {number} stageId - The id of the stage to assign to the entity
7330
7325
  */
7331
- async updateEntity(entityInfo, stageId) {
7326
+ async updateEntity(documentId, locale, model, stageId) {
7332
7327
  const stage = await this.findById(stageId);
7333
7328
  await workflowValidator.validateWorkflowCount();
7334
7329
  if (!stage) {
7335
7330
  throw new ApplicationError$2(`Selected stage does not exist`);
7336
7331
  }
7337
- const entity = await strapi2.db.query(entityInfo.modelUID).update({
7338
- where: {
7339
- id: entityInfo.id
7340
- },
7341
- data: { [ENTITY_STAGE_ATTRIBUTE]: stageId },
7332
+ const entity = await strapi2.documents(model).update({
7333
+ documentId,
7334
+ locale,
7335
+ data: { [ENTITY_STAGE_ATTRIBUTE]: stage },
7342
7336
  populate: [ENTITY_STAGE_ATTRIBUTE]
7343
7337
  });
7344
7338
  metrics.sendDidChangeEntryStage();
@@ -7811,6 +7805,7 @@ const handleStageOnUpdate = async (ctx, next) => {
7811
7805
  strapi.eventHub.emit(WORKFLOW_UPDATE_STAGE, {
7812
7806
  model: model.modelName,
7813
7807
  uid: model.uid,
7808
+ // TODO v6: Rename to "entry", which is what is used for regular CRUD updates
7814
7809
  entity: {
7815
7810
  // @ts-expect-error
7816
7811
  id: result?.id,
@@ -8096,7 +8091,12 @@ const stages = {
8096
8091
  );
8097
8092
  const workflow2 = await workflowService.assertContentTypeBelongsToWorkflow(modelUID);
8098
8093
  workflowService.assertStageBelongsToWorkflow(stageId, workflow2);
8099
- const updatedEntity = await stagesService.updateEntity({ id: entity.id, modelUID }, stageId);
8094
+ const updatedEntity = await stagesService.updateEntity(
8095
+ entity.documentId,
8096
+ entity.locale,
8097
+ modelUID,
8098
+ stageId
8099
+ );
8100
8100
  ctx.body = { data: await sanitizeOutput(updatedEntity) };
8101
8101
  },
8102
8102
  /**
@@ -8116,10 +8116,9 @@ const stages = {
8116
8116
  if (strapi.plugin("content-manager").service("permission-checker").create({ userAbility: ctx.state.userAbility, model: modelUID }).cannot.read()) {
8117
8117
  return ctx.forbidden();
8118
8118
  }
8119
- const locale = await validateLocale(query?.locale);
8119
+ const locale = await validateLocale(query?.locale) ?? void 0;
8120
8120
  const entity = await strapi.documents(modelUID).findOne({
8121
8121
  documentId,
8122
- // @ts-expect-error - locale should be also null in the doc service types
8123
8122
  locale,
8124
8123
  populate: [ENTITY_STAGE_ATTRIBUTE]
8125
8124
  });
@@ -8128,12 +8127,13 @@ const stages = {
8128
8127
  }
8129
8128
  const entityStageId = entity[ENTITY_STAGE_ATTRIBUTE]?.id;
8130
8129
  const canTransition = stagePermissions2.can(STAGE_TRANSITION_UID, entityStageId);
8131
- const [workflowCount, { stages: workflowStages }] = await Promise.all([
8130
+ const [workflowCount, workflowResult] = await Promise.all([
8132
8131
  workflowService.count(),
8133
8132
  workflowService.getAssignedWorkflow(modelUID, {
8134
8133
  populate: "stages"
8135
8134
  })
8136
8135
  ]);
8136
+ const workflowStages = workflowResult ? workflowResult.stages : [];
8137
8137
  const meta = {
8138
8138
  stageCount: workflowStages.length,
8139
8139
  workflowCount
@@ -8169,22 +8169,37 @@ const assignees = {
8169
8169
  async updateEntity(ctx) {
8170
8170
  const assigneeService = getService("assignees");
8171
8171
  const workflowService = getService("workflows");
8172
+ const stagePermissions2 = getService("stage-permissions");
8172
8173
  const { model_uid: model, id: documentId } = ctx.params;
8173
- const { locale } = ctx.request.query || {};
8174
+ const locale = await validateLocale(ctx.request.query?.locale) ?? void 0;
8174
8175
  const { sanitizeOutput } = strapi.plugin("content-manager").service("permission-checker").create({ userAbility: ctx.state.userAbility, model });
8176
+ const entity = await strapi.documents(model).findOne({
8177
+ documentId,
8178
+ locale,
8179
+ populate: [ENTITY_STAGE_ATTRIBUTE]
8180
+ });
8181
+ if (!entity) {
8182
+ ctx.throw(404, "Entity not found");
8183
+ }
8184
+ const canTransitionStage = stagePermissions2.can(
8185
+ STAGE_TRANSITION_UID,
8186
+ entity[ENTITY_STAGE_ATTRIBUTE]?.id
8187
+ );
8188
+ if (!canTransitionStage) {
8189
+ ctx.throw(403, "Stage transition permission is required");
8190
+ }
8175
8191
  const { id: assigneeId } = await validateUpdateAssigneeOnEntity(
8176
8192
  ctx.request?.body?.data,
8177
8193
  "You should pass a valid id to the body of the put request."
8178
8194
  );
8179
- await validateLocale(locale);
8180
8195
  await workflowService.assertContentTypeBelongsToWorkflow(model);
8181
- const entity = await assigneeService.updateEntityAssignee(
8196
+ const updatedEntity = await assigneeService.updateEntityAssignee(
8182
8197
  documentId,
8183
8198
  locale || null,
8184
8199
  model,
8185
8200
  assigneeId
8186
8201
  );
8187
- ctx.body = { data: await sanitizeOutput(entity) };
8202
+ ctx.body = { data: await sanitizeOutput(updatedEntity) };
8188
8203
  }
8189
8204
  };
8190
8205
  const controllers = {