@strapi/i18n 5.29.0 → 5.30.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 (105) hide show
  1. package/dist/admin/components/CMHeaderActions.js +85 -11
  2. package/dist/admin/components/CMHeaderActions.js.map +1 -1
  3. package/dist/admin/components/CMHeaderActions.mjs +88 -14
  4. package/dist/admin/components/CMHeaderActions.mjs.map +1 -1
  5. package/dist/admin/hooks/useAILocalizationJobsPolling.js +110 -0
  6. package/dist/admin/hooks/useAILocalizationJobsPolling.js.map +1 -0
  7. package/dist/admin/hooks/useAILocalizationJobsPolling.mjs +89 -0
  8. package/dist/admin/hooks/useAILocalizationJobsPolling.mjs.map +1 -0
  9. package/dist/admin/hooks/useI18n.js +4 -4
  10. package/dist/admin/hooks/useI18n.js.map +1 -1
  11. package/dist/admin/hooks/useI18n.mjs +4 -4
  12. package/dist/admin/hooks/useI18n.mjs.map +1 -1
  13. package/dist/admin/pages/SettingsPage.js +1 -1
  14. package/dist/admin/pages/SettingsPage.js.map +1 -1
  15. package/dist/admin/pages/SettingsPage.mjs +1 -1
  16. package/dist/admin/pages/SettingsPage.mjs.map +1 -1
  17. package/dist/admin/services/aiLocalizationJobs.js +26 -0
  18. package/dist/admin/services/aiLocalizationJobs.js.map +1 -0
  19. package/dist/admin/services/aiLocalizationJobs.mjs +24 -0
  20. package/dist/admin/services/aiLocalizationJobs.mjs.map +1 -0
  21. package/dist/admin/services/api.js +2 -1
  22. package/dist/admin/services/api.js.map +1 -1
  23. package/dist/admin/services/api.mjs +2 -1
  24. package/dist/admin/services/api.mjs.map +1 -1
  25. package/dist/admin/src/components/CMHeaderActions.d.ts +12 -5
  26. package/dist/admin/src/hooks/useAILocalizationJobsPolling.d.ts +9 -0
  27. package/dist/admin/src/services/aiLocalizationJobs.d.ts +6 -0
  28. package/dist/admin/src/services/api.d.ts +1 -1
  29. package/dist/admin/src/services/locales.d.ts +1 -1
  30. package/dist/admin/src/services/relations.d.ts +1 -1
  31. package/dist/admin/src/services/settings.d.ts +2 -2
  32. package/dist/admin/translations/en.json.js +4 -1
  33. package/dist/admin/translations/en.json.js.map +1 -1
  34. package/dist/admin/translations/en.json.mjs +4 -1
  35. package/dist/admin/translations/en.json.mjs.map +1 -1
  36. package/dist/server/bootstrap.js +2 -0
  37. package/dist/server/bootstrap.js.map +1 -1
  38. package/dist/server/bootstrap.mjs +2 -0
  39. package/dist/server/bootstrap.mjs.map +1 -1
  40. package/dist/server/controllers/ai-localization-jobs.js +47 -0
  41. package/dist/server/controllers/ai-localization-jobs.js.map +1 -0
  42. package/dist/server/controllers/ai-localization-jobs.mjs +45 -0
  43. package/dist/server/controllers/ai-localization-jobs.mjs.map +1 -0
  44. package/dist/server/controllers/index.js +3 -1
  45. package/dist/server/controllers/index.js.map +1 -1
  46. package/dist/server/controllers/index.mjs +3 -1
  47. package/dist/server/controllers/index.mjs.map +1 -1
  48. package/dist/server/models/ai-localization-job.js +60 -0
  49. package/dist/server/models/ai-localization-job.js.map +1 -0
  50. package/dist/server/models/ai-localization-job.mjs +57 -0
  51. package/dist/server/models/ai-localization-job.mjs.map +1 -0
  52. package/dist/server/register.js +3 -1
  53. package/dist/server/register.js.map +1 -1
  54. package/dist/server/register.mjs +3 -1
  55. package/dist/server/register.mjs.map +1 -1
  56. package/dist/server/routes/admin.js +20 -0
  57. package/dist/server/routes/admin.js.map +1 -1
  58. package/dist/server/routes/admin.mjs +20 -0
  59. package/dist/server/routes/admin.mjs.map +1 -1
  60. package/dist/server/services/ai-localization-jobs.js +64 -0
  61. package/dist/server/services/ai-localization-jobs.js.map +1 -0
  62. package/dist/server/services/ai-localization-jobs.mjs +62 -0
  63. package/dist/server/services/ai-localization-jobs.mjs.map +1 -0
  64. package/dist/server/services/ai-localizations.js +253 -5
  65. package/dist/server/services/ai-localizations.js.map +1 -1
  66. package/dist/server/services/ai-localizations.mjs +253 -5
  67. package/dist/server/services/ai-localizations.mjs.map +1 -1
  68. package/dist/server/services/index.js +3 -1
  69. package/dist/server/services/index.js.map +1 -1
  70. package/dist/server/services/index.mjs +3 -1
  71. package/dist/server/services/index.mjs.map +1 -1
  72. package/dist/server/services/metrics.js +12 -1
  73. package/dist/server/services/metrics.js.map +1 -1
  74. package/dist/server/services/metrics.mjs +12 -1
  75. package/dist/server/services/metrics.mjs.map +1 -1
  76. package/dist/server/src/bootstrap.d.ts.map +1 -1
  77. package/dist/server/src/controllers/ai-localization-jobs.d.ts +17 -0
  78. package/dist/server/src/controllers/ai-localization-jobs.d.ts.map +1 -0
  79. package/dist/server/src/controllers/index.d.ts +6 -0
  80. package/dist/server/src/controllers/index.d.ts.map +1 -1
  81. package/dist/server/src/index.d.ts +27 -2
  82. package/dist/server/src/index.d.ts.map +1 -1
  83. package/dist/server/src/models/ai-localization-job.d.ts +5 -0
  84. package/dist/server/src/models/ai-localization-job.d.ts.map +1 -0
  85. package/dist/server/src/models/index.d.ts +5 -0
  86. package/dist/server/src/models/index.d.ts.map +1 -0
  87. package/dist/server/src/register.d.ts +1 -1
  88. package/dist/server/src/register.d.ts.map +1 -1
  89. package/dist/server/src/routes/admin.d.ts.map +1 -1
  90. package/dist/server/src/services/ai-localization-jobs.d.ts +26 -0
  91. package/dist/server/src/services/ai-localization-jobs.d.ts.map +1 -0
  92. package/dist/server/src/services/ai-localizations.d.ts +11 -1
  93. package/dist/server/src/services/ai-localizations.d.ts.map +1 -1
  94. package/dist/server/src/services/index.d.ts +20 -1
  95. package/dist/server/src/services/index.d.ts.map +1 -1
  96. package/dist/server/src/services/metrics.d.ts +1 -0
  97. package/dist/server/src/services/metrics.d.ts.map +1 -1
  98. package/dist/server/src/utils/index.d.ts +4 -0
  99. package/dist/server/src/utils/index.d.ts.map +1 -1
  100. package/dist/server/utils/index.js.map +1 -1
  101. package/dist/server/utils/index.mjs.map +1 -1
  102. package/dist/shared/contracts/ai-localization-jobs.d.ts +27 -0
  103. package/dist/shared/contracts/ai-localization-jobs.d.ts.map +1 -0
  104. package/dist/shared/contracts/shared.d.ts.map +1 -0
  105. package/package.json +7 -6
