-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
261 lines (255 loc) · 7.91 KB
/
main.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
var http = require("http");
var fs = require("fs");
var url = require("url");
var qs = require("querystring");
var template = require("./lib/template.js");
var path = require("path");
var sanitizeHtml = require("sanitize-html");
var cookie = require("cookie");
function authIsOwner(request, response) {
var isOwner = false;
var cookies = {};
if (request.headers.cookie) {
cookies = cookie.parse(request.headers.cookie);
}
if (
cookies.email === "[email protected]" &&
cookies.password === "111111"
) {
isOwner = true;
}
return isOwner;
}
function authStatusUI(request, response) {
var authStatusUI = "<a href='/login'>login</a>";
if ((isOwner = authIsOwner(request, response))) {
authStatusUI = "<a href='/logout_process'>logout</a>";
}
return authStatusUI;
}
var app = http.createServer(function(request, response) {
var _url = request.url;
var queryData = url.parse(_url, true).query;
var pathname = url.parse(_url, true).pathname;
if (pathname === "/") {
if (queryData.id === undefined) {
fs.readdir("./data", function(error, filelist) {
var title = "Welcome";
var description = "Hello, Node.js";
var list = template.list(filelist);
var html = template.HTML(
title,
list,
`<h2>${title}</h2>${description}`,
`<a href="/create">create</a>`,
authStatusUI(request, response)
);
response.writeHead(200);
response.end(html);
});
} else {
fs.readdir("./data", function(error, filelist) {
var filteredId = path.parse(queryData.id).base;
fs.readFile(`data/${filteredId}`, "utf8", function(err, description) {
var title = queryData.id;
var sanitizedTitle = sanitizeHtml(title);
var sanitizedDescription = sanitizeHtml(description, {
allowedTags: ["h1"]
});
var list = template.list(filelist);
var html = template.HTML(
sanitizedTitle,
list,
`<h2>${sanitizedTitle}</h2>${sanitizedDescription}`,
` <a href="/create">create</a>
<a href="/update?id=${sanitizedTitle}">update</a>
<form action="delete_process" method="post">
<input type="hidden" name="id" value="${sanitizedTitle}">
<input type="submit" value="delete">
</form>`,
authStatusUI(request, response)
);
response.writeHead(200);
response.end(html);
});
});
}
} else if (pathname === "/create") {
if (authIsOwner(request, response) === false) {
response.end("Login required!!");
return false;
}
fs.readdir("./data", function(error, filelist) {
var title = "WEB - create";
var list = template.list(filelist);
var html = template.HTML(
title,
list,
`
<form action="/create_process" method="post">
<p><input type="text" name="title" placeholder="title"></p>
<p>
<textarea name="description" placeholder="description"></textarea>
</p>
<p>
<input type="submit">
</p>
</form>
`,
"",
authStatusUI(request, response)
);
response.writeHead(200);
response.end(html);
});
} else if (pathname === "/create_process") {
if (authIsOwner(request, response) === false) {
response.end("Login required!!");
return false;
}
var body = "";
request.on("data", function(data) {
body = body + data;
});
request.on("end", function() {
var post = qs.parse(body);
var title = post.title;
var description = post.description;
fs.writeFile(`data/${title}`, description, "utf8", function(err) {
response.writeHead(302, { Location: `/?id=${title}` });
response.end();
});
});
} else if (pathname === "/update") {
if (authIsOwner(request, response) === false) {
response.end("Login required!!");
return false;
}
fs.readdir("./data", function(error, filelist) {
var filteredId = path.parse(queryData.id).base;
fs.readFile(`data/${filteredId}`, "utf8", function(err, description) {
var title = queryData.id;
var list = template.list(filelist);
var html = template.HTML(
title,
list,
`
<form action="/update_process" method="post">
<input type="hidden" name="id" value="${title}">
<p><input type="text" name="title" placeholder="title" value="${title}"></p>
<p>
<textarea name="description" placeholder="description">${description}</textarea>
</p>
<p>
<input type="submit">
</p>
</form>
`,
`<a href="/create">create</a> <a href="/update?id=${title}">update</a>`,
authStatusUI(request, response)
);
response.writeHead(200);
response.end(html);
});
});
} else if (pathname === "/update_process") {
if (authIsOwner(request, response) === false) {
response.end("Login required!!");
return false;
}
var body = "";
request.on("data", function(data) {
body = body + data;
});
request.on("end", function() {
var post = qs.parse(body);
var id = post.id;
var title = post.title;
var description = post.description;
fs.rename(`data/${id}`, `data/${title}`, function(error) {
fs.writeFile(`data/${title}`, description, "utf8", function(err) {
response.writeHead(302, { Location: `/?id=${title}` });
response.end();
});
});
});
} else if (pathname === "/delete_process") {
if (authIsOwner(request, response) === false) {
response.end("Login required!!");
return false;
}
var body = "";
request.on("data", function(data) {
body = body + data;
});
request.on("end", function() {
var post = qs.parse(body);
var id = post.id;
var filteredId = path.parse(id).base;
fs.unlink(`data/${filteredId}`, function(error) {
response.writeHead(302, { Location: `/` });
response.end();
});
});
} else if (pathname === "/login") {
fs.readdir("./data", function(error, filelist) {
var title = "Login";
var list = template.list(filelist);
var html = template.HTML(
title,
list,
`
<form action="login_process" method="post">
<p><input type="text" name="email" placeholder="email"></p>
<p><input type="password" name="password" placeholder="password"></p>
<p><input type="submit"></p>
</form>`,
`<a href="/create">create</a>`
);
response.writeHead(200);
response.end(html);
});
} else if (pathname === "/login_process") {
var body = "";
request.on("data", function(data) {
body = body + data;
});
request.on("end", function() {
var post = qs.parse(body);
if (post.email === "[email protected]" && post.password === "111111") {
response.writeHead(302, {
"Set-Cookie": [
`email=${post.email}`,
`password=${post.password}`,
`nickname=egoing`
],
Location: `/`
});
response.end();
} else {
response.end("Who?");
}
});
} else if (pathname === "/logout_process") {
var body = "";
request.on("data", function(data) {
body = body + data;
});
request.on("end", function() {
var post = qs.parse(body);
response.writeHead(302, {
"Set-Cookie": [
`email=; Max-Age=0`,
`password=; Max-Age=0`,
`nickname=; Max-Age=0`
],
Location: `/`
});
response.end();
});
} else {
response.writeHead(404);
response.end("Not found");
}
});
app.listen(3000);