@strapi/i18n 0.0.0-experimental.afa3b513b8f95459043f33fb94f4bac03af1474f → 0.0.0-experimental.b391efb8ce3832d4f280928b99ef5cb9c228fdee
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.
- package/dist/_chunks/{SettingsPage-BjxjwEOb.mjs → SettingsPage-BHvunuIF.mjs} +4 -4
- package/dist/_chunks/SettingsPage-BHvunuIF.mjs.map +1 -0
- package/dist/_chunks/{SettingsPage-CfTmCkup.js → SettingsPage-Bcj7380u.js} +4 -4
- package/dist/_chunks/SettingsPage-Bcj7380u.js.map +1 -0
- package/dist/_chunks/{en-DWpfm8h5.js → en-BKBz3tro.js} +5 -4
- package/dist/_chunks/en-BKBz3tro.js.map +1 -0
- package/dist/_chunks/{en-2xztdZE1.mjs → en-DlXfy6Gy.mjs} +5 -4
- package/dist/_chunks/en-DlXfy6Gy.mjs.map +1 -0
- package/dist/_chunks/{index-5XLZwzwx.js → index-BKZbxhpm.js} +81 -30
- package/dist/_chunks/index-BKZbxhpm.js.map +1 -0
- package/dist/_chunks/{index-D-qx3tz4.mjs → index-DUdrr5PR.mjs} +82 -31
- package/dist/_chunks/index-DUdrr5PR.mjs.map +1 -0
- package/dist/admin/index.js +1 -1
- package/dist/admin/index.mjs +1 -1
- package/dist/admin/src/components/CMHeaderActions.d.ts +5 -3
- package/dist/admin/src/components/CreateLocale.d.ts +6 -6
- package/dist/server/index.js +389 -419
- package/dist/server/index.js.map +1 -1
- package/dist/server/index.mjs +391 -421
- package/dist/server/index.mjs.map +1 -1
- package/dist/server/src/index.d.ts +6 -0
- package/dist/server/src/index.d.ts.map +1 -1
- package/dist/server/src/register.d.ts.map +1 -1
- package/dist/server/src/services/index.d.ts +6 -0
- package/dist/server/src/services/index.d.ts.map +1 -1
- package/dist/server/src/services/sanitize/index.d.ts +11 -0
- package/dist/server/src/services/sanitize/index.d.ts.map +1 -0
- package/dist/server/src/utils/index.d.ts +2 -0
- package/dist/server/src/utils/index.d.ts.map +1 -1
- package/package.json +10 -10
- package/dist/_chunks/SettingsPage-BjxjwEOb.mjs.map +0 -1
- package/dist/_chunks/SettingsPage-CfTmCkup.js.map +0 -1
- package/dist/_chunks/en-2xztdZE1.mjs.map +0 -1
- package/dist/_chunks/en-DWpfm8h5.js.map +0 -1
- package/dist/_chunks/index-5XLZwzwx.js.map +0 -1
- package/dist/_chunks/index-D-qx3tz4.mjs.map +0 -1
- package/dist/server/src/migrations/content-type/disable/index.d.ts +0 -3
- package/dist/server/src/migrations/content-type/disable/index.d.ts.map +0 -1
- package/dist/server/src/migrations/content-type/enable/index.d.ts +0 -3
- package/dist/server/src/migrations/content-type/enable/index.d.ts.map +0 -1
package/dist/server/index.js
CHANGED
@@ -195,6 +195,352 @@ const getI18nLocaleArgPlugin = ({ nexus, typeRegistry }) => {
|
|
195
195
|
}
|
196
196
|
});
|
197
197
|
};
|
198
|
+
const register = ({ strapi: strapi2 }) => {
|
199
|
+
extendContentTypes(strapi2);
|
200
|
+
addContentManagerLocaleMiddleware(strapi2);
|
201
|
+
};
|
202
|
+
const addContentManagerLocaleMiddleware = (strapi2) => {
|
203
|
+
strapi2.server.router.use("/content-manager/collection-types/:model", (ctx, next) => {
|
204
|
+
if (ctx.method === "POST" || ctx.method === "PUT") {
|
205
|
+
return validateLocaleCreation(ctx, next);
|
206
|
+
}
|
207
|
+
return next();
|
208
|
+
});
|
209
|
+
strapi2.server.router.use("/content-manager/single-types/:model", (ctx, next) => {
|
210
|
+
if (ctx.method === "POST" || ctx.method === "PUT") {
|
211
|
+
return validateLocaleCreation(ctx, next);
|
212
|
+
}
|
213
|
+
return next();
|
214
|
+
});
|
215
|
+
};
|
216
|
+
const extendContentTypes = (strapi2) => {
|
217
|
+
const { isLocalizedContentType: isLocalizedContentType2 } = getService("content-types");
|
218
|
+
Object.values(strapi2.contentTypes).forEach((contentType) => {
|
219
|
+
const { attributes: attributes2 } = contentType;
|
220
|
+
const isLocalized = isLocalizedContentType2(contentType);
|
221
|
+
___default.default.set(attributes2, "locale", {
|
222
|
+
writable: true,
|
223
|
+
private: !isLocalized,
|
224
|
+
configurable: false,
|
225
|
+
visible: false,
|
226
|
+
type: "string"
|
227
|
+
});
|
228
|
+
___default.default.set(attributes2, "localizations", {
|
229
|
+
type: "relation",
|
230
|
+
relation: "oneToMany",
|
231
|
+
target: contentType.uid,
|
232
|
+
writable: false,
|
233
|
+
private: !isLocalized,
|
234
|
+
configurable: false,
|
235
|
+
visible: false,
|
236
|
+
unstable_virtual: true,
|
237
|
+
joinColumn: {
|
238
|
+
name: "document_id",
|
239
|
+
referencedColumn: "document_id",
|
240
|
+
referencedTable: strapi2.db.metadata.identifiers.getTableName(contentType.collectionName),
|
241
|
+
// ensure the population will not include the results we already loaded
|
242
|
+
on({ results }) {
|
243
|
+
return {
|
244
|
+
id: {
|
245
|
+
$notIn: results.map((r) => r.id)
|
246
|
+
}
|
247
|
+
};
|
248
|
+
}
|
249
|
+
}
|
250
|
+
});
|
251
|
+
});
|
252
|
+
if (strapi2.plugin("graphql")) {
|
253
|
+
graphqlProvider({ strapi: strapi2 }).register();
|
254
|
+
}
|
255
|
+
};
|
256
|
+
const info = {
|
257
|
+
singularName: "locale",
|
258
|
+
pluralName: "locales",
|
259
|
+
collectionName: "locales",
|
260
|
+
displayName: "Locale",
|
261
|
+
description: ""
|
262
|
+
};
|
263
|
+
const options = {};
|
264
|
+
const pluginOptions = {
|
265
|
+
"content-manager": {
|
266
|
+
visible: false
|
267
|
+
},
|
268
|
+
"content-type-builder": {
|
269
|
+
visible: false
|
270
|
+
}
|
271
|
+
};
|
272
|
+
const attributes = {
|
273
|
+
name: {
|
274
|
+
type: "string",
|
275
|
+
min: 1,
|
276
|
+
max: 50,
|
277
|
+
configurable: false
|
278
|
+
},
|
279
|
+
code: {
|
280
|
+
type: "string",
|
281
|
+
unique: true,
|
282
|
+
configurable: false
|
283
|
+
}
|
284
|
+
};
|
285
|
+
const schema = {
|
286
|
+
info,
|
287
|
+
options,
|
288
|
+
pluginOptions,
|
289
|
+
attributes
|
290
|
+
};
|
291
|
+
const locale = {
|
292
|
+
schema
|
293
|
+
};
|
294
|
+
const contentTypes$1 = {
|
295
|
+
locale
|
296
|
+
};
|
297
|
+
const actions = [
|
298
|
+
{
|
299
|
+
section: "settings",
|
300
|
+
category: "Internationalization",
|
301
|
+
subCategory: "Locales",
|
302
|
+
pluginName: "i18n",
|
303
|
+
displayName: "Create",
|
304
|
+
uid: "locale.create"
|
305
|
+
},
|
306
|
+
{
|
307
|
+
section: "settings",
|
308
|
+
category: "Internationalization",
|
309
|
+
subCategory: "Locales",
|
310
|
+
pluginName: "i18n",
|
311
|
+
displayName: "Read",
|
312
|
+
uid: "locale.read",
|
313
|
+
aliases: [
|
314
|
+
{ actionId: "plugin::content-manager.explorer.read", subjects: ["plugin::i18n.locale"] }
|
315
|
+
]
|
316
|
+
},
|
317
|
+
{
|
318
|
+
section: "settings",
|
319
|
+
category: "Internationalization",
|
320
|
+
subCategory: "Locales",
|
321
|
+
pluginName: "i18n",
|
322
|
+
displayName: "Update",
|
323
|
+
uid: "locale.update"
|
324
|
+
},
|
325
|
+
{
|
326
|
+
section: "settings",
|
327
|
+
category: "Internationalization",
|
328
|
+
subCategory: "Locales",
|
329
|
+
pluginName: "i18n",
|
330
|
+
displayName: "Delete",
|
331
|
+
uid: "locale.delete"
|
332
|
+
}
|
333
|
+
];
|
334
|
+
const addLocalesPropertyIfNeeded = ({ value: action }) => {
|
335
|
+
const {
|
336
|
+
section,
|
337
|
+
options: { applyToProperties }
|
338
|
+
} = action;
|
339
|
+
if (section !== "contentTypes") {
|
340
|
+
return;
|
341
|
+
}
|
342
|
+
if (fp.isArray(applyToProperties) && applyToProperties.includes("locales")) {
|
343
|
+
return;
|
344
|
+
}
|
345
|
+
action.options.applyToProperties = fp.isArray(applyToProperties) ? applyToProperties.concat("locales") : ["locales"];
|
346
|
+
};
|
347
|
+
const shouldApplyLocalesPropertyToSubject = ({ property, subject }) => {
|
348
|
+
if (property === "locales") {
|
349
|
+
const model = strapi.getModel(subject);
|
350
|
+
return getService("content-types").isLocalizedContentType(model);
|
351
|
+
}
|
352
|
+
return true;
|
353
|
+
};
|
354
|
+
const addAllLocalesToPermissions = async (permissions2) => {
|
355
|
+
const { actionProvider } = strapi.service("admin::permission");
|
356
|
+
const { find: findAllLocales } = getService("locales");
|
357
|
+
const allLocales = await findAllLocales();
|
358
|
+
const allLocalesCode = allLocales.map(fp.prop("code"));
|
359
|
+
return Promise.all(
|
360
|
+
permissions2.map(async (permission) => {
|
361
|
+
const { action, subject } = permission;
|
362
|
+
const appliesToLocalesProperty = await actionProvider.appliesToProperty(
|
363
|
+
"locales",
|
364
|
+
action,
|
365
|
+
subject
|
366
|
+
);
|
367
|
+
if (!appliesToLocalesProperty) {
|
368
|
+
return permission;
|
369
|
+
}
|
370
|
+
const oldPermissionProperties = fp.getOr({}, "properties", permission);
|
371
|
+
return { ...permission, properties: { ...oldPermissionProperties, locales: allLocalesCode } };
|
372
|
+
})
|
373
|
+
);
|
374
|
+
};
|
375
|
+
const syncSuperAdminPermissionsWithLocales = async () => {
|
376
|
+
const roleService = strapi.service("admin::role");
|
377
|
+
const permissionService = strapi.service("admin::permission");
|
378
|
+
const superAdminRole = await roleService.getSuperAdmin();
|
379
|
+
if (!superAdminRole) {
|
380
|
+
return;
|
381
|
+
}
|
382
|
+
const superAdminPermissions = await permissionService.findMany({
|
383
|
+
where: {
|
384
|
+
role: {
|
385
|
+
id: superAdminRole.id
|
386
|
+
}
|
387
|
+
}
|
388
|
+
});
|
389
|
+
const newSuperAdminPermissions = await addAllLocalesToPermissions(superAdminPermissions);
|
390
|
+
await roleService.assignPermissions(superAdminRole.id, newSuperAdminPermissions);
|
391
|
+
};
|
392
|
+
const registerI18nActions = async () => {
|
393
|
+
const { actionProvider } = strapi.service("admin::permission");
|
394
|
+
await actionProvider.registerMany(actions);
|
395
|
+
};
|
396
|
+
const registerI18nActionsHooks = () => {
|
397
|
+
const { actionProvider } = strapi.service("admin::permission");
|
398
|
+
const { hooks } = strapi.service("admin::role");
|
399
|
+
actionProvider.hooks.appliesPropertyToSubject.register(shouldApplyLocalesPropertyToSubject);
|
400
|
+
hooks.willResetSuperAdminPermissions.register(addAllLocalesToPermissions);
|
401
|
+
};
|
402
|
+
const updateActionsProperties = () => {
|
403
|
+
const { actionProvider } = strapi.service("admin::permission");
|
404
|
+
actionProvider.hooks.willRegister.register(addLocalesPropertyIfNeeded);
|
405
|
+
actionProvider.values().forEach((action) => addLocalesPropertyIfNeeded({ value: action }));
|
406
|
+
};
|
407
|
+
const i18nActionsService = {
|
408
|
+
actions,
|
409
|
+
registerI18nActions,
|
410
|
+
registerI18nActionsHooks,
|
411
|
+
updateActionsProperties,
|
412
|
+
syncSuperAdminPermissionsWithLocales
|
413
|
+
};
|
414
|
+
const localesPropertyHandler = async ({ action, section }) => {
|
415
|
+
const { actionProvider } = strapi.service("admin::permission");
|
416
|
+
const locales2 = await getService("locales").find();
|
417
|
+
if (fp.isEmpty(locales2)) {
|
418
|
+
return;
|
419
|
+
}
|
420
|
+
for (const subject of section.subjects) {
|
421
|
+
const applies = await actionProvider.appliesToProperty("locales", action.actionId, subject.uid);
|
422
|
+
const hasLocalesProperty = subject.properties.find(
|
423
|
+
(property) => property.value === "locales"
|
424
|
+
);
|
425
|
+
if (applies && !hasLocalesProperty) {
|
426
|
+
subject.properties.push({
|
427
|
+
label: "Locales",
|
428
|
+
value: "locales",
|
429
|
+
children: locales2.map(({ name, code }) => ({ label: name || code, value: code }))
|
430
|
+
});
|
431
|
+
}
|
432
|
+
}
|
433
|
+
};
|
434
|
+
const registerLocalesPropertyHandler = () => {
|
435
|
+
const { sectionsBuilder } = strapi.service("admin::permission");
|
436
|
+
sectionsBuilder.addHandler("singleTypes", localesPropertyHandler);
|
437
|
+
sectionsBuilder.addHandler("collectionTypes", localesPropertyHandler);
|
438
|
+
};
|
439
|
+
const sectionsBuilderService = {
|
440
|
+
localesPropertyHandler,
|
441
|
+
registerLocalesPropertyHandler
|
442
|
+
};
|
443
|
+
const willRegisterPermission = (context) => {
|
444
|
+
const { permission, condition, user } = context;
|
445
|
+
const { subject, properties } = permission;
|
446
|
+
const isSuperAdmin = strapi.service("admin::role").hasSuperAdminRole(user);
|
447
|
+
if (isSuperAdmin) {
|
448
|
+
return;
|
449
|
+
}
|
450
|
+
const { locales: locales2 } = properties || {};
|
451
|
+
const { isLocalizedContentType: isLocalizedContentType2 } = getService("content-types");
|
452
|
+
if (!subject) {
|
453
|
+
return;
|
454
|
+
}
|
455
|
+
const ct = strapi.contentTypes[subject];
|
456
|
+
if (!isLocalizedContentType2(ct)) {
|
457
|
+
return;
|
458
|
+
}
|
459
|
+
if (locales2 === null) {
|
460
|
+
return;
|
461
|
+
}
|
462
|
+
condition.and({
|
463
|
+
locale: {
|
464
|
+
$in: locales2 || []
|
465
|
+
}
|
466
|
+
});
|
467
|
+
};
|
468
|
+
const registerI18nPermissionsHandlers = () => {
|
469
|
+
const { engine } = strapi.service("admin::permission");
|
470
|
+
engine.hooks["before-register.permission"].register(willRegisterPermission);
|
471
|
+
};
|
472
|
+
const engineService = {
|
473
|
+
willRegisterPermission,
|
474
|
+
registerI18nPermissionsHandlers
|
475
|
+
};
|
476
|
+
const permissions = () => ({
|
477
|
+
actions: i18nActionsService,
|
478
|
+
sectionsBuilder: sectionsBuilderService,
|
479
|
+
engine: engineService
|
480
|
+
});
|
481
|
+
const sendDidInitializeEvent = async () => {
|
482
|
+
const { isLocalizedContentType: isLocalizedContentType2 } = getService("content-types");
|
483
|
+
const numberOfContentTypes = fp.reduce(
|
484
|
+
(sum, contentType) => isLocalizedContentType2(contentType) ? sum + 1 : sum,
|
485
|
+
0
|
486
|
+
)(strapi.contentTypes);
|
487
|
+
await strapi.telemetry.send("didInitializeI18n", { groupProperties: { numberOfContentTypes } });
|
488
|
+
};
|
489
|
+
const sendDidUpdateI18nLocalesEvent = async () => {
|
490
|
+
const numberOfLocales = await getService("locales").count();
|
491
|
+
await strapi.telemetry.send("didUpdateI18nLocales", {
|
492
|
+
groupProperties: { numberOfLocales }
|
493
|
+
});
|
494
|
+
};
|
495
|
+
const metrics = () => ({
|
496
|
+
sendDidInitializeEvent,
|
497
|
+
sendDidUpdateI18nLocalesEvent
|
498
|
+
});
|
499
|
+
const syncNonLocalizedAttributes = async (sourceEntry, model) => {
|
500
|
+
const { copyNonLocalizedAttributes: copyNonLocalizedAttributes2 } = getService("content-types");
|
501
|
+
const nonLocalizedAttributes = copyNonLocalizedAttributes2(model, sourceEntry);
|
502
|
+
if (fp.isEmpty(nonLocalizedAttributes)) {
|
503
|
+
return;
|
504
|
+
}
|
505
|
+
const uid = model.uid;
|
506
|
+
const documentId = sourceEntry.documentId;
|
507
|
+
const locale2 = sourceEntry.locale;
|
508
|
+
const status = sourceEntry?.publishedAt ? "published" : "draft";
|
509
|
+
const localeEntriesToUpdate = await strapi.db.query(uid).findMany({
|
510
|
+
where: {
|
511
|
+
documentId,
|
512
|
+
publishedAt: status === "published" ? { $ne: null } : null,
|
513
|
+
locale: { $ne: locale2 }
|
514
|
+
},
|
515
|
+
select: ["locale", "id"]
|
516
|
+
});
|
517
|
+
const entryData = await strapi.documents(uid).omitComponentData(nonLocalizedAttributes);
|
518
|
+
await utils.async.map(localeEntriesToUpdate, async (entry) => {
|
519
|
+
const transformedData = await strapi.documents.utils.transformData(
|
520
|
+
fp.cloneDeep(nonLocalizedAttributes),
|
521
|
+
{
|
522
|
+
uid,
|
523
|
+
status,
|
524
|
+
locale: entry.locale,
|
525
|
+
allowMissingId: true
|
526
|
+
}
|
527
|
+
);
|
528
|
+
const componentData = await strapi.documents(uid).updateComponents(entry, transformedData);
|
529
|
+
await strapi.db.query(uid).update({
|
530
|
+
where: {
|
531
|
+
documentId,
|
532
|
+
publishedAt: status === "published" ? { $ne: null } : null,
|
533
|
+
locale: { $eq: entry.locale }
|
534
|
+
},
|
535
|
+
// The data we send to the update function is the entry data merged with
|
536
|
+
// the updated component data
|
537
|
+
data: Object.assign(fp.cloneDeep(entryData), componentData)
|
538
|
+
});
|
539
|
+
});
|
540
|
+
};
|
541
|
+
const localizations = () => ({
|
542
|
+
syncNonLocalizedAttributes
|
543
|
+
});
|
198
544
|
const isoLocales = [
|
199
545
|
{
|
200
546
|
code: "af",
|
@@ -2588,437 +2934,40 @@ const isoLocales = [
|
|
2588
2934
|
code: "yo-NG",
|
2589
2935
|
name: "Yoruba (Nigeria) (yo-NG)"
|
2590
2936
|
},
|
2591
|
-
{
|
2592
|
-
code: "dje",
|
2593
|
-
name: "Zarma (dje)"
|
2594
|
-
},
|
2595
|
-
{
|
2596
|
-
code: "dje-NE",
|
2597
|
-
name: "Zarma (Niger) (dje-NE)"
|
2598
|
-
},
|
2599
|
-
{
|
2600
|
-
code: "zu",
|
2601
|
-
name: "Zulu (zu)"
|
2602
|
-
},
|
2603
|
-
{
|
2604
|
-
code: "zu-ZA",
|
2605
|
-
name: "Zulu (South Africa) (zu-ZA)"
|
2606
|
-
}
|
2607
|
-
];
|
2608
|
-
const getInitLocale = () => {
|
2609
|
-
const envLocaleCode = process.env.STRAPI_PLUGIN_I18N_INIT_LOCALE_CODE;
|
2610
|
-
if (envLocaleCode) {
|
2611
|
-
const matchingLocale = isoLocales.find(({ code }) => code === envLocaleCode);
|
2612
|
-
if (!matchingLocale) {
|
2613
|
-
throw new Error(
|
2614
|
-
"Unknown locale code provided in the environment variable STRAPI_PLUGIN_I18N_INIT_LOCALE_CODE"
|
2615
|
-
);
|
2616
|
-
}
|
2617
|
-
return { ...matchingLocale };
|
2618
|
-
}
|
2619
|
-
return {
|
2620
|
-
code: "en",
|
2621
|
-
name: "English (en)"
|
2622
|
-
};
|
2623
|
-
};
|
2624
|
-
const DEFAULT_LOCALE = getInitLocale();
|
2625
|
-
const enableContentType = async ({ oldContentTypes, contentTypes: contentTypes2 }) => {
|
2626
|
-
const { isLocalizedContentType: isLocalizedContentType2 } = getService("content-types");
|
2627
|
-
const { getDefaultLocale: getDefaultLocale2 } = getService("locales");
|
2628
|
-
if (!oldContentTypes) {
|
2629
|
-
return;
|
2630
|
-
}
|
2631
|
-
for (const uid in contentTypes2) {
|
2632
|
-
if (!oldContentTypes[uid]) {
|
2633
|
-
continue;
|
2634
|
-
}
|
2635
|
-
const oldContentType = oldContentTypes[uid];
|
2636
|
-
const contentType = contentTypes2[uid];
|
2637
|
-
if (!isLocalizedContentType2(oldContentType) && isLocalizedContentType2(contentType)) {
|
2638
|
-
const defaultLocale = await getDefaultLocale2() || DEFAULT_LOCALE.code;
|
2639
|
-
await strapi.db.query(uid).updateMany({
|
2640
|
-
where: { locale: null },
|
2641
|
-
data: { locale: defaultLocale }
|
2642
|
-
});
|
2643
|
-
}
|
2644
|
-
}
|
2645
|
-
};
|
2646
|
-
const disableContentType = async ({ oldContentTypes, contentTypes: contentTypes2 }) => {
|
2647
|
-
const { isLocalizedContentType: isLocalizedContentType2 } = getService("content-types");
|
2648
|
-
const { getDefaultLocale: getDefaultLocale2 } = getService("locales");
|
2649
|
-
if (!oldContentTypes) {
|
2650
|
-
return;
|
2651
|
-
}
|
2652
|
-
for (const uid in contentTypes2) {
|
2653
|
-
if (!oldContentTypes[uid]) {
|
2654
|
-
continue;
|
2655
|
-
}
|
2656
|
-
const oldContentType = oldContentTypes[uid];
|
2657
|
-
const contentType = contentTypes2[uid];
|
2658
|
-
if (isLocalizedContentType2(oldContentType) && !isLocalizedContentType2(contentType)) {
|
2659
|
-
const defaultLocale = await getDefaultLocale2() || DEFAULT_LOCALE.code;
|
2660
|
-
await Promise.all([
|
2661
|
-
// Delete all entities that are not in the default locale
|
2662
|
-
strapi.db.query(uid).deleteMany({
|
2663
|
-
where: { locale: { $ne: defaultLocale } }
|
2664
|
-
}),
|
2665
|
-
// Set locale to null for the rest
|
2666
|
-
strapi.db.query(uid).updateMany({
|
2667
|
-
where: { locale: { $eq: defaultLocale } },
|
2668
|
-
data: { locale: null }
|
2669
|
-
})
|
2670
|
-
]);
|
2671
|
-
}
|
2672
|
-
}
|
2673
|
-
};
|
2674
|
-
const register = ({ strapi: strapi2 }) => {
|
2675
|
-
extendContentTypes(strapi2);
|
2676
|
-
addContentManagerLocaleMiddleware(strapi2);
|
2677
|
-
addContentTypeSyncHooks(strapi2);
|
2678
|
-
};
|
2679
|
-
const addContentManagerLocaleMiddleware = (strapi2) => {
|
2680
|
-
strapi2.server.router.use("/content-manager/collection-types/:model", (ctx, next) => {
|
2681
|
-
if (ctx.method === "POST" || ctx.method === "PUT") {
|
2682
|
-
return validateLocaleCreation(ctx, next);
|
2683
|
-
}
|
2684
|
-
return next();
|
2685
|
-
});
|
2686
|
-
strapi2.server.router.use("/content-manager/single-types/:model", (ctx, next) => {
|
2687
|
-
if (ctx.method === "POST" || ctx.method === "PUT") {
|
2688
|
-
return validateLocaleCreation(ctx, next);
|
2689
|
-
}
|
2690
|
-
return next();
|
2691
|
-
});
|
2692
|
-
};
|
2693
|
-
const addContentTypeSyncHooks = (strapi2) => {
|
2694
|
-
strapi2.hook("strapi::content-types.beforeSync").register(disableContentType);
|
2695
|
-
strapi2.hook("strapi::content-types.afterSync").register(enableContentType);
|
2696
|
-
};
|
2697
|
-
const extendContentTypes = (strapi2) => {
|
2698
|
-
Object.values(strapi2.contentTypes).forEach((contentType) => {
|
2699
|
-
const { attributes: attributes2 } = contentType;
|
2700
|
-
___default.default.set(attributes2, "locale", {
|
2701
|
-
writable: true,
|
2702
|
-
private: false,
|
2703
|
-
configurable: false,
|
2704
|
-
visible: false,
|
2705
|
-
type: "string"
|
2706
|
-
});
|
2707
|
-
___default.default.set(attributes2, "localizations", {
|
2708
|
-
type: "relation",
|
2709
|
-
relation: "oneToMany",
|
2710
|
-
target: contentType.uid,
|
2711
|
-
writable: false,
|
2712
|
-
private: false,
|
2713
|
-
configurable: false,
|
2714
|
-
visible: false,
|
2715
|
-
joinColumn: {
|
2716
|
-
name: "document_id",
|
2717
|
-
referencedColumn: "document_id",
|
2718
|
-
referencedTable: strapi2.db.metadata.identifiers.getTableName(contentType.collectionName),
|
2719
|
-
// ensure the population will not include the results we already loaded
|
2720
|
-
on({ results }) {
|
2721
|
-
return {
|
2722
|
-
id: {
|
2723
|
-
$notIn: results.map((r) => r.id)
|
2724
|
-
}
|
2725
|
-
};
|
2726
|
-
}
|
2727
|
-
}
|
2728
|
-
});
|
2729
|
-
});
|
2730
|
-
if (strapi2.plugin("graphql")) {
|
2731
|
-
graphqlProvider({ strapi: strapi2 }).register();
|
2732
|
-
}
|
2733
|
-
};
|
2734
|
-
const info = {
|
2735
|
-
singularName: "locale",
|
2736
|
-
pluralName: "locales",
|
2737
|
-
collectionName: "locales",
|
2738
|
-
displayName: "Locale",
|
2739
|
-
description: ""
|
2740
|
-
};
|
2741
|
-
const options = {};
|
2742
|
-
const pluginOptions = {
|
2743
|
-
"content-manager": {
|
2744
|
-
visible: false
|
2745
|
-
},
|
2746
|
-
"content-type-builder": {
|
2747
|
-
visible: false
|
2748
|
-
}
|
2749
|
-
};
|
2750
|
-
const attributes = {
|
2751
|
-
name: {
|
2752
|
-
type: "string",
|
2753
|
-
min: 1,
|
2754
|
-
max: 50,
|
2755
|
-
configurable: false
|
2756
|
-
},
|
2757
|
-
code: {
|
2758
|
-
type: "string",
|
2759
|
-
unique: true,
|
2760
|
-
configurable: false
|
2761
|
-
}
|
2762
|
-
};
|
2763
|
-
const schema = {
|
2764
|
-
info,
|
2765
|
-
options,
|
2766
|
-
pluginOptions,
|
2767
|
-
attributes
|
2768
|
-
};
|
2769
|
-
const locale = {
|
2770
|
-
schema
|
2771
|
-
};
|
2772
|
-
const contentTypes$1 = {
|
2773
|
-
locale
|
2774
|
-
};
|
2775
|
-
const actions = [
|
2776
|
-
{
|
2777
|
-
section: "settings",
|
2778
|
-
category: "Internationalization",
|
2779
|
-
subCategory: "Locales",
|
2780
|
-
pluginName: "i18n",
|
2781
|
-
displayName: "Create",
|
2782
|
-
uid: "locale.create"
|
2937
|
+
{
|
2938
|
+
code: "dje",
|
2939
|
+
name: "Zarma (dje)"
|
2783
2940
|
},
|
2784
2941
|
{
|
2785
|
-
|
2786
|
-
|
2787
|
-
subCategory: "Locales",
|
2788
|
-
pluginName: "i18n",
|
2789
|
-
displayName: "Read",
|
2790
|
-
uid: "locale.read",
|
2791
|
-
aliases: [
|
2792
|
-
{ actionId: "plugin::content-manager.explorer.read", subjects: ["plugin::i18n.locale"] }
|
2793
|
-
]
|
2942
|
+
code: "dje-NE",
|
2943
|
+
name: "Zarma (Niger) (dje-NE)"
|
2794
2944
|
},
|
2795
2945
|
{
|
2796
|
-
|
2797
|
-
|
2798
|
-
subCategory: "Locales",
|
2799
|
-
pluginName: "i18n",
|
2800
|
-
displayName: "Update",
|
2801
|
-
uid: "locale.update"
|
2946
|
+
code: "zu",
|
2947
|
+
name: "Zulu (zu)"
|
2802
2948
|
},
|
2803
2949
|
{
|
2804
|
-
|
2805
|
-
|
2806
|
-
subCategory: "Locales",
|
2807
|
-
pluginName: "i18n",
|
2808
|
-
displayName: "Delete",
|
2809
|
-
uid: "locale.delete"
|
2950
|
+
code: "zu-ZA",
|
2951
|
+
name: "Zulu (South Africa) (zu-ZA)"
|
2810
2952
|
}
|
2811
2953
|
];
|
2812
|
-
const
|
2813
|
-
const
|
2814
|
-
|
2815
|
-
|
2816
|
-
|
2817
|
-
|
2818
|
-
|
2819
|
-
}
|
2820
|
-
if (fp.isArray(applyToProperties) && applyToProperties.includes("locales")) {
|
2821
|
-
return;
|
2822
|
-
}
|
2823
|
-
action.options.applyToProperties = fp.isArray(applyToProperties) ? applyToProperties.concat("locales") : ["locales"];
|
2824
|
-
};
|
2825
|
-
const shouldApplyLocalesPropertyToSubject = ({ property, subject }) => {
|
2826
|
-
if (property === "locales") {
|
2827
|
-
const model = strapi.getModel(subject);
|
2828
|
-
return getService("content-types").isLocalizedContentType(model);
|
2829
|
-
}
|
2830
|
-
return true;
|
2831
|
-
};
|
2832
|
-
const addAllLocalesToPermissions = async (permissions2) => {
|
2833
|
-
const { actionProvider } = strapi.service("admin::permission");
|
2834
|
-
const { find: findAllLocales } = getService("locales");
|
2835
|
-
const allLocales = await findAllLocales();
|
2836
|
-
const allLocalesCode = allLocales.map(fp.prop("code"));
|
2837
|
-
return Promise.all(
|
2838
|
-
permissions2.map(async (permission) => {
|
2839
|
-
const { action, subject } = permission;
|
2840
|
-
const appliesToLocalesProperty = await actionProvider.appliesToProperty(
|
2841
|
-
"locales",
|
2842
|
-
action,
|
2843
|
-
subject
|
2954
|
+
const getInitLocale = () => {
|
2955
|
+
const envLocaleCode = process.env.STRAPI_PLUGIN_I18N_INIT_LOCALE_CODE;
|
2956
|
+
if (envLocaleCode) {
|
2957
|
+
const matchingLocale = isoLocales.find(({ code }) => code === envLocaleCode);
|
2958
|
+
if (!matchingLocale) {
|
2959
|
+
throw new Error(
|
2960
|
+
"Unknown locale code provided in the environment variable STRAPI_PLUGIN_I18N_INIT_LOCALE_CODE"
|
2844
2961
|
);
|
2845
|
-
if (!appliesToLocalesProperty) {
|
2846
|
-
return permission;
|
2847
|
-
}
|
2848
|
-
const oldPermissionProperties = fp.getOr({}, "properties", permission);
|
2849
|
-
return { ...permission, properties: { ...oldPermissionProperties, locales: allLocalesCode } };
|
2850
|
-
})
|
2851
|
-
);
|
2852
|
-
};
|
2853
|
-
const syncSuperAdminPermissionsWithLocales = async () => {
|
2854
|
-
const roleService = strapi.service("admin::role");
|
2855
|
-
const permissionService = strapi.service("admin::permission");
|
2856
|
-
const superAdminRole = await roleService.getSuperAdmin();
|
2857
|
-
if (!superAdminRole) {
|
2858
|
-
return;
|
2859
|
-
}
|
2860
|
-
const superAdminPermissions = await permissionService.findMany({
|
2861
|
-
where: {
|
2862
|
-
role: {
|
2863
|
-
id: superAdminRole.id
|
2864
|
-
}
|
2865
|
-
}
|
2866
|
-
});
|
2867
|
-
const newSuperAdminPermissions = await addAllLocalesToPermissions(superAdminPermissions);
|
2868
|
-
await roleService.assignPermissions(superAdminRole.id, newSuperAdminPermissions);
|
2869
|
-
};
|
2870
|
-
const registerI18nActions = async () => {
|
2871
|
-
const { actionProvider } = strapi.service("admin::permission");
|
2872
|
-
await actionProvider.registerMany(actions);
|
2873
|
-
};
|
2874
|
-
const registerI18nActionsHooks = () => {
|
2875
|
-
const { actionProvider } = strapi.service("admin::permission");
|
2876
|
-
const { hooks } = strapi.service("admin::role");
|
2877
|
-
actionProvider.hooks.appliesPropertyToSubject.register(shouldApplyLocalesPropertyToSubject);
|
2878
|
-
hooks.willResetSuperAdminPermissions.register(addAllLocalesToPermissions);
|
2879
|
-
};
|
2880
|
-
const updateActionsProperties = () => {
|
2881
|
-
const { actionProvider } = strapi.service("admin::permission");
|
2882
|
-
actionProvider.hooks.willRegister.register(addLocalesPropertyIfNeeded);
|
2883
|
-
actionProvider.values().forEach((action) => addLocalesPropertyIfNeeded({ value: action }));
|
2884
|
-
};
|
2885
|
-
const i18nActionsService = {
|
2886
|
-
actions,
|
2887
|
-
registerI18nActions,
|
2888
|
-
registerI18nActionsHooks,
|
2889
|
-
updateActionsProperties,
|
2890
|
-
syncSuperAdminPermissionsWithLocales
|
2891
|
-
};
|
2892
|
-
const localesPropertyHandler = async ({ action, section }) => {
|
2893
|
-
const { actionProvider } = strapi.service("admin::permission");
|
2894
|
-
const locales2 = await getService("locales").find();
|
2895
|
-
if (fp.isEmpty(locales2)) {
|
2896
|
-
return;
|
2897
|
-
}
|
2898
|
-
for (const subject of section.subjects) {
|
2899
|
-
const applies = await actionProvider.appliesToProperty("locales", action.actionId, subject.uid);
|
2900
|
-
const hasLocalesProperty = subject.properties.find(
|
2901
|
-
(property) => property.value === "locales"
|
2902
|
-
);
|
2903
|
-
if (applies && !hasLocalesProperty) {
|
2904
|
-
subject.properties.push({
|
2905
|
-
label: "Locales",
|
2906
|
-
value: "locales",
|
2907
|
-
children: locales2.map(({ name, code }) => ({ label: name || code, value: code }))
|
2908
|
-
});
|
2909
|
-
}
|
2910
|
-
}
|
2911
|
-
};
|
2912
|
-
const registerLocalesPropertyHandler = () => {
|
2913
|
-
const { sectionsBuilder } = strapi.service("admin::permission");
|
2914
|
-
sectionsBuilder.addHandler("singleTypes", localesPropertyHandler);
|
2915
|
-
sectionsBuilder.addHandler("collectionTypes", localesPropertyHandler);
|
2916
|
-
};
|
2917
|
-
const sectionsBuilderService = {
|
2918
|
-
localesPropertyHandler,
|
2919
|
-
registerLocalesPropertyHandler
|
2920
|
-
};
|
2921
|
-
const willRegisterPermission = (context) => {
|
2922
|
-
const { permission, condition, user } = context;
|
2923
|
-
const { subject, properties } = permission;
|
2924
|
-
const isSuperAdmin = strapi.service("admin::role").hasSuperAdminRole(user);
|
2925
|
-
if (isSuperAdmin) {
|
2926
|
-
return;
|
2927
|
-
}
|
2928
|
-
const { locales: locales2 } = properties || {};
|
2929
|
-
const { isLocalizedContentType: isLocalizedContentType2 } = getService("content-types");
|
2930
|
-
if (!subject) {
|
2931
|
-
return;
|
2932
|
-
}
|
2933
|
-
const ct = strapi.contentTypes[subject];
|
2934
|
-
if (!isLocalizedContentType2(ct)) {
|
2935
|
-
return;
|
2936
|
-
}
|
2937
|
-
if (locales2 === null) {
|
2938
|
-
return;
|
2939
|
-
}
|
2940
|
-
condition.and({
|
2941
|
-
locale: {
|
2942
|
-
$in: locales2 || []
|
2943
2962
|
}
|
2944
|
-
|
2945
|
-
};
|
2946
|
-
const registerI18nPermissionsHandlers = () => {
|
2947
|
-
const { engine } = strapi.service("admin::permission");
|
2948
|
-
engine.hooks["before-register.permission"].register(willRegisterPermission);
|
2949
|
-
};
|
2950
|
-
const engineService = {
|
2951
|
-
willRegisterPermission,
|
2952
|
-
registerI18nPermissionsHandlers
|
2953
|
-
};
|
2954
|
-
const permissions = () => ({
|
2955
|
-
actions: i18nActionsService,
|
2956
|
-
sectionsBuilder: sectionsBuilderService,
|
2957
|
-
engine: engineService
|
2958
|
-
});
|
2959
|
-
const sendDidInitializeEvent = async () => {
|
2960
|
-
const { isLocalizedContentType: isLocalizedContentType2 } = getService("content-types");
|
2961
|
-
const numberOfContentTypes = fp.reduce(
|
2962
|
-
(sum, contentType) => isLocalizedContentType2(contentType) ? sum + 1 : sum,
|
2963
|
-
0
|
2964
|
-
)(strapi.contentTypes);
|
2965
|
-
await strapi.telemetry.send("didInitializeI18n", { groupProperties: { numberOfContentTypes } });
|
2966
|
-
};
|
2967
|
-
const sendDidUpdateI18nLocalesEvent = async () => {
|
2968
|
-
const numberOfLocales = await getService("locales").count();
|
2969
|
-
await strapi.telemetry.send("didUpdateI18nLocales", {
|
2970
|
-
groupProperties: { numberOfLocales }
|
2971
|
-
});
|
2972
|
-
};
|
2973
|
-
const metrics = () => ({
|
2974
|
-
sendDidInitializeEvent,
|
2975
|
-
sendDidUpdateI18nLocalesEvent
|
2976
|
-
});
|
2977
|
-
const syncNonLocalizedAttributes = async (sourceEntry, model) => {
|
2978
|
-
const { copyNonLocalizedAttributes: copyNonLocalizedAttributes2 } = getService("content-types");
|
2979
|
-
const nonLocalizedAttributes = copyNonLocalizedAttributes2(model, sourceEntry);
|
2980
|
-
if (fp.isEmpty(nonLocalizedAttributes)) {
|
2981
|
-
return;
|
2963
|
+
return { ...matchingLocale };
|
2982
2964
|
}
|
2983
|
-
|
2984
|
-
|
2985
|
-
|
2986
|
-
|
2987
|
-
const localeEntriesToUpdate = await strapi.db.query(uid).findMany({
|
2988
|
-
where: {
|
2989
|
-
documentId,
|
2990
|
-
publishedAt: status === "published" ? { $ne: null } : null,
|
2991
|
-
locale: { $ne: locale2 }
|
2992
|
-
},
|
2993
|
-
select: ["locale", "id"]
|
2994
|
-
});
|
2995
|
-
const entryData = await strapi.documents(uid).omitComponentData(nonLocalizedAttributes);
|
2996
|
-
await utils.async.map(localeEntriesToUpdate, async (entry) => {
|
2997
|
-
const transformedData = await strapi.documents.utils.transformData(
|
2998
|
-
fp.cloneDeep(nonLocalizedAttributes),
|
2999
|
-
{
|
3000
|
-
uid,
|
3001
|
-
status,
|
3002
|
-
locale: entry.locale,
|
3003
|
-
allowMissingId: true
|
3004
|
-
}
|
3005
|
-
);
|
3006
|
-
const componentData = await strapi.documents(uid).updateComponents(entry, transformedData);
|
3007
|
-
await strapi.db.query(uid).update({
|
3008
|
-
where: {
|
3009
|
-
documentId,
|
3010
|
-
publishedAt: status === "published" ? { $ne: null } : null,
|
3011
|
-
locale: { $eq: entry.locale }
|
3012
|
-
},
|
3013
|
-
// The data we send to the update function is the entry data merged with
|
3014
|
-
// the updated component data
|
3015
|
-
data: Object.assign(fp.cloneDeep(entryData), componentData)
|
3016
|
-
});
|
3017
|
-
});
|
2965
|
+
return {
|
2966
|
+
code: "en",
|
2967
|
+
name: "English (en)"
|
2968
|
+
};
|
3018
2969
|
};
|
3019
|
-
const
|
3020
|
-
syncNonLocalizedAttributes
|
3021
|
-
});
|
2970
|
+
const DEFAULT_LOCALE = getInitLocale();
|
3022
2971
|
const find = (params = {}) => strapi.db.query("plugin::i18n.locale").findMany({ where: params });
|
3023
2972
|
const findById = (id) => strapi.db.query("plugin::i18n.locale").findOne({ where: { id } });
|
3024
2973
|
const findByCode = (code) => strapi.db.query("plugin::i18n.locale").findOne({ where: { code } });
|
@@ -3210,11 +3159,32 @@ const contentTypes = () => ({
|
|
3210
3159
|
fillNonLocalizedAttributes,
|
3211
3160
|
getNestedPopulateOfNonLocalizedAttributes
|
3212
3161
|
});
|
3162
|
+
const LOCALIZATION_FIELDS = ["locale", "localizations"];
|
3163
|
+
const sanitize = ({ strapi: strapi2 }) => {
|
3164
|
+
const { isLocalizedContentType: isLocalizedContentType2 } = getService("content-types");
|
3165
|
+
const sanitizeLocalizationFields = fp.curry(
|
3166
|
+
(schema2, entity) => utils.traverseEntity(
|
3167
|
+
({ key, schema: schema22 }, { remove }) => {
|
3168
|
+
const isLocalized = isLocalizedContentType2(schema22);
|
3169
|
+
const isLocalizationField = LOCALIZATION_FIELDS.includes(key);
|
3170
|
+
if (!isLocalized && isLocalizationField) {
|
3171
|
+
remove(key);
|
3172
|
+
}
|
3173
|
+
},
|
3174
|
+
{ schema: schema2, getModel: strapi2.getModel.bind(strapi2) },
|
3175
|
+
entity
|
3176
|
+
)
|
3177
|
+
);
|
3178
|
+
return {
|
3179
|
+
sanitizeLocalizationFields
|
3180
|
+
};
|
3181
|
+
};
|
3213
3182
|
const services = {
|
3214
3183
|
permissions,
|
3215
3184
|
metrics,
|
3216
3185
|
localizations,
|
3217
3186
|
locales,
|
3187
|
+
sanitize,
|
3218
3188
|
"iso-locales": isoLocalesService,
|
3219
3189
|
"content-types": contentTypes
|
3220
3190
|
};
|