@@ -0,0 +1,64 @@
1
+ 'use strict';
2
+
3
+ var aiLocalizationJob = require('../models/ai-localization-job.js');
4
+
5
+ const createAILocalizationJobsService = ({ strapi })=>({
6
+ /**
7
+ * Create a new AI localizations job or update an existing one for a document
8
+ * Ensures only one job exists per document
9
+ */ async upsertJobForDocument ({ documentId, contentType, sourceLocale, targetLocales, status = 'processing' }) {
10
+ // Check if job already exists for this document
11
+ const existingJob = await this.getJobByDocument(contentType, documentId);
12
+ if (existingJob) {
13
+ strapi.log.info(`[AI Localizations Job] Updated existing job for document ${documentId} with status: ${status}`);
14
+ // Update existing job with new data and status
15
+ return strapi.db.query(aiLocalizationJob.AI_LOCALIZATION_JOB_UID).update({
16
+ where: {
17
+ id: existingJob.id
18
+ },
19
+ data: {
20
+ contentType,
21
+ sourceLocale,
22
+ targetLocales,
23
+ status,
24
+ updatedAt: new Date()
25
+ }
26
+ });
27
+ }
28
+ strapi.log.info(`[AI Localizations Job] Created new job for document ${documentId} with status: ${status}`);
29
+ // Create new AI localizations job
30
+ return strapi.db.query(aiLocalizationJob.AI_LOCALIZATION_JOB_UID).create({
31
+ data: {
32
+ contentType,
33
+ relatedDocumentId: documentId,
34
+ sourceLocale,
35
+ targetLocales,
36
+ status,
37
+ createdAt: new Date(),
38
+ updatedAt: new Date()
39
+ }
40
+ });
41
+ },
42
+ /**
43
+ * Get job by document ID
44
+ */ async getJobByDocument (contentType, documentId) {
45
+ return strapi.db.query(aiLocalizationJob.AI_LOCALIZATION_JOB_UID).findOne({
46
+ where: {
47
+ relatedDocumentId: documentId,
48
+ contentType
49
+ }
50
+ });
51
+ },
52
+ /**
53
+ * Get job by content type
54
+ */ async getJobByContentType (contentType) {
55
+ return strapi.db.query(aiLocalizationJob.AI_LOCALIZATION_JOB_UID).findOne({
56
+ where: {
57
+ contentType
58
+ }
59
+ });
60
+ }
61
+ });
62
+
63
+ exports.createAILocalizationJobsService = createAILocalizationJobsService;
64
+ //# sourceMappingURL=ai-localization-jobs.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ai-localization-jobs.js","sources":["../../../server/src/services/ai-localization-jobs.ts"],"sourcesContent":["import type { Core } from '@strapi/types';\nimport { AI_LOCALIZATION_JOB_UID } from '../models/ai-localization-job';\nimport type { AILocalizationJobs } from '../../../shared/contracts/ai-localization-jobs';\n\nexport const createAILocalizationJobsService = ({ strapi }: { strapi: Core.Strapi }) => ({\n /**\n * Create a new AI localizations job or update an existing one for a document\n * Ensures only one job exists per document\n */\n async upsertJobForDocument({\n documentId,\n contentType,\n sourceLocale,\n targetLocales,\n status = 'processing',\n }: {\n documentId: string;\n contentType: string;\n sourceLocale: string;\n targetLocales: string[];\n status?: AILocalizationJobs['status'];\n }) {\n // Check if job already exists for this document\n const existingJob = await this.getJobByDocument(contentType, documentId);\n\n if (existingJob) {\n strapi.log.info(\n `[AI Localizations Job] Updated existing job for document ${documentId} with status: ${status}`\n );\n // Update existing job with new data and status\n return strapi.db.query(AI_LOCALIZATION_JOB_UID).update({\n where: { id: existingJob.id },\n data: {\n contentType,\n sourceLocale,\n targetLocales,\n status,\n updatedAt: new Date(),\n },\n });\n }\n\n strapi.log.info(\n `[AI Localizations Job] Created new job for document ${documentId} with status: ${status}`\n );\n // Create new AI localizations job\n return strapi.db.query(AI_LOCALIZATION_JOB_UID).create({\n data: {\n contentType,\n relatedDocumentId: documentId,\n sourceLocale,\n targetLocales,\n status,\n createdAt: new Date(),\n updatedAt: new Date(),\n },\n });\n },\n\n /**\n * Get job by document ID\n */\n async getJobByDocument(contentType: string, documentId: string) {\n return strapi.db.query(AI_LOCALIZATION_JOB_UID).findOne({\n where: {\n relatedDocumentId: documentId,\n contentType,\n },\n });\n },\n\n /**\n * Get job by content type\n */\n async getJobByContentType(contentType: string) {\n return strapi.db.query(AI_LOCALIZATION_JOB_UID).findOne({\n where: {\n contentType,\n },\n });\n },\n});\n"],"names":["createAILocalizationJobsService","strapi","upsertJobForDocument","documentId","contentType","sourceLocale","targetLocales","status","existingJob","getJobByDocument","log","info","db","query","AI_LOCALIZATION_JOB_UID","update","where","id","data","updatedAt","Date","create","relatedDocumentId","createdAt","findOne","getJobByContentType"],"mappings":";;;;MAIaA,+BAAkC,GAAA,CAAC,EAAEC,MAAM,EAA2B,IAAM;AACvF;;;AAGC,MACD,MAAMC,oBAAAA,CAAAA,CAAqB,EACzBC,UAAU,EACVC,WAAW,EACXC,YAAY,EACZC,aAAa,EACbC,MAAAA,GAAS,YAAY,EAOtB,EAAA;;AAEC,YAAA,MAAMC,cAAc,MAAM,IAAI,CAACC,gBAAgB,CAACL,WAAaD,EAAAA,UAAAA,CAAAA;AAE7D,YAAA,IAAIK,WAAa,EAAA;gBACfP,MAAOS,CAAAA,GAAG,CAACC,IAAI,CACb,CAAC,yDAAyD,EAAER,UAAW,CAAA,cAAc,EAAEI,MAAAA,CAAO,CAAC,CAAA;;AAGjG,gBAAA,OAAON,OAAOW,EAAE,CAACC,KAAK,CAACC,yCAAAA,CAAAA,CAAyBC,MAAM,CAAC;oBACrDC,KAAO,EAAA;AAAEC,wBAAAA,EAAAA,EAAIT,YAAYS;AAAG,qBAAA;oBAC5BC,IAAM,EAAA;AACJd,wBAAAA,WAAAA;AACAC,wBAAAA,YAAAA;AACAC,wBAAAA,aAAAA;AACAC,wBAAAA,MAAAA;AACAY,wBAAAA,SAAAA,EAAW,IAAIC,IAAAA;AACjB;AACF,iBAAA,CAAA;AACF;YAEAnB,MAAOS,CAAAA,GAAG,CAACC,IAAI,CACb,CAAC,oDAAoD,EAAER,UAAW,CAAA,cAAc,EAAEI,MAAAA,CAAO,CAAC,CAAA;;AAG5F,YAAA,OAAON,OAAOW,EAAE,CAACC,KAAK,CAACC,yCAAAA,CAAAA,CAAyBO,MAAM,CAAC;gBACrDH,IAAM,EAAA;AACJd,oBAAAA,WAAAA;oBACAkB,iBAAmBnB,EAAAA,UAAAA;AACnBE,oBAAAA,YAAAA;AACAC,oBAAAA,aAAAA;AACAC,oBAAAA,MAAAA;AACAgB,oBAAAA,SAAAA,EAAW,IAAIH,IAAAA,EAAAA;AACfD,oBAAAA,SAAAA,EAAW,IAAIC,IAAAA;AACjB;AACF,aAAA,CAAA;AACF,SAAA;AAEA;;AAEC,MACD,MAAMX,gBAAAA,CAAAA,CAAiBL,WAAmB,EAAED,UAAkB,EAAA;AAC5D,YAAA,OAAOF,OAAOW,EAAE,CAACC,KAAK,CAACC,yCAAAA,CAAAA,CAAyBU,OAAO,CAAC;gBACtDR,KAAO,EAAA;oBACLM,iBAAmBnB,EAAAA,UAAAA;AACnBC,oBAAAA;AACF;AACF,aAAA,CAAA;AACF,SAAA;AAEA;;MAGA,MAAMqB,qBAAoBrB,WAAmB,EAAA;AAC3C,YAAA,OAAOH,OAAOW,EAAE,CAACC,KAAK,CAACC,yCAAAA,CAAAA,CAAyBU,OAAO,CAAC;gBACtDR,KAAO,EAAA;AACLZ,oBAAAA;AACF;AACF,aAAA,CAAA;AACF;AACF,KAAA;;;;"}
@@ -0,0 +1,62 @@
1
+ import { AI_LOCALIZATION_JOB_UID } from '../models/ai-localization-job.mjs';
2
+
3
+ const createAILocalizationJobsService = ({ strapi })=>({
4
+ /**
5
+ * Create a new AI localizations job or update an existing one for a document
6
+ * Ensures only one job exists per document
7
+ */ async upsertJobForDocument ({ documentId, contentType, sourceLocale, targetLocales, status = 'processing' }) {
8
+ // Check if job already exists for this document
9
+ const existingJob = await this.getJobByDocument(contentType, documentId);
10
+ if (existingJob) {
11
+ strapi.log.info(`[AI Localizations Job] Updated existing job for document ${documentId} with status: ${status}`);
12
+ // Update existing job with new data and status
13
+ return strapi.db.query(AI_LOCALIZATION_JOB_UID).update({
14
+ where: {
15
+ id: existingJob.id
16
+ },
17
+ data: {
18
+ contentType,
19
+ sourceLocale,
20
+ targetLocales,
21
+ status,
22
+ updatedAt: new Date()
23
+ }
24
+ });
25
+ }
26
+ strapi.log.info(`[AI Localizations Job] Created new job for document ${documentId} with status: ${status}`);
27
+ // Create new AI localizations job
28
+ return strapi.db.query(AI_LOCALIZATION_JOB_UID).create({
29
+ data: {
30
+ contentType,
31
+ relatedDocumentId: documentId,
32
+ sourceLocale,
33
+ targetLocales,
34
+ status,
35
+ createdAt: new Date(),
36
+ updatedAt: new Date()
37
+ }
38
+ });
39
+ },
40
+ /**
41
+ * Get job by document ID
42
+ */ async getJobByDocument (contentType, documentId) {
43
+ return strapi.db.query(AI_LOCALIZATION_JOB_UID).findOne({
44
+ where: {
45
+ relatedDocumentId: documentId,
46
+ contentType
47
+ }
48
+ });
49
+ },
50
+ /**
51
+ * Get job by content type
52
+ */ async getJobByContentType (contentType) {
53
+ return strapi.db.query(AI_LOCALIZATION_JOB_UID).findOne({
54
+ where: {
55
+ contentType
56
+ }
57
+ });
58
+ }
59
+ });
60
+
61
+ export { createAILocalizationJobsService };
62
+ //# sourceMappingURL=ai-localization-jobs.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ai-localization-jobs.mjs","sources":["../../../server/src/services/ai-localization-jobs.ts"],"sourcesContent":["import type { Core } from '@strapi/types';\nimport { AI_LOCALIZATION_JOB_UID } from '../models/ai-localization-job';\nimport type { AILocalizationJobs } from '../../../shared/contracts/ai-localization-jobs';\n\nexport const createAILocalizationJobsService = ({ strapi }: { strapi: Core.Strapi }) => ({\n /**\n * Create a new AI localizations job or update an existing one for a document\n * Ensures only one job exists per document\n */\n async upsertJobForDocument({\n documentId,\n contentType,\n sourceLocale,\n targetLocales,\n status = 'processing',\n }: {\n documentId: string;\n contentType: string;\n sourceLocale: string;\n targetLocales: string[];\n status?: AILocalizationJobs['status'];\n }) {\n // Check if job already exists for this document\n const existingJob = await this.getJobByDocument(contentType, documentId);\n\n if (existingJob) {\n strapi.log.info(\n `[AI Localizations Job] Updated existing job for document ${documentId} with status: ${status}`\n );\n // Update existing job with new data and status\n return strapi.db.query(AI_LOCALIZATION_JOB_UID).update({\n where: { id: existingJob.id },\n data: {\n contentType,\n sourceLocale,\n targetLocales,\n status,\n updatedAt: new Date(),\n },\n });\n }\n\n strapi.log.info(\n `[AI Localizations Job] Created new job for document ${documentId} with status: ${status}`\n );\n // Create new AI localizations job\n return strapi.db.query(AI_LOCALIZATION_JOB_UID).create({\n data: {\n contentType,\n relatedDocumentId: documentId,\n sourceLocale,\n targetLocales,\n status,\n createdAt: new Date(),\n updatedAt: new Date(),\n },\n });\n },\n\n /**\n * Get job by document ID\n */\n async getJobByDocument(contentType: string, documentId: string) {\n return strapi.db.query(AI_LOCALIZATION_JOB_UID).findOne({\n where: {\n relatedDocumentId: documentId,\n contentType,\n },\n });\n },\n\n /**\n * Get job by content type\n */\n async getJobByContentType(contentType: string) {\n return strapi.db.query(AI_LOCALIZATION_JOB_UID).findOne({\n where: {\n contentType,\n },\n });\n },\n});\n"],"names":["createAILocalizationJobsService","strapi","upsertJobForDocument","documentId","contentType","sourceLocale","targetLocales","status","existingJob","getJobByDocument","log","info","db","query","AI_LOCALIZATION_JOB_UID","update","where","id","data","updatedAt","Date","create","relatedDocumentId","createdAt","findOne","getJobByContentType"],"mappings":";;MAIaA,+BAAkC,GAAA,CAAC,EAAEC,MAAM,EAA2B,IAAM;AACvF;;;AAGC,MACD,MAAMC,oBAAAA,CAAAA,CAAqB,EACzBC,UAAU,EACVC,WAAW,EACXC,YAAY,EACZC,aAAa,EACbC,MAAAA,GAAS,YAAY,EAOtB,EAAA;;AAEC,YAAA,MAAMC,cAAc,MAAM,IAAI,CAACC,gBAAgB,CAACL,WAAaD,EAAAA,UAAAA,CAAAA;AAE7D,YAAA,IAAIK,WAAa,EAAA;gBACfP,MAAOS,CAAAA,GAAG,CAACC,IAAI,CACb,CAAC,yDAAyD,EAAER,UAAW,CAAA,cAAc,EAAEI,MAAAA,CAAO,CAAC,CAAA;;AAGjG,gBAAA,OAAON,OAAOW,EAAE,CAACC,KAAK,CAACC,uBAAAA,CAAAA,CAAyBC,MAAM,CAAC;oBACrDC,KAAO,EAAA;AAAEC,wBAAAA,EAAAA,EAAIT,YAAYS;AAAG,qBAAA;oBAC5BC,IAAM,EAAA;AACJd,wBAAAA,WAAAA;AACAC,wBAAAA,YAAAA;AACAC,wBAAAA,aAAAA;AACAC,wBAAAA,MAAAA;AACAY,wBAAAA,SAAAA,EAAW,IAAIC,IAAAA;AACjB;AACF,iBAAA,CAAA;AACF;YAEAnB,MAAOS,CAAAA,GAAG,CAACC,IAAI,CACb,CAAC,oDAAoD,EAAER,UAAW,CAAA,cAAc,EAAEI,MAAAA,CAAO,CAAC,CAAA;;AAG5F,YAAA,OAAON,OAAOW,EAAE,CAACC,KAAK,CAACC,uBAAAA,CAAAA,CAAyBO,MAAM,CAAC;gBACrDH,IAAM,EAAA;AACJd,oBAAAA,WAAAA;oBACAkB,iBAAmBnB,EAAAA,UAAAA;AACnBE,oBAAAA,YAAAA;AACAC,oBAAAA,aAAAA;AACAC,oBAAAA,MAAAA;AACAgB,oBAAAA,SAAAA,EAAW,IAAIH,IAAAA,EAAAA;AACfD,oBAAAA,SAAAA,EAAW,IAAIC,IAAAA;AACjB;AACF,aAAA,CAAA;AACF,SAAA;AAEA;;AAEC,MACD,MAAMX,gBAAAA,CAAAA,CAAiBL,WAAmB,EAAED,UAAkB,EAAA;AAC5D,YAAA,OAAOF,OAAOW,EAAE,CAACC,KAAK,CAACC,uBAAAA,CAAAA,CAAyBU,OAAO,CAAC;gBACtDR,KAAO,EAAA;oBACLM,iBAAmBnB,EAAAA,UAAAA;AACnBC,oBAAAA;AACF;AACF,aAAA,CAAA;AACF,SAAA;AAEA;;MAGA,MAAMqB,qBAAoBrB,WAAmB,EAAA;AAC3C,YAAA,OAAOH,OAAOW,EAAE,CAACC,KAAK,CAACC,uBAAAA,CAAAA,CAAyBU,OAAO,CAAC;gBACtDR,KAAO,EAAA;AACLZ,oBAAAA;AACF;AACF,aAAA,CAAA;AACF;AACF,KAAA;;;;"}
@@ -1,14 +1,31 @@
1
1
  'use strict';
