filestore.js 653 B

1234567891011121314151617181920212223
  1. 'use strict';
  2. const Controller = require('egg').Controller;
  3. class FilestoreController extends Controller {
  4. async upload() {
  5. const res = await this.ctx.service.filestore.upload(this.ctx.params);
  6. this.ctx.body = res;
  7. }
  8. async delete() {
  9. const res = await this.ctx.service.filestore.delete(this.ctx.request.body);
  10. this.ctx.body = res;
  11. }
  12. async query() {
  13. const res = await this.ctx.service.filestore.query(this.ctx.query);
  14. this.ctx.body = res;
  15. }
  16. async filesDownload() {
  17. const res = await this.ctx.service.filestore.filesDownload(this.ctx.query);
  18. this.ctx.body = res;
  19. }
  20. }
  21. module.exports = FilestoreController;