uploadMathCha.js 2.04 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('math', (error) => {
    // math 폴더 없으면 생성
    if (error) {
        fs.mkdirSync('math');
    }
})

const upload = multer({
    storage: multer.diskStorage({
        destination(req, file, cb) {
            cb(null, 'math/');
        },
        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('math'),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 math = await Tikz.findOne({where:{qno, typeSol, typeQue, creator}});
        if(math){
            console.log(math);
            math.mathcharFileName = filename;
            await math.save();

            res.status(200).json({message: '수정되었습니다.'});
        }else{
            math = new Tikz();
            math.qno = qno;
            math.typeSol = typeSol;
            math.typeQue = typeQue;
            math.creator = creator;
            math.mathcharFileName = filename;
            await math.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;