2
2
 
3
+ var utils = require('@strapi/utils');
4
+ var index = require('../utils/index.js');
5
+
6
+ const isLocalizedAttribute = (attribute)=>{
7
+ return attribute?.pluginOptions?.i18n?.localized === true;
8
+ };
3
9
  const createAILocalizationsService = ({ strapi })=>{
10
+ // TODO: add a helper function to get the AI server URL
11
+ const aiServerUrl = process.env.STRAPI_AI_URL || 'https://strapi-ai.apps.strapi.io';
12
+ const aiLocalizationJobsService = index.getService('ai-localization-jobs');
13
+ const UNSUPPORTED_ATTRIBUTE_TYPES = [
14
+ 'media',
15
+ 'relation',
16
+ 'boolean'
17
+ ];
18
+ const IGNORED_FIELDS = [
19
+ 'id',
20
+ 'documentId',
21
+ 'createdAt',
22
+ 'updatedAt',
23
+ 'updatedBy',
24
+ 'localizations'
25
+ ];
4
26
  return {
5
27
  // Async to avoid changing the signature later (there will be a db check in the future)
6
28
  async isEnabled () {
7
- // Check if future flag is enabled
8
- const isFutureFlagEnabled = strapi.features.future.isEnabled('unstableAILocalizations');
9
- if (!isFutureFlagEnabled) {
10
- return false;
11
- }
12
29
  // Check if user disabled AI features globally
13
30
  const isAIEnabled = strapi.config.get('admin.ai.enabled', true);
14
31
  if (!isAIEnabled) {
@@ -19,7 +36,238 @@ const createAILocalizationsService = ({ strapi })=>{
19
36
  if (!hasAccess) {
20
37
  return false;
21
38
  }
39
+ const settings = index.getService('settings');
40
+ const aiSettings = await settings.getSettings();
41
+ if (!aiSettings?.aiLocalizations) {
42
+ return false;
43
+ }
22
44
  return true;
45
+ },
46
+ /**
47
+ * Checks if there are localizations that need to be generated for the given document,
48
+ * and if so, calls the AI service and saves the results to the database.
49
+ * Works for both single and collection types, on create and update.
50
+ */ async generateDocumentLocalizations ({ model, document }) {
51
+ const isFeatureEnabled = await this.isEnabled();
52
+ if (!isFeatureEnabled) {
53
+ return;
54
+ }
55
+ const schema = strapi.getModel(model);
56
+ const localeService = index.getService('locales');
57
+ // No localizations needed for content types with i18n disabled
58
+ const isLocalizedContentType = index.getService('content-types').isLocalizedContentType(schema);
59
+ if (!isLocalizedContentType) {
60
+ return;
61
+ }
62
+ // Don't trigger localizations if the update is on a derived locale, only do it on the default
63
+ const defaultLocale = await localeService.getDefaultLocale();
64
+ if (document?.locale !== defaultLocale) {
65
+ return;
66
+ }
67
+ const documentId = document.documentId;
68
+ if (!documentId) {
69
+ strapi.log.warn(`AI Localizations: missing documentId for ${schema.uid}`);
70
+ return;
71
+ }
72
+ const localizedRoots = new Set();
73
+ const translateableContent = await utils.traverseEntity(({ key, attribute, parent, path }, { remove })=>{
74
+ if (IGNORED_FIELDS.includes(key)) {
75
+ remove(key);
76
+ return;
77
+ }
78
+ const hasLocalizedOption = attribute && isLocalizedAttribute(attribute);
79
+ if (attribute && UNSUPPORTED_ATTRIBUTE_TYPES.includes(attribute.type)) {
80
+ remove(key);
81
+ return;
82
+ }
83
+ // If this field is localized, keep it (and mark as localized root if component/dz)
84
+ if (hasLocalizedOption) {
85
+ // If it's a component/dynamiczone, add to the set
86
+ if ([
87
+ 'component',
88
+ 'dynamiczone'
89
+ ].includes(attribute.type)) {
90
+ localizedRoots.add(path.raw);
91
+ }
92
+ return; // keep
93
+ }
94
+ if (parent && localizedRoots.has(parent.path.raw)) {
95
+ // If parent exists in the localized roots set, keep it
96
+ // If this is also a component/dz, propagate the localized root flag
97
+ if ([
98
+ 'component',
99
+ 'dynamiczone'
100
+ ].includes(attribute?.type ?? '')) {
101
+ localizedRoots.add(path.raw);
102
+ }
103
+ return; // keep
104
+ }
105
+ // Otherwise, remove the field
106
+ remove(key);
107
+ }, {
108
+ schema,
109
+ getModel: strapi.getModel.bind(strapi)
110
+ }, document);
111
+ if (Object.keys(translateableContent).length === 0) {
112
+ strapi.log.info(`AI Localizations: no translatable content for ${schema.uid} document ${documentId}`);
113
+ return;
114
+ }
115
+ const localesList = await localeService.find();
116
+ const targetLocales = localesList.filter((l)=>l.code !== document.locale).map((l)=>l.code);
117
+ if (targetLocales.length === 0) {
118
+ strapi.log.info(`AI Localizations: no target locales for ${schema.uid} document ${documentId}`);
119
+ return;
120
+ }
121
+ await aiLocalizationJobsService.upsertJobForDocument({
122
+ contentType: model,
123
+ documentId,
124
+ sourceLocale: document.locale,
125
+ targetLocales,
126
+ status: 'processing'
127
+ });
128
+ let token;
129
+ try {
130
+ const tokenData = await strapi.service('admin::user').getAiToken();
131
+ token = tokenData.token;
132
+ } catch (error) {
133
+ await aiLocalizationJobsService.upsertJobForDocument({
134
+ documentId,
135
+ contentType: model,
136
+ sourceLocale: document.locale,
137
+ targetLocales,
138
+ status: 'failed'
139
+ });
140
+ throw new Error('Failed to retrieve AI token', {
141
+ cause: error instanceof Error ? error : undefined
142
+ });
143
+ }
144
+ /**
145
+ * Provide a schema to the LLM so that we can give it instructions about how to handle each
146
+ * type of attribute. Only keep essential schema data to avoid cluttering the context.
147
+ * Ignore fields that don't need to be localized.
148
+ * TODO: also provide a schema of all the referenced components
149
+ */ const minimalContentTypeSchema = Object.fromEntries(Object.entries(schema.attributes)// eslint-disable-next-line @typescript-eslint/no-unused-vars
150
+ .filter(([_, attr])=>{
151
+ const isLocalized = isLocalizedAttribute(attr);
152
+ const isSupportedType = !UNSUPPORTED_ATTRIBUTE_TYPES.includes(attr.type);
153
+ return isLocalized && isSupportedType;
154
+ }).map(([key, attr])=>{
155
+ const minimalAttribute = {
156
+ type: attr.type
157
+ };
158
+ if (attr.type === 'component') {
159
+ minimalAttribute.repeatable = attr.repeatable ?? false;
160
+ }
161
+ return [
162
+ key,
163
+ minimalAttribute
164
+ ];
165
+ }));
166
+ strapi.log.http('Contacting AI Server for localizations generation');
167
+ const response = await fetch(`${aiServerUrl}/i18n/generate-localizations`, {
168
+ method: 'POST',
169
+ headers: {
170
+ 'Content-Type': 'application/json',
171
+ Authorization: `Bearer ${token}`
172
+ },
173
+ body: JSON.stringify({
174
+ content: translateableContent,
175
+ sourceLocale: document.locale,
176
+ targetLocales,
177
+ contentTypeSchema: minimalContentTypeSchema
178
+ })
179
+ });
180
+ if (!response.ok) {
181
+ strapi.log.error(`AI Localizations request failed: ${response.status} ${response.statusText}`);
182
+ await aiLocalizationJobsService.upsertJobForDocument({
183
+ documentId,
184
+ contentType: model,
185
+ sourceLocale: document.locale,
186
+ targetLocales,
187
+ status: 'failed'
188
+ });
189
+ throw new Error(`AI Localizations request failed: ${response.statusText}`);
190
+ }
191
+ const aiResult = await response.json();
192
+ // Get all media field names dynamically from the schema
193
+ const mediaFields = Object.entries(schema.attributes)// eslint-disable-next-line @typescript-eslint/no-unused-vars
194
+ .filter(([_, attr])=>attr.type === 'media').map(([key])=>key);
195
+ try {
196
+ await Promise.all(aiResult.localizations.map(async (localization)=>{
197
+ const { content, locale } = localization;
198
+ // Fetch the derived locale document
199
+ const derivedDoc = await strapi.documents(model).findOne({
200
+ documentId,
201
+ locale,
202
+ populate: mediaFields
203
+ });
204
+ // Merge AI content and media fields, works only on first level media fields (root level)
205
+ const mergedData = structuredClone(content);
206
+ for (const field of mediaFields){
207
+ // Only copy media if not already set in derived locale
208
+ if (!derivedDoc || !derivedDoc[field]) {
209
+ mergedData[field] = document[field];
210
+ } else {
211
+ mergedData[field] = derivedDoc[field];
212
+ }
213
+ }
214
+ await strapi.documents(model).update({
215
+ documentId,
216
+ locale,
217
+ fields: [],
218
+ data: mergedData
219
+ });
220
+ await aiLocalizationJobsService.upsertJobForDocument({
221
+ documentId,
222
+ contentType: model,
223
+ sourceLocale: document.locale,
224
+ targetLocales,
225
+ status: 'completed'
226
+ });
227
+ }));
228
+ } catch (error) {
229
+ await aiLocalizationJobsService.upsertJobForDocument({
230
+ documentId,
231
+ contentType: model,
232
+ sourceLocale: document.locale,
233
+ targetLocales,
234
+ status: 'failed'
235
+ });
236
+ strapi.log.error('AI Localizations generation failed', error);
237
+ }
238
+ },
239
+ setupMiddleware () {
240
+ strapi.documents.use(async (context, next)=>{
241
+ const result = await next();
242
+ const metricsService = strapi.plugin('i18n').service('metrics');
243
+ if (context.action === 'publish') {
244
+ metricsService.sendWithAIEventProperty('didPublishEntry');
245
+ return result;
246
+ }
247
+ if (context.action === 'update' || context.action === 'create') {
248
+ metricsService.sendWithAIEventProperty('didSaveEntry');
249
+ }
250
+ // Only trigger for the allowed actions
251
+ if (![
252
+ 'create',
253
+ 'update'
254
+ ].includes(context.action)) {
255
+ return result;
256
+ }
257
+ // Check if AI localizations are enabled before triggering
258
+ const isEnabled = await this.isEnabled();
259
+ if (!isEnabled) {
260
+ return result;
261
+ }
262
+ // Don't await since localizations should be done in the background without blocking the request
263
+ strapi.plugin('i18n').service('ai-localizations').generateDocumentLocalizations({
264
+ model: context.contentType.uid,
265
+ document: result
266
+ }).catch((error)=>{
267
+ strapi.log.error('AI Localizations generation failed', error);
268
+ });
269
+ return result;
270
+ });
23
271
  }
24
272
  };
25
273
  };
@@ -1 +1 @@
1
- {"version":3,"file":"ai-localizations.js","sources":["../../../server/src/services/ai-localizations.ts"],"sourcesContent":["import type { Core } from '@strapi/types';\n\nconst createAILocalizationsService = ({ strapi }: { strapi: Core.Strapi }) => {\n return {\n // Async to avoid changing the signature later (there will be a db check in the future)\n async isEnabled() {\n // Check if future flag is enabled\n const isFutureFlagEnabled = strapi.features.future.isEnabled('unstableAILocalizations');\n if (!isFutureFlagEnabled) {\n return false;\n }\n\n // Check if user disabled AI features globally\n const isAIEnabled = strapi.config.get('admin.ai.enabled', true);\n if (!isAIEnabled) {\n return false;\n }\n\n // Check if the user's license grants access to AI features\n const hasAccess = strapi.ee.features.isEnabled('cms-ai');\n if (!hasAccess) {\n return false;\n }\n\n return true;\n },\n };\n};\n\nexport { createAILocalizationsService };\n"],"names":["createAILocalizationsService","strapi","isEnabled","isFutureFlagEnabled","features","future","isAIEnabled","config","get","hasAccess","ee"],"mappings":";;AAEA,MAAMA,4BAA+B,GAAA,CAAC,EAAEC,MAAM,EAA2B,GAAA;IACvE,OAAO;;QAEL,MAAMC,SAAAA,CAAAA,GAAAA;;AAEJ,YAAA,MAAMC,sBAAsBF,MAAOG,CAAAA,QAAQ,CAACC,MAAM,CAACH,SAAS,CAAC,yBAAA,CAAA;AAC7D,YAAA,IAAI,CAACC,mBAAqB,EAAA;gBACxB,OAAO,KAAA;AACT;;AAGA,YAAA,MAAMG,cAAcL,MAAOM,CAAAA,MAAM,CAACC,GAAG,CAAC,kBAAoB,EAAA,IAAA,CAAA;AAC1D,YAAA,IAAI,CAACF,WAAa,EAAA;gBAChB,OAAO,KAAA;AACT;;AAGA,YAAA,MAAMG,YAAYR,MAAOS,CAAAA,EAAE,CAACN,QAAQ,CAACF,SAAS,CAAC,QAAA,CAAA;AAC/C,YAAA,IAAI,CAACO,SAAW,EAAA;gBACd,OAAO,KAAA;AACT;YAEA,OAAO,IAAA;AACT;AACF,KAAA;AACF;;;;"}
1
+ {"version":3,"file":"ai-localizations.js","sources":["../../../server/src/services/ai-localizations.ts"],"sourcesContent":["import type { Core, Modules, Schema, UID } from '@strapi/types';\nimport { traverseEntity } from '@strapi/utils';\nimport { getService } from '../utils';\n\nconst isLocalizedAttribute = (attribute: Schema.Attribute.Attribute | undefined): boolean => {\n return (attribute?.pluginOptions as any)?.i18n?.localized === true;\n};\n\nconst createAILocalizationsService = ({ strapi }: { strapi: Core.Strapi }) => {\n // TODO: add a helper function to get the AI server URL\n const aiServerUrl = process.env.STRAPI_AI_URL || 'https://strapi-ai.apps.strapi.io';\n const aiLocalizationJobsService = getService('ai-localization-jobs');\n\n const UNSUPPORTED_ATTRIBUTE_TYPES: Schema.Attribute.Kind[] = ['media', 'relation', 'boolean'];\n const IGNORED_FIELDS = [\n 'id',\n 'documentId',\n 'createdAt',\n 'updatedAt',\n 'updatedBy',\n 'localizations',\n ];\n\n return {\n // Async to avoid changing the signature later (there will be a db check in the future)\n async isEnabled() {\n // Check if user disabled AI features globally\n const isAIEnabled = strapi.config.get('admin.ai.enabled', true);\n if (!isAIEnabled) {\n return false;\n }\n\n // Check if the user's license grants access to AI features\n const hasAccess = strapi.ee.features.isEnabled('cms-ai');\n if (!hasAccess) {\n return false;\n }\n\n const settings = getService('settings');\n const aiSettings = await settings.getSettings();\n if (!aiSettings?.aiLocalizations) {\n return false;\n }\n\n return true;\n },\n\n /**\n * Checks if there are localizations that need to be generated for the given document,\n * and if so, calls the AI service and saves the results to the database.\n * Works for both single and collection types, on create and update.\n */\n async generateDocumentLocalizations({\n model,\n document,\n }: {\n model: UID.ContentType;\n document: Modules.Documents.AnyDocument;\n }) {\n const isFeatureEnabled = await this.isEnabled();\n if (!isFeatureEnabled) {\n return;\n }\n\n const schema = strapi.getModel(model);\n const localeService = getService('locales');\n\n // No localizations needed for content types with i18n disabled\n const isLocalizedContentType = getService('content-types').isLocalizedContentType(schema);\n if (!isLocalizedContentType) {\n return;\n }\n\n // Don't trigger localizations if the update is on a derived locale, only do it on the default\n const defaultLocale = await localeService.getDefaultLocale();\n if (document?.locale !== defaultLocale) {\n return;\n }\n\n const documentId = document.documentId;\n\n if (!documentId) {\n strapi.log.warn(`AI Localizations: missing documentId for ${schema.uid}`);\n return;\n }\n\n const localizedRoots = new Set();\n\n const translateableContent = await traverseEntity(\n ({ key, attribute, parent, path }, { remove }) => {\n if (IGNORED_FIELDS.includes(key)) {\n remove(key);\n return;\n }\n const hasLocalizedOption = attribute && isLocalizedAttribute(attribute);\n if (attribute && UNSUPPORTED_ATTRIBUTE_TYPES.includes(attribute.type)) {\n remove(key);\n return;\n }\n\n // If this field is localized, keep it (and mark as localized root if component/dz)\n if (hasLocalizedOption) {\n // If it's a component/dynamiczone, add to the set\n if (['component', 'dynamiczone'].includes(attribute.type)) {\n localizedRoots.add(path.raw);\n }\n return; // keep\n }\n\n if (parent && localizedRoots.has(parent.path.raw)) {\n // If parent exists in the localized roots set, keep it\n // If this is also a component/dz, propagate the localized root flag\n if (['component', 'dynamiczone'].includes(attribute?.type ?? '')) {\n localizedRoots.add(path.raw);\n }\n return; // keep\n }\n\n // Otherwise, remove the field\n remove(key);\n },\n { schema, getModel: strapi.getModel.bind(strapi) },\n document\n );\n\n if (Object.keys(translateableContent).length === 0) {\n strapi.log.info(\n `AI Localizations: no translatable content for ${schema.uid} document ${documentId}`\n );\n return;\n }\n\n const localesList = await localeService.find();\n const targetLocales = localesList\n .filter((l) => l.code !== document.locale)\n .map((l) => l.code);\n\n if (targetLocales.length === 0) {\n strapi.log.info(\n `AI Localizations: no target locales for ${schema.uid} document ${documentId}`\n );\n return;\n }\n\n await aiLocalizationJobsService.upsertJobForDocument({\n contentType: model,\n documentId,\n sourceLocale: document.locale,\n targetLocales,\n status: 'processing',\n });\n\n let token: string;\n try {\n const tokenData = await strapi.service('admin::user').getAiToken();\n token = tokenData.token;\n } catch (error) {\n await aiLocalizationJobsService.upsertJobForDocument({\n documentId,\n contentType: model,\n sourceLocale: document.locale,\n targetLocales,\n status: 'failed',\n });\n\n throw new Error('Failed to retrieve AI token', {\n cause: error instanceof Error ? error : undefined,\n });\n }\n\n /**\n * Provide a schema to the LLM so that we can give it instructions about how to handle each\n * type of attribute. Only keep essential schema data to avoid cluttering the context.\n * Ignore fields that don't need to be localized.\n * TODO: also provide a schema of all the referenced components\n */\n const minimalContentTypeSchema = Object.fromEntries(\n Object.entries(schema.attributes)\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n .filter(([_, attr]) => {\n const isLocalized = isLocalizedAttribute(attr);\n const isSupportedType = !UNSUPPORTED_ATTRIBUTE_TYPES.includes(attr.type);\n return isLocalized && isSupportedType;\n })\n .map(([key, attr]) => {\n const minimalAttribute = { type: attr.type };\n if (attr.type === 'component') {\n (\n minimalAttribute as Schema.Attribute.Component<`${string}.${string}`, boolean>\n ).repeatable = attr.repeatable ?? false;\n }\n return [key, minimalAttribute];\n })\n );\n\n strapi.log.http('Contacting AI Server for localizations generation');\n const response = await fetch(`${aiServerUrl}/i18n/generate-localizations`, {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json',\n Authorization: `Bearer ${token}`,\n },\n body: JSON.stringify({\n content: translateableContent,\n sourceLocale: document.locale,\n targetLocales,\n contentTypeSchema: minimalContentTypeSchema,\n }),\n });\n\n if (!response.ok) {\n strapi.log.error(\n `AI Localizations request failed: ${response.status} ${response.statusText}`\n );\n\n await aiLocalizationJobsService.upsertJobForDocument({\n documentId,\n contentType: model,\n sourceLocale: document.locale,\n targetLocales,\n status: 'failed',\n });\n\n throw new Error(`AI Localizations request failed: ${response.statusText}`);\n }\n\n const aiResult = await response.json();\n // Get all media field names dynamically from the schema\n const mediaFields = Object.entries(schema.attributes)\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n .filter(([_, attr]) => attr.type === 'media')\n .map(([key]) => key);\n\n try {\n await Promise.all(\n aiResult.localizations.map(async (localization: any) => {\n const { content, locale } = localization;\n\n // Fetch the derived locale document\n const derivedDoc = await strapi.documents(model).findOne({\n documentId,\n locale,\n populate: mediaFields,\n });\n\n // Merge AI content and media fields, works only on first level media fields (root level)\n const mergedData = structuredClone(content);\n for (const field of mediaFields) {\n // Only copy media if not already set in derived locale\n if (!derivedDoc || !derivedDoc[field]) {\n mergedData[field] = document[field];\n } else {\n mergedData[field] = derivedDoc[field];\n }\n }\n\n await strapi.documents(model).update({\n documentId,\n locale,\n fields: [],\n data: mergedData,\n });\n\n await aiLocalizationJobsService.upsertJobForDocument({\n documentId,\n contentType: model,\n sourceLocale: document.locale,\n targetLocales,\n status: 'completed',\n });\n })\n );\n } catch (error) {\n await aiLocalizationJobsService.upsertJobForDocument({\n documentId,\n contentType: model,\n sourceLocale: document.locale,\n targetLocales,\n status: 'failed',\n });\n strapi.log.error('AI Localizations generation failed', error);\n }\n },\n setupMiddleware() {\n strapi.documents.use(async (context, next) => {\n const result = await next();\n\n const metricsService = strapi.plugin('i18n').service('metrics');\n if (context.action === 'publish') {\n metricsService.sendWithAIEventProperty('didPublishEntry');\n return result;\n }\n\n if (context.action === 'update' || context.action === 'create') {\n metricsService.sendWithAIEventProperty('didSaveEntry');\n }\n\n // Only trigger for the allowed actions\n if (!['create', 'update'].includes(context.action)) {\n return result;\n }\n\n // Check if AI localizations are enabled before triggering\n const isEnabled = await this.isEnabled();\n if (!isEnabled) {\n return result;\n }\n\n // Don't await since localizations should be done in the background without blocking the request\n strapi\n .plugin('i18n')\n .service('ai-localizations')\n .generateDocumentLocalizations({\n model: context.contentType.uid,\n document: result,\n })\n .catch((error: any) => {\n strapi.log.error('AI Localizations generation failed', error);\n });\n\n return result;\n });\n },\n };\n};\n\nexport { createAILocalizationsService };\n"],"names":["isLocalizedAttribute","attribute","pluginOptions","i18n","localized","createAILocalizationsService","strapi","aiServerUrl","process","env","STRAPI_AI_URL","aiLocalizationJobsService","getService","UNSUPPORTED_ATTRIBUTE_TYPES","IGNORED_FIELDS","isEnabled","isAIEnabled","config","get","hasAccess","ee","features","settings","aiSettings","getSettings","aiLocalizations","generateDocumentLocalizations","model","document","isFeatureEnabled","schema","getModel","localeService","isLocalizedContentType","defaultLocale","getDefaultLocale","locale","documentId","log","warn","uid","localizedRoots","Set","translateableContent","traverseEntity","key","parent","path","remove","includes","hasLocalizedOption","type","add","raw","has","bind","Object","keys","length","info","localesList","find","targetLocales","filter","l","code","map","upsertJobForDocument","contentType","sourceLocale","status","token","tokenData","service","getAiToken","error","Error","cause","undefined","minimalContentTypeSchema","fromEntries","entries","attributes","_","attr","isLocalized","isSupportedType","minimalAttribute","repeatable","http","response","fetch","method","headers","Authorization","body","JSON","stringify","content","contentTypeSchema","ok","statusText","aiResult","json","mediaFields","Promise","all","localizations","localization","derivedDoc","documents","findOne","populate","mergedData","structuredClone","field","update","fields","data","setupMiddleware","use","context","next","result","metricsService","plugin","action","sendWithAIEventProperty","catch"],"mappings":"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"}