-
Notifications
You must be signed in to change notification settings - Fork 3
/
router.js
204 lines (186 loc) · 8.39 KB
/
router.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
const express = require('express');
const router = express.Router();
const Joi = require('joi');
const ExpressError = require('./utils/ExpressError')
const generateExample = require("./generateExample");
const generateExampleV1 = require("./generateExampleV1");
const generateExampleV2 = require("./generateExampleV2");
const generateExampleV3 = require("./generateExampleV3");
const timeout = require('connect-timeout');
// タイムアウトを処理するミドルウェア
const timeoutHandler = (req, res, next) => {
if (!req.timedout) {
next();
}
};
// タイムアウトを処理するミドルウェアを使えるようにする
router.use(timeout('10s'));
router.use(timeoutHandler);
// 例文を生成するための必須パラメータに対するバリデーション
const generateExampleSchema = Joi.object({
apiKey: Joi.string().max(100).required().messages({
'string.empty': 'APIキーは必須です',
'any.required': 'APIキーは必須です',
'string.max': 'APIキーは100文字以下にしてください'
}),
wordLang: Joi.string().max(15).required().messages({
'string.empty': '言語は必須です',
'any.required': '言語は必須です',
'string.max': '言語は15文字以下にしてください'
}),
wordName: Joi.string().max(195).required().messages({
'string.empty': '単語名は必須です',
'any.required': '単語名は必須です',
'string.max': '単語名は195文字以下にしてください'
}),
wordMean: Joi.string().max(100).required().messages({
'string.empty': '意味は必須です',
'any.required': '意味は必須です',
'string.max': '意味は100文字以下にしてください'
}),
});
// 例文を生成するための必須パラメータに対するバリデーション(V1)
const generateExampleSchemaV1 = Joi.object({
apiKey: Joi.string().max(100).required().messages({
'string.empty': 'APIキーは必須です',
'any.required': 'APIキーは必須です',
'string.max': 'APIキーは100文字以下にしてください'
}),
wordLang: Joi.string().max(15).required().messages({
'string.empty': '言語は必須です',
'any.required': '言語は必須です',
'string.max': '言語は15文字以下にしてください'
}),
wordName: Joi.string().max(195).required().messages({
'string.empty': '単語名は必須です',
'any.required': '単語名は必須です',
'string.max': '単語名は195文字以下にしてください'
}),
wordMean: Joi.string().max(100).required().messages({
'string.empty': '意味は必須です',
'any.required': '意味は必須です',
'string.max': '意味は100文字以下にしてください'
}),
sentenceDiff: Joi.string().valid('easy', 'normal', 'hard').required().messages({
'string.empty': '難易度は必須です',
'any.required': '難易度は必須です',
'any.only': '難易度はeasy, normal, hardのいずれかにしてください'
}),
});
router.get('/', (req, res) => {
res.sendFile(__dirname + '/public/index.html');
})
router.get('/privacy-policy', (req, res) => {
res.sendFile(__dirname + '/public/PrivacyPolicy.html');
})
// モバイル側で対応できたら削除する
router.get('/PrivacyPolicy', (req, res) => {
res.redirect('/privacy-policy')
})
router.get('/how-to-setting', (req, res) => {
res.sendFile(__dirname + '/public/HowToSetting.html');
})
router.post('/timeout', async (req, res) => {
await new Promise((resolve) => setTimeout(resolve, 6000));
});
router.post('/api', async (req, res, next) => {
try {
await generateExampleSchema.validateAsync(req.body, { abortEarly: false });
const { apiKey, wordLang, wordName, wordMean } = req.body;
const result = await generateExample(apiKey, wordLang, wordName, wordMean);
res.status(200).json(result);
} catch (error) {
// パラメータが不足している場合のエラー処理
if (error.isJoi) {
const validationErrorMsg = error.details.map(details => details.message).join(',');
return next(new ExpressError(validationErrorMsg, 400));
// ChatGPTのAPIキーが間違っている場合のエラー処理
} else if (error.message === 'Request failed with status code 401') {
return next(new ExpressError('APIキーが間違っています', 401));
// ChatGPTのAPIキー無料枠が期限切れの場合のエラー処理
} else if (error.message = 'Request failed with status code 429') {
return next(new ExpressError('APIキーの無料枠が期限切れです', 401));
} else {
return next(error);
}
}
});
router.post('/api/v1', async (req, res, next) => {
try {
await generateExampleSchemaV1.validateAsync(req.body, { abortEarly: false });
const { apiKey, wordLang, wordName, wordMean, sentenceDiff } = req.body;
const result = await generateExampleV1(apiKey, wordLang, wordName, wordMean, sentenceDiff);
res.status(200).json(result);
} catch (error) {
// パラメータが不足している場合のエラー処理
if (error.isJoi) {
const validationErrorMsg = error.details.map(details => details.message).join(',');
return next(new ExpressError(validationErrorMsg, 400));
// ChatGPTのAPIキーが間違っている場合のエラー処理
} else if (error.message === 'Request failed with status code 401') {
return next(new ExpressError('APIキーが間違っています', 401));
// ChatGPTのAPIキー無料枠が期限切れの場合のエラー処理
} else if (error.message = 'Request failed with status code 429') {
return next(new ExpressError('APIキーの無料枠が期限切れです', 401));
} else {
return next(error);
}
}
});
router.post('/api/v2', async (req, res, next) => {
try {
await generateExampleSchemaV1.validateAsync(req.body, { abortEarly: false });
const { apiKey, wordLang, wordName, wordMean, sentenceDiff } = req.body;
const result = await generateExampleV2(apiKey, wordLang, wordName, wordMean, sentenceDiff);
res.status(200).json(result);
} catch (error) {
// パラメータが不足している場合のエラー処理
if (error.isJoi) {
const validationErrorMsg = error.details.map(details => details.message).join(',');
return next(new ExpressError(validationErrorMsg, 400));
// ChatGPTのAPIキーが間違っている場合のエラー処理
} else if (error.message === 'Request failed with status code 401') {
return next(new ExpressError('APIキーが間違っています', 401));
// ChatGPTのAPIキー無料枠が期限切れの場合のエラー処理
} else if (error.message = 'Request failed with status code 429'){
return next(new ExpressError('APIキーの無料枠が期限切れです', 401));
} else {
return next(error);
}
}
});
router.post('/api/v3', async (req, res, next) => {
try {
await generateExampleSchemaV1.validateAsync(req.body, { abortEarly: false });
const { apiKey, wordLang, wordName, wordMean, sentenceDiff } = req.body;
const result = await generateExampleV3(apiKey, wordLang, wordName, wordMean, sentenceDiff);
res.status(200).json(result);
} catch (error) {
// パラメータが不足している場合のエラー処理
if (error.isJoi) {
const validationErrorMsg = error.details.map(details => details.message).join(',');
return next(new ExpressError(validationErrorMsg, 400));
// ChatGPTのAPIキーが間違っている場合のエラー処理
} else if (error.message === 'Request failed with status code 401') {
return next(new ExpressError('APIキーが間違っています', 401));
// ChatGPTのAPIキー無料枠が期限切れの場合のエラー処理
} else if (error.message = 'Request failed with status code 429'){
return next(new ExpressError('APIキーの無料枠が期限切れです', 401));
} else {
return next(error);
}
}
});
// エラーハンドリングのミドルウェア
const errorHandler = (err, req, res, next) => {
let { statusCode = 500, message = '問題が発生しました' } = err;
// タイムアウトエラーの処理を設定
if (req.timedout) {
statusCode = 503;
message = 'タイムアウトしました';
}
res.status(statusCode).json({ "status": statusCode, "message": message });
};
// エラーハンドリングのミドルウェアを使えるようにする
router.use(errorHandler);
module.exports = router;