generated from jigintern/template-deno-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.deno.js
413 lines (357 loc) · 13.3 KB
/
server.deno.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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
/********************************
* DO NOT PUSH ".env"!!!!!!!! *
********************************/
import { serve } from "https://deno.land/std@0.180.0/http/server.ts";
import { serveDir } from "https://deno.land/std@0.180.0/http/file_server.ts";
import "https://deno.land/std@0.193.0/dotenv/load.ts"
import { Client } from "https://deno.land/x/mysql@v2.11.0/mod.ts"
import * as CSV from "https://deno.land/std@0.170.0/encoding/csv.ts";
import { fetchChat } from "https://code4fukui.github.io/ai_chat/fetchChat.js";
const message =
`# 命令
以下の「制約」をすべて守った、日記を出力してください。
# 制約
- 2文または3文で構成される。
- 常体で書く。
- 以下の「単語」を使用する。
- 小学生4年生程度の語彙を使用する。
- すべての文字をひらがなまたはカタカナで表記する。
# 単語
`
serve(async (req) => {
const pathname = new URL(req.url).pathname;
// SQL用環境変数
const MYSQL_HOSTNAME = Deno.env.get("MYSQL_HOSTNAME")
const MYSQL_USER = Deno.env.get("MYSQL_USER")
const MYSQL_PASSWORD = Deno.env.get("MYSQL_PASSWORD")
const MYSQL_DBNAME = Deno.env.get("MYSQL_DBNAME")
/********************************
* Diary *
********************************/
// 日記の追加
// 引数:{date, weather, text}
if (req.method === "POST" && pathname === "/insert-diary")
{
const reqJson = await req.json(); // 引数を取得
const mySqlClient = await new Client().connect({ // データベースと接続
hostname: MYSQL_HOSTNAME,
username: MYSQL_USER,
password: MYSQL_PASSWORD,
db: MYSQL_DBNAME
})
let [year, month, date] = reqJson.date.split('-');
month = month.padStart(2, '0');
date = date.padStart(2, '0');
const day = year + '-' + month + '-' + date;
const command = await mySqlClient.execute(`INSERT INTO diary (??, ??, ??) VALUES (?, ?, ?); `,
[
"date",
"weather",
"text",
day,
reqJson.weather,
reqJson.text,
]
)
// MySQLのDBとの通信を終了する
mySqlClient.close()
return new Response("successed");
}
// すべての日記の取得
// 引数:なし
if (req.method === "GET" && pathname === "/get-diary") {
const mySqlClient = await new Client().connect({ // データベースと接続
hostname: MYSQL_HOSTNAME,
username: MYSQL_USER,
password: MYSQL_PASSWORD,
db: MYSQL_DBNAME
})
const command = await mySqlClient.execute(`SELECT * FROM diary ORDER BY date ASC;`);
// MySQLのDBとの通信を終了する
mySqlClient.close();
return new Response(JSON.stringify(command.rows));
}
// 特定の日付の日記の取得
// 引数:{date}
if (req.method === "GET" && pathname === "/get-daydiary") {
const mySqlClient = await new Client().connect({ // データベースと接続
hostname: MYSQL_HOSTNAME,
username: MYSQL_USER,
password: MYSQL_PASSWORD,
db: MYSQL_DBNAME
})
let [year, month, date] = new URL(req.url).searchParams.get("date").split('-');
month = month.padStart(2, '0');
date = date.padStart(2, '0');
const day = year + '-' + month + '-' + date;
const command = await mySqlClient.execute(`SELECT * FROM diary WHERE ?? = ? ORDER BY date ASC;`,
[
"date",
day,
]);
// MySQLのDBとの通信を終了する
mySqlClient.close()
if (Object.keys(command.rows).length == 0) {
return new Response("-1")
} else {
return new Response(command.rows[0]["text"]);
}
}
// 日記を削除
// 引数:{id}
if (req.method === "POST" && pathname === "/delete-diary")
{
const reqJson = await req.json(); // 引数を取得
const mySqlClient = await new Client().connect({ // データベースと接続
hostname: MYSQL_HOSTNAME,
username: MYSQL_USER,
password: MYSQL_PASSWORD,
db: MYSQL_DBNAME
})
const command = await mySqlClient.execute(`DELETE FROM diary WHERE (?? = ?); `,
[
"id",
reqJson.id,
]
)
// MySQLのDBとの通信を終了する
mySqlClient.close()
return new Response("successed");
}
// 指定した月の中で日記が書かれている日の日付一覧を返す
// 引数:{date}
if (req.method === "POST" && pathname === "/diary-date")
{
const reqJson = await req.json(); // 引数を取得
const mySqlClient = await new Client().connect({ // データベースと接続
hostname: MYSQL_HOSTNAME,
username: MYSQL_USER,
password: MYSQL_PASSWORD,
db: MYSQL_DBNAME
})
let [year, month, date] = reqJson.date.split('-');
month = month.padStart(2, '0');
date = date.padStart(2, '0');
const day = year + '-' + month + '-' + '%';
const command = await mySqlClient.execute(`SELECT date FROM diary WHERE date LIKE ? ORDER BY date ASC; `,
[
day
]
)
// MySQLのDBとの通信を終了する
mySqlClient.close();
const json = command.rows;
let datelist = [];
let tmp;
for (let i=0;i<Object.keys(json).length;i++) {
tmp = json[i]["date"];
datelist.push(tmp);
}
return new Response(datelist);
}
/********************************
* Weather *
********************************/
// 過去の天気をCSVから取得
// 引数:{date}
if (req.method === "GET" && pathname === "/get-weather") {
const param = new URL(req.url).searchParams.get("date");
const path = new URL(import.meta.resolve("./public/weather.csv"));
const text = await Deno.readTextFile(path);
const data = CSV.parse(text);
data.splice(0, 4);
const firstdate = new Date(data[0][0]);
const requestdate = new Date(param);
const diffDay = Math.floor((requestdate.getTime() - firstdate.getTime()) / (1000 * 60 * 60 * 24));
try {
switch (data[diffDay][1][0]) {
case "晴":
case "快":
return new Response(0);
case "曇":
case "薄":
return new Response(1);
case "雨":
case "大":
case "雪":
return new Response(2);
}
}
catch {
return new Response(-1);
}
}
/********************************
* Event *
********************************/
// 予定の追加
// 引数:{date, name}
if (req.method === "POST" && pathname === "/insert-event")
{
const reqJson = await req.json(); // 引数を取得
const mySqlClient = await new Client().connect({ // データベースと接続
hostname: MYSQL_HOSTNAME,
username: MYSQL_USER,
password: MYSQL_PASSWORD,
db: MYSQL_DBNAME
})
let [year, month, date] = reqJson.date.split('-');
month = month.padStart(2, '0');
date = date.padStart(2, '0');
const day = year + '-' + month + '-' + date;
const command = await mySqlClient.execute(`INSERT INTO schedule (??, ??) VALUES (?, ?); `,
[
"date",
"name",
day,
reqJson.name,
]
)
// MySQLのDBとの通信を終了する
mySqlClient.close()
return new Response("successed");
}
// 予定の削除
// 引数:{id}
if (req.method === "POST" && pathname === "/delete-event")
{
const reqJson = await req.json(); // 引数を取得
const mySqlClient = await new Client().connect({ // データベースと接続
hostname: MYSQL_HOSTNAME,
username: MYSQL_USER,
password: MYSQL_PASSWORD,
db: MYSQL_DBNAME
})
const command = await mySqlClient.execute(`DELETE FROM schedule WHERE (?? = ?);`,
[
"id",
reqJson.id,
]
)
// MySQLのDBとの通信を終了する
mySqlClient.close()
return new Response("successed");
}
// すべての予定の取得
// 引数:なし
if (req.method === "GET" && pathname === "/get-event") {
const mySqlClient = await new Client().connect({ // データベースと接続
hostname: MYSQL_HOSTNAME,
username: MYSQL_USER,
password: MYSQL_PASSWORD,
db: MYSQL_DBNAME
})
const command = await mySqlClient.execute(`SELECT * FROM schedule ORDER BY date ASC;`);
// MySQLのDBとの通信を終了する
mySqlClient.close();
return new Response(JSON.stringify(command.rows));
}
// 予定の取得
// 引数:{date}
if (req.method === "GET" && pathname === "/get-event-one") {
const mySqlClient = await new Client().connect({ // データベースと接続
hostname: MYSQL_HOSTNAME,
username: MYSQL_USER,
password: MYSQL_PASSWORD,
db: MYSQL_DBNAME
})
let [year, month, date] = new URL(req.url).searchParams.get("date").split('-');
month = month.padStart(2, '0');
date = date.padStart(2, '0');
const day = year + '-' + month + '-' + date;
const command = await mySqlClient.execute(`SELECT ?? FROM schedule WHERE date = ? ORDER BY date ASC;`,
[
"name",
day
]);
// MySQLのDBとの通信を終了する
mySqlClient.close();
if (Object.keys(command.rows).length == 0) {
return new Response("-1")
} else {
return new Response(command.rows[0]["name"]);
}
}
// 指定した月の中で予定が書かれている日の日付一覧を返す
// 引数:{date}
if (req.method === "POST" && pathname === "/event-date")
{
const reqJson = await req.json(); // 引数を取得
const mySqlClient = await new Client().connect({ // データベースと接続
hostname: MYSQL_HOSTNAME,
username: MYSQL_USER,
password: MYSQL_PASSWORD,
db: MYSQL_DBNAME
})
let [year, month, date] = reqJson.date.split('-');
month = month.padStart(2, '0');
date = date.padStart(2, '0');
const day = year + '-' + month + '-' + '%';
const command = await mySqlClient.execute(`SELECT date FROM schedule WHERE date LIKE ? ORDER BY date ASC; `,
[
day
]
)
// MySQLのDBとの通信を終了する
mySqlClient.close();
const json = command.rows;
let datelist = [];
let tmp;
let tmpdate, tmpmonth, tmpyear;
for (let i=0;i<Object.keys(json).length;i++) {
tmp = json[i]["date"];
datelist.push(tmp);
}
return new Response(datelist);
}
/********************************
* ChatGPT *
********************************/
// 単語から日記を生成
// 引数:{words}
if (req.method === "POST" && pathname === "/generate-gpt")
{
const reqJson = await req.json();
const word = reqJson.words.split(/\s/);
let question = message;
for (let i=0;i<word.length;i++)
question += "- " + word[i] + "\n";
const response = await fetchChat(question);
return new Response(response);
}
// 予定から日記を生成
// 引数:{date}
if (req.method === "POST" && pathname === "/event-gpt")
{
const reqJson = await req.json();
const mySqlClient = await new Client().connect({ // データベースと接続
hostname: MYSQL_HOSTNAME,
username: MYSQL_USER,
password: MYSQL_PASSWORD,
db: MYSQL_DBNAME
})
let [year, month, date] = reqJson.date.split('-');
month = month.padStart(2, '0');
date = date.padStart(2, '0');
const day = year + '-' + month + '-' + date;
const command = await mySqlClient.execute(`SELECT * FROM schedule WHERE date = ? ORDER BY date ASC;`,
[
day
]);
console.log(command.rows);
// MySQLのDBとの通信を終了する
mySqlClient.close();
let question = message;
for (let i=0;i<Object.keys(command.rows).length;i++)
question += "- " + command.rows[i]["name"] + '\n';
console.log(question);
const response = await fetchChat(question);
return new Response(response);
}
return serveDir(req, {
fsRoot: "public",
urlRoot: "",
showDirListing: true,
enableCors: true,
});
})