uploadHtml.js 2.03 KB
const express = require('express');
const multer = require('multer');
const fs = require('fs');
const path = require('path');
const {Tikz} = require('../models');

const router = express.Router();

fs.readdir('html', (error) => {
    // html 폴더 없으면 생성
    if (error) {
        fs.mkdirSync('html');
    }
})

const upload = multer({
    storage: multer.diskStorage({
        destination(req, file, cb) {
            cb(null, 'html/');
        },
        filename(req, file, cb) {
            const ext = path.extname(file.originalname);
            cb(null, path.basename(file.originalname, ext) + Date.now() + ext);
        },
    }),
    limits: { fileSize: 5 * 1024 * 1024 },
})
// 이미지 업로드를 위한 API
// upload의 single 메서드는 하나의 이미지를 업로드할 때 사용
router.post('/', upload.single('html'),async (req, res)=> {
    try{
        const {qno, typeSol, typeQue, creator} = req.body;
        const {filename} = req.file;
        console.log(filename);
        console.log(qno);
        if(qno==null || filename==null){
            return res.status(500).json({message:"문항번호와 파일명을 확인해 주세요."});
        }
        //데이터 베이스 저장
   

        let tikz = await Tikz.findOne({where:{qno, typeSol, typeQue, creator}});
        if(tikz){
            console.log(tikz);
            tikz.htmlFileName = filename;
            await tikz.save();

            res.status(200).json({message: '수정되었습니다.'});
        }else{
            tikz = new Tikz();
            tikz.qno = qno;
            tikz.typeSol = typeSol;
            tikz.typeQue = typeQue;
            tikz.creator = creator;
            tikz.htmlFileName = filename;
            await tikz.save();
            res.status(200).json({message: '저장되었습니다.' });
        }

    }catch(e){
        console.log(e);
        res.status(500).json({message:"잠시후 다시 저장해 주세요"});
    }
    //res.json({ url : `http://localhost:5000/upload/${req.file.filename}`});
})

module.exports = router;