mirror of
https://github.com/strapi/strapi.git
synced 2025-08-19 06:08:50 +00:00
Get and update configs
This commit is contained in:
parent
ab93e7113f
commit
f12b0503ff
@ -41,14 +41,7 @@ module.exports = async cb => {
|
||||
const value = _.assign({}, provider, {enabled: true});
|
||||
|
||||
await pluginStore.set({key: 'provider', value});
|
||||
|
||||
strapi.plugins.upload.config.provider = provider;
|
||||
} else {
|
||||
strapi.plugins.upload.config.provider = _.find(strapi.plugins.upload.config.providers, {provider: config.provider});
|
||||
_.assign(strapi.plugins.upload.config.provider, config);
|
||||
}
|
||||
|
||||
strapi.plugins.upload.config.provider.init(strapi);
|
||||
} catch (err) {
|
||||
strapi.log.error(`Can't laod ${config.provider} upload provider`);
|
||||
strapi.log.warn(`Please install strapi-upload-${config.provider} --save`);
|
||||
|
@ -8,6 +8,22 @@
|
||||
"policies": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"method": "GET",
|
||||
"path": "/settings/:environment",
|
||||
"handler": "Upload.getSettings",
|
||||
"config": {
|
||||
"policies": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"method": "PUT",
|
||||
"path": "/settings/:environment",
|
||||
"handler": "Upload.updateSettings",
|
||||
"config": {
|
||||
"policies": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"method": "GET",
|
||||
"path": "/files",
|
||||
|
@ -15,11 +15,21 @@ module.exports = {
|
||||
*/
|
||||
|
||||
index: async (ctx) => {
|
||||
const config = await strapi.store({
|
||||
environment: strapi.config.environment,
|
||||
type: 'plugin',
|
||||
name: 'upload'
|
||||
}).get({key: 'provider'});
|
||||
|
||||
if (!config.enabled) {
|
||||
return ctx.badRequest(null, ctx.request.admin ? [{ messages: [{ id: 'Upload.status.disabled' }] }] : 'Upload is disabled!');
|
||||
}
|
||||
|
||||
const Service = strapi.plugins['upload'].services.upload;
|
||||
|
||||
const files = await Service.buffurize(ctx.request.body.files);
|
||||
|
||||
await Service.upload(files);
|
||||
await Service.upload(files, config);
|
||||
|
||||
// Send 200 `ok`
|
||||
ctx.send(files.map((file) => {
|
||||
@ -34,6 +44,29 @@ module.exports = {
|
||||
}));
|
||||
},
|
||||
|
||||
getSettings: async (ctx) => {
|
||||
const config = await strapi.store({
|
||||
environment: ctx.params.environment,
|
||||
type: 'plugin',
|
||||
name: 'upload'
|
||||
}).get({key: 'provider'});
|
||||
|
||||
ctx.send({
|
||||
providers: strapi.plugins.upload.config.providers,
|
||||
config
|
||||
});
|
||||
},
|
||||
|
||||
updateSettings: async (ctx) => {
|
||||
await strapi.store({
|
||||
environment: ctx.params.environment,
|
||||
type: 'plugin',
|
||||
name: 'upload'
|
||||
}).get({key: 'provider'});
|
||||
|
||||
ctx.send({ok: true});
|
||||
},
|
||||
|
||||
find: async (ctx) => {
|
||||
const data = await strapi.plugins['upload'].services.upload.fetchAll(ctx.query);
|
||||
|
||||
@ -54,7 +87,13 @@ module.exports = {
|
||||
},
|
||||
|
||||
destroy: async (ctx, next) => {
|
||||
const data = await strapi.plugins['upload'].services.upload.remove(ctx.params);
|
||||
const config = await strapi.store({
|
||||
environment: strapi.config.environment,
|
||||
type: 'plugin',
|
||||
name: 'upload'
|
||||
}).get({key: 'provider'});
|
||||
|
||||
const data = await strapi.plugins['upload'].services.upload.remove(ctx.params, config);
|
||||
|
||||
// Send 200 `ok`
|
||||
ctx.send(data);
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "strapi-plugin-upload",
|
||||
"version": "3.0.0-alpha.10.1",
|
||||
"version": "3.0.0-alpha.10.2",
|
||||
"description": "This is the description of the plugin.",
|
||||
"strapi": {
|
||||
"name": "upload",
|
||||
@ -27,7 +27,7 @@
|
||||
"uuid": "^3.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"strapi-helper-plugin": "3.0.0-alpha.10.1"
|
||||
"strapi-helper-plugin": "3.0.0-alpha.10.2"
|
||||
},
|
||||
"author": {
|
||||
"name": "A Strapi developer",
|
||||
|
@ -39,10 +39,14 @@ module.exports = {
|
||||
);
|
||||
},
|
||||
|
||||
upload: (files) => {
|
||||
upload: async (files, config) => {
|
||||
const provider = _.cloneDeep(_.find(strapi.plugins.upload.config.providers, {provider: config.provider}));
|
||||
_.assign(provider, config);
|
||||
const actions = provider.init(strapi, config);
|
||||
|
||||
return Promise.all(
|
||||
files.map(async file => {
|
||||
await strapi.plugins.upload.services.provider.upload(file);
|
||||
await actions.upload(file);
|
||||
|
||||
delete file.buffer;
|
||||
|
||||
@ -86,10 +90,14 @@ module.exports = {
|
||||
return await strapi.query('file', 'upload').count();
|
||||
},
|
||||
|
||||
remove: async params => {
|
||||
remove: async (params, config) => {
|
||||
const file = await strapi.plugins['upload'].services.upload.fetch(params);
|
||||
|
||||
await strapi.plugins.upload.services.provider.delete(file);
|
||||
const provider = _.cloneDeep(_.find(strapi.plugins.upload.config.providers, {provider: config.provider}));
|
||||
_.assign(provider, config);
|
||||
const actions = provider.init(strapi, config);
|
||||
|
||||
await actions.delete(file);
|
||||
|
||||
// Use Content Manager business logic to handle relation.
|
||||
if (strapi.plugins['content-manager']) {
|
||||
|
@ -12,8 +12,8 @@ const path = require('path');
|
||||
module.exports = {
|
||||
provider: 'local',
|
||||
name: 'Local server',
|
||||
init: (strapi) => {
|
||||
strapi.plugins.upload.services.provider = {
|
||||
init: (strapi, config) => {
|
||||
return {
|
||||
upload: (file) => {
|
||||
return new Promise((resolve, reject) => {
|
||||
fs.writeFile(path.join(strapi.config.appPath, 'public', `uploads/${file.hash}.${file.ext}`), file.buffer, (err) => {
|
||||
|
@ -48,8 +48,8 @@ module.exports = {
|
||||
type: 'text'
|
||||
}
|
||||
},
|
||||
init: (strapi) => {
|
||||
strapi.plugins.upload.services.provider = {
|
||||
init: (strapi, config) => {
|
||||
return {
|
||||
upload: (buffers) => {
|
||||
|
||||
},
|
||||
|
@ -1,10 +1,12 @@
|
||||
{
|
||||
"name": "strapi-upload-local",
|
||||
"name": "strapi-upload-s3",
|
||||
"version": "3.0.0-alpha.10.2",
|
||||
"description": "Local provider for strapi upload",
|
||||
"description": "AWS S3 provider for strapi upload",
|
||||
"homepage": "http://strapi.io",
|
||||
"keywords": [
|
||||
"upload",
|
||||
"aws",
|
||||
"s3",
|
||||
"strapi"
|
||||
],
|
||||
"directories": {
|
||||
|
Loading…
x
Reference in New Issue
Block a user