Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/wincloud_gateway/node_modules/strapi-plugin-content-manager/services/ drwxr-xr-x | |
| Viewing file: Select action/file-type: 'use strict';
const _ = require('lodash');
const slugify = require('@sindresorhus/slugify');
module.exports = {
async generateUIDField({ contentTypeUID, field, data }) {
const contentType = strapi.contentTypes[contentTypeUID];
const { attributes } = contentType;
const { targetField, default: defaultValue, options } = attributes[field];
const targetValue = _.get(data, targetField);
if (!_.isEmpty(targetValue)) {
return this.findUniqueUID({
contentTypeUID,
field,
value: slugify(targetValue, options),
});
}
return this.findUniqueUID({
contentTypeUID,
field,
value: slugify(defaultValue || contentType.modelName, options),
});
},
async findUniqueUID({ contentTypeUID, field, value }) {
const query = strapi.db.query(contentTypeUID);
const possibleColisions = await query
.find({
[`${field}_contains`]: value,
_limit: -1,
})
.then(results => results.map(result => result[field]));
if (possibleColisions.length === 0) {
return value;
}
let i = 1;
let tmpUId = `${value}-${i}`;
while (possibleColisions.includes(tmpUId)) {
i += 1;
tmpUId = `${value}-${i}`;
}
return tmpUId;
},
async checkUIDAvailability({ contentTypeUID, field, value }) {
const query = strapi.db.query(contentTypeUID);
const count = await query.count({
[field]: value,
});
if (count > 0) return false;
return true;
},
};
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.005 ]-- |