| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- const loggerFactory = require('@alias/logger');
- const logger = loggerFactory('growi:routes:apiv3:export');
- const path = require('path');
- const fs = require('fs');
- const express = require('express');
- const router = express.Router();
- /**
- * @swagger
- * tags:
- * name: Export
- */
- module.exports = (crowi) => {
- const accessTokenParser = require('../../middleware/access-token-parser')(crowi);
- const loginRequired = require('../../middleware/login-required')(crowi);
- const adminRequired = require('../../middleware/admin-required')(crowi);
- const csrf = require('../../middleware/csrf')(crowi);
- const { growiBridgeService, exportService } = crowi;
- /**
- * @swagger
- *
- * /export/status:
- * get:
- * tags: [Export]
- * description: get properties of stored zip files for export
- * responses:
- * 200:
- * description: the zip file statuses
- * content:
- * application/json:
- * schema:
- * properties:
- * zipFileStats:
- * type: array
- * items:
- * type: object
- * description: the property of each file
- */
- router.get('/status', accessTokenParser, loginRequired, adminRequired, async(req, res) => {
- const zipFileStats = await exportService.getStatus();
- // TODO: use res.apiv3
- return res.json({ ok: true, zipFileStats });
- });
- /**
- * @swagger
- *
- * /export:
- * post:
- * tags: [Export]
- * description: generate zipped jsons for collections
- * responses:
- * 200:
- * description: a zip file is generated
- * content:
- * application/json:
- * schema:
- * properties:
- * zipFileStat:
- * type: object
- * description: the property of the zip file
- */
- router.post('/', accessTokenParser, loginRequired, adminRequired, csrf, async(req, res) => {
- // TODO: add express validator
- try {
- const { collections } = req.body;
- // get model for collection
- const models = collections.map(collectionName => growiBridgeService.getModelFromCollectionName(collectionName));
- const [metaJson, jsonFiles] = await Promise.all([
- exportService.createMetaJson(),
- exportService.exportMultipleCollectionsToJsons(models),
- ]);
- // zip json
- const configs = jsonFiles.map((jsonFile) => { return { from: jsonFile, as: path.basename(jsonFile) } });
- // add meta.json in zip
- configs.push({ from: metaJson, as: path.basename(metaJson) });
- // exec zip
- const zipFile = await exportService.zipFiles(configs);
- // get stats for the zip file
- const zipFileStat = await growiBridgeService.parseZipFile(zipFile);
- // TODO: use res.apiv3
- return res.status(200).json({
- ok: true,
- zipFileStat,
- });
- }
- catch (err) {
- // TODO: use ApiV3Error
- logger.error(err);
- return res.status(500).send({ status: 'ERROR' });
- }
- });
- /**
- * @swagger
- *
- * /export/{fileName}:
- * delete:
- * tags: [Export]
- * 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;
- };
|