Jamie Howard c8c1678006 feat(upload): configure the view
test: e2e
chore: naming
2022-10-31 17:21:51 +00:00

102 lines
2.3 KiB
JavaScript

'use strict';
const { getService } = require('./utils');
const { ALLOWED_SORT_STRINGS } = require('./constants');
module.exports = async ({ strapi }) => {
const Stores = new Map([
[
'settings',
{
sizeOptimization: true,
responsiveDimensions: true,
autoOrientation: false,
},
],
[
'view_configuration',
{
pageSize: 10,
sort: ALLOWED_SORT_STRINGS[0],
},
],
]);
for (const [key, defaultValue] of Stores) {
// set plugin store
const configurator = strapi.store({ type: 'plugin', name: 'upload', key });
const config = await configurator.get();
if (
config &&
Object.keys(defaultValue).every((key) => Object.prototype.hasOwnProperty.call(config, key))
) {
continue;
}
// if provider config does not exist or does not have all the required keys
// set to the default value
await configurator.set({
value: defaultValue,
});
}
await registerPermissionActions();
await getService('metrics').registerCron();
};
const registerPermissionActions = async () => {
const actions = [
{
section: 'plugins',
displayName: 'Access the Media Library',
uid: 'read',
pluginName: 'upload',
},
{
section: 'plugins',
displayName: 'Create (upload)',
uid: 'assets.create',
subCategory: 'assets',
pluginName: 'upload',
},
{
section: 'plugins',
displayName: 'Update (crop, details, replace) + delete',
uid: 'assets.update',
subCategory: 'assets',
pluginName: 'upload',
},
{
section: 'plugins',
displayName: 'Download',
uid: 'assets.download',
subCategory: 'assets',
pluginName: 'upload',
},
{
section: 'plugins',
displayName: 'Copy link',
uid: 'assets.copy-link',
subCategory: 'assets',
pluginName: 'upload',
},
{
section: 'plugins',
displayName: 'Configure view',
uid: 'configure-view',
pluginName: 'upload',
},
{
section: 'settings',
displayName: 'Access the Media Library settings page',
uid: 'settings.read',
category: 'media library',
pluginName: 'upload',
},
];
await strapi.admin.services.permission.actionProvider.registerMany(actions);
};