-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
102 lines (86 loc) · 2.52 KB
/
index.js
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
const express = require('express')
const bodyParser = require('body-parser')
const multiparty = require('multiparty');
const fs = require('fs');
const { argv } = require('process');
const { RSA_NO_PADDING } = require('constants');
const app = express()
const port = 3000
app.use('/public', express.static(__dirname+"/public"));
app.use(bodyParser.urlencoded({ extended: true }));
app.get('/', (req, res) => {
res.sendFile(__dirname+"/index.html");
});
app.get('/initend', (req, res) => {
res.sendStatus(200);
console.log("clear init.txt");
deleteInit();
});
app.get("/clearcommand", (req,res) => {
res.sendStatus(200);
console.log("clear command.txt");
deleteCommand();
});
// var end = false;
// app.post("/printcolor", (req,res)=>{
// let form = new multiparty.Form();
// if(end==false){
// form.parse(req, function (err, fields, files) {
// Object.keys(fields).forEach(function (name) {
// console.log(name);
// appendCommand(name);
// });
// });
// end = true;
// }
// console.log("here");
// var filename = "./public/" + String(process.argv[2] + ".txt");
// var lines = require('fs').readFileSync(filename, 'utf-8')
// .split('\n')
// .filter(Boolean);
// })
app.listen(port, () => {
console.log(`listening at http://localhost:${port}`);
});
function deleteInit(){
fs.writeFile("./public/init.txt","",function(err){
if(err){
console.log("Error of index.js deleteInit");
}
});
}
function deleteCommand() {
var lines = require('fs').readFileSync('./public/command.txt', 'utf-8')
.split('\n')
.filter(Boolean);
// console.log(lines);
if (lines.length == 1) {
emptyCommand();
} else if(lines.length != 0){
for (var i = 1; i < lines.length; i++) {
if (i == 1) {
emptyCommand();
}
appendCommand(lines[i])
}
}
}
function emptyCommand() {
fs.writeFileSync("./public/command.txt", "", function (err) {
if (err) {
console.log("Error of clearing command.txt");
}
});
}
function appendCommand(a) {
fs.appendFileSync("./public/command.txt", a, function (err) {
if (err) {
console.log("Error of index.js: appendCommnad");
}
});
fs.appendFileSync("./public/command.txt", "\n", function (err) {
if (err) {
console.log("Error of index.js: appendCommand");
}
});
}