| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- const loggerFactory = require('@alias/logger');
- const logger = loggerFactory('growi:routes:apiv3:export');
- const fs = require('fs');
- const express = require('express');
- const router = express.Router();
- /**
- * @swagger
- * tags:
- * name: Export
- */
- /**
- * @swagger
- *
- * components:
- * schemas:
- * ExportStatus:
- * description: ExportStatus
- * type: object
- * properties:
- * zipFileStats:
- * type: array
- * items:
- * type: object
- * description: the property of each file
- * progressList:
- * type: array
- * items:
- * type: object
- * description: progress data for each exporting collections
- * isExporting:
- * type: boolean
- * description: whether the current exporting job exists or not
- */
- module.exports = (crowi) => {
- const accessTokenParser = require('../../middlewares/access-token-parser')(crowi);
- const loginRequired = require('../../middlewares/login-required')(crowi);
- const adminRequired = require('../../middlewares/admin-required')(crowi);
- const csrf = require('../../middlewares/csrf')(crowi);
- const { exportService } = crowi;
- this.adminEvent = crowi.event('admin');
- // setup event
- this.adminEvent.on('onProgressForExport', (data) => {
- crowi.getIo().sockets.emit('admin:onProgressForExport', data);
- });
- this.adminEvent.on('onStartZippingForExport', (data) => {
- crowi.getIo().sockets.emit('admin:onStartZippingForExport', data);
- });
- this.adminEvent.on('onTerminateForExport', (data) => {
- crowi.getIo().sockets.emit('admin:onTerminateForExport', data);
- });
- /**
- * @swagger
- *
- * /export/status:
- * get:
- * tags: [Export]
- * operationId: getExportStatus
- * summary: /export/status
- * description: get properties of stored zip files for export
- * responses:
- * 200:
- * description: the zip file statuses
- * content:
- * application/json:
- * schema:
- * properties:
- * status:
- * $ref: '#/components/schemas/ExportStatus'
- */
- router.get('/status', accessTokenParser, loginRequired, adminRequired, async(req, res) => {
- const status = await exportService.getStatus();
- // TODO: use res.apiv3
- return res.json({
- ok: true,
- status,
- });
- });
- /**
- * @swagger
- *
- * /export:
- * post:
- * tags: [Export]
- * operationId: createExport
- * summary: /export
- * description: generate zipped jsons for collections
- * responses:
- * 200:
- * description: a zip file is generated
- * content:
- * application/json:
- * schema:
- * properties:
- * status:
- * $ref: '#/components/schemas/ExportStatus'
- */
- router.post('/', accessTokenParser, loginRequired, adminRequired, csrf, async(req, res) => {
- // TODO: add express validator
- try {
- const { collections } = req.body;
- exportService.export(collections);
- // TODO: use res.apiv3
- return res.status(200).json({
- ok: true,
- });
- }
- catch (err) {
- // TODO: use ApiV3Error
- logger.error(err);
- return res.status(500).send({ status: 'ERROR' });
- }
- });
- /**
- * @swagger
- *
- * /export/{fileName}:
- * delete:
- * tags: [Export]
- * operationId: deleteExport
- * summary: /export/{fileName}
- * description: delete the file
- * parameters:
- * - name: fileName
- * in: path
- * description: the file name of zip file
- * required: true
- * schema:
- * type: string
- * responses:
- * 200:
- * description: the file is deleted
- * content:
- * application/json:
- * schema:
- * type: object
- */
- router.delete('/:fileName', accessTokenParser, loginRequired, adminRequired, csrf, async(req, res) => {
- // TODO: add express validator
- const { fileName } = req.params;
- try {
- const zipFile = exportService.getFile(fileName);
- fs.unlinkSync(zipFile);
- // TODO: use res.apiv3
- return res.status(200).send({ ok: true });
- }
- catch (err) {
- // TODO: use ApiV3Error
- logger.error(err);
- return res.status(500).send({ ok: false });
- }
- });
- return router;
- };
|