uploadHtml.js
2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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;