-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
631 lines (450 loc) · 22.9 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
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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
const ACCESS_TOKEN = 'ここにアクセストークン';
const REPLY_URL = 'https://api.line.me/v2/bot/message/reply';
const SHEET_ID = 'ここにスプレッドシートのID';
const sheet = SpreadsheetApp.openById(SHEET_ID);
const shokuzaiSheet = sheet.getSheetByName('shokuzai');
const recordSheet = sheet.getSheetByName("nov2020");
const commands = ['ヘルプ', '追加', '記録', '変更', '確認'];
function doPost(e) {
// 投稿されたメッセージを取得
let userMessage = JSON.parse(e.postData.contents).events[0].message.text;
// 全角スペース => 半角スペース
userMessage = userMessage.replace(/ /g, ' ');
let messageList = userMessage.split(' ');
let messageLength = messageList.length;
// コマンドがリストになかったら、ヘルプにして、ヘルプ概要のリプライをする
let command = commands.includes(messageList[0]) ? messageList[0] : 'ヘルプ';
let replyToken = JSON.parse(e.postData.contents).events[0].replyToken;
let messageOption = messageList[1];
if (command === 'ヘルプ'){
if (messageLength > 2){
replyMessage = "フォーマット: ヘルプ <option>\n\n※空白を連続で挿入すると正しく判定できません。";
} else {
replyMessage = help(messageList[1]);
}
} else if (command === '追加'){
if (messageLength > 8 || messageLength < 8){
replyMessage = "フォーマット: 追加 <食材名> <分量(あたり)(g)><タンパク質> <脂質> <炭水化物> <糖質> <カロリー(kcal)>\n\n※空白を連続で挿入すると正しく判定できません。";
} else {
replyMessage = addFood(messageList.slice(1));
}
} else if (command === '記録'){
if (messageLength > 4 || messageLength < 3){
replyMessage = "フォーマット: 記録 <食材名> <分量(g)> (<日付>)\n\n※空白を連続で挿入すると正しく判定できません。";
} else {
replyMessage = addRecord(messageList.slice(1), messageLength);
}
} else if (command === '確認'){
if (messageLength > 3 || messageLength < 3){
replyMessage = "フォーマット:\n①食材の成分情報の確認\n確認 食材 <食材名>\n\n②登録された食材の一覧を取得\n確認 食材 一覧\n\n③記録の確認\n確認 記録 <日付>\n\n※空白を連続で挿入すると正しく判定できません。";
} else {
replyMessage = readInfo(messageList.slice(1));
}
} else if (command === '変更' && messageOption === '食材'){
if (messageLength > 9 || messageLength < 9){
replyMessage = "フォーマット: 変更 食材 <食材名> <分量(あたり)(g)><タンパク質> <脂質> <炭水化物> <糖質> <カロリー(kcal)>";
} else {
replyMessage = changeFoodInfo(messageList.slice(2));
}
} else if (command === '変更' && messageOption === '記録'){
if (messageLength > 6 || messageLength < 6){
replyMessage = "フォーマット: 変更 記録 <日付> <食材名> <番号> <分量>";
} else {
replyMessage = changeRecord(messageList.slice(2));
}
}
// 返信================================================
UrlFetchApp.fetch(REPLY_URL, {
'headers': {
'Content-Type': 'application/json; charset=UTF-8',
'Authorization': 'Bearer ' + ACCESS_TOKEN
},
'method': 'post',
'payload': JSON.stringify({
'replyToken': replyToken,
'messages': [{
'type': 'text',
'text': replyMessage,
}],
}),
});
// =======================================
return ContentService.createTextOutput(JSON.stringify({ content: 'post ok' })).setMimeType(ContentService.MimeType.JSON);
}
//使い方説明
const help = (option) => {
let replyMessage = '';
if (option === '概要') {
replyMessage = "【使い方】\n使用できるコマンドを、指定されたフォーマットに沿って入力していただきます。空白は半角・全角を区別しません。改行による入力には対応しておりません。\n\n【使用できるコマンド】\n追加、記録、変更、確認、ヘルプ\n\n【ヘルプコマンド】\n\nヘルプ 概要:この説明文が表示されます。\n\nヘルプ 追加:追加コマンドの説明、フォーマット\n\nヘルプ 記録:記録コマンドの説明、フォーマット\n\nヘルプ 変更:変更コマンドの説明、フォーマット\n\nヘルプ 確認:確認コマンドの説明、フォーマット\n";
} else if (option === '追加'){
replyMessage = "【コマンドの説明】\n追加:食材の栄養情報を登録します。\n\n・フォーマット\n追加 <食材名> <分量(あたり)(g)><タンパク質> <脂質> <炭水化物> <糖質> <カロリー(kcal)>\n\n※不明の場合、該当箇所を0としてください。\n\n・例\n追加 さつまいも 100 1.2 0.2 32 31 131\n\n追加 さつまいも 100 1.2 0 32 0 131";
} else if (option === '記録'){
replyMessage = "【コマンドの説明】\n記録:その日に食べた食材の分量を記録します。食材は事前に追加コマンドから登録しておく必要があり、その情報を基に計算されます。\n\n・フォーマット\n記録 <食材名> <分量(g)> (<日付>)\n\n・例\n記録 鶏胸肉 130 9/21\n\n※日付を省略した場合、記録した日を日付として記録します。";
} else if (option === '変更'){
replyMessage = "【コマンドの説明】\n変更:食材の成分情報、または記録を変更します。\n\n①食材の成分情報の変更\n\n・フォーマット\n変更 食材 <食材名> <分量(あたり)(g)><タンパク質> <脂質> <炭水化物> <糖質> <カロリー(kcal)>\n\n②記録の変更\n\n・フォーマット\n変更 記録 <日付> <食材名> <番号> <分量>\n\n※番号は確認コマンドで確認することが出来ます。";
} else if (option === '確認'){
replyMessage = "【コマンドの説明】\n確認:食材の情報、または記録内容を表示します。\n\n①登録された食材の一覧を取得\n確認 食材 一覧\n\n②食材の成分情報の確認\n\n・フォーマット\n確認 食材 <食材名>\n\n③記録の確認\n\n・フォーマット\n確認 記録 <日付>\n\n・例\n確認 9/21";
} else {
replyMessage = "【使い方】\n使用できるコマンドを、指定されたフォーマットに沿って入力していただきます。空白は半角・全角を区別しません。\n\n【使用できるコマンド】\n追加、記録、変更、確認、ヘルプ\n\n【ヘルプコマンド】\n\nヘルプ 概要:この説明文が表示されます。\n\nヘルプ 追加:追加コマンドの説明、フォーマット\n\nヘルプ 記録:記録コマンドの説明、フォーマット\n\nヘルプ 変更:変更コマンドの説明、フォーマット\n\nヘルプ 確認:確認コマンドの説明、フォーマット\n";
}
return replyMessage;
};
//食材をshokuzaiシートに追加
const addFood = (messageListOption) => {
// messageListOption = ['foodAmountBase', 'pro', 'fat', 'carbo', 'sugar', 'cal'];
let replyMessage, flag;
let values = [];
let copyListOption = [...messageListOption];
[replyMessage, flag] = ['', true];
// values = [['foodAmountBase', 'pro', 'fat', 'carbo', 'sugar', 'cal']];
values.push(copyListOption);
let foodName = messageListOption.shift();
// 関数化できる----------------------------------------------------------------
// foodNameが既に登録されていたらダメ
[replyMessage, flag] = readFoodInfo(foodName, 'null');
if (replyMessage === "入力した食材は存在しません") {
flag = true;
} else {
replyMessage = "入力した食材は既に登録されています。";
flag = false;
}
// messageListOption の情報が全て数値
if (flag) {
for (let i = 0; i < 6; i++) {
[replyMessage, flag] = isNumber(messageListOption[i]);
if (flag === false) {
break;
}
}
}
//------------------------------------------------------------------
// 値を登録
if (flag) {
let lastRow = shokuzaiSheet.getLastRow();
shokuzaiSheet.getRange(lastRow + 1, 1, 1, 7).setValues(values);
replyMessage = "食材 ${foodName} を追加しました。".replace("${foodName}", foodName);
}
return replyMessage;
};
//シートに記録
const addRecord = (messageListOption, messageLength) => {
let replyMessage, flag, foodInfo, day;
[replyMessage, flag, foodInfo, day] = ['', true, [], ''];
let foodName = messageListOption[0];
let foodAmount = messageListOption[1];
let foodAmountBase = '';
const dateObj = new Date();
const hour = dateObj.getHours();
const minite = dateObj.getMinutes().toString().padStart(2, '0');
const month = dateObj.getMonth() + 1;
let date = dateObj.getDate();
// 確認すること:日付が存在するか、食材名が存在するか、分量が数字か
// messageListOption = ['鶏胸肉', '130', ('9/21')];
// 日付あったらその日、なかったらその場で当日の文字列をつくって列を取得
if (messageLength === 3) {
day = month + '/' + date;
} else {
day = messageListOption[2];
[flag, date, replyMessage] = inspectDate(day);
}
// foodName が存在するか + foodInfo の取得
if (flag) {
[replyMessage, flag] = readFoodInfo(foodName, 'null');
if (flag) {
// replyMessage = 'さつまいも\n100\n1\n2\n3\n4\n5';
// foodInfo = ['さつまいも', '100', '1', '2', '3', '4', '5'];
foodInfo = replyMessage.split('\n');
foodAmountBase = Number(foodInfo[1]);
}
}
// foodAmount が数値か
if (flag) {
[replyMessage, flag] = isNumber(foodAmount);
if (flag) {
foodAmount = Number(foodAmount);
}
}
// ---------------------------------------------------------------------------------------
// 最終行にsetValues()
// 合計を取得
// 合計に、分量から計算した分を合計する
if (flag) {
// 該当する日付の行を取得
// 1 2 3 4 5
// 1 5 9 13 17
// 一般項 = 4n - 3
let targetColumn = 4 * date - 3;
let sheetLastRow = recordSheet.getLastRow();
let targetRow = findTargetRow(targetColumn, sheetLastRow);
let index = targetRow - 6;
let time = hour + ':' + minite;
let values = [[index, time, foodName, foodAmount]];
recordSheet.getRange(targetRow + 2, targetColumn, 1, 4).setValues(values);
// sumValues = [[''], [''], [''], [''], ['']];
let sumValues = recordSheet.getRange(3, targetColumn + 1, 5, 1).getValues();
let ratio = foodAmount / foodAmountBase;
let protein = (Number(sumValues[0]) + (Number(foodInfo[2]) * ratio)).toFixed(2);
let fat = (Number(sumValues[1]) + (Number(foodInfo[3]) * ratio)).toFixed(2);
let carbo = (Number(sumValues[2]) + (Number(foodInfo[4]) * ratio)).toFixed(2);
let sugar = (Number(sumValues[3]) + (Number(foodInfo[5]) * ratio)).toFixed(2);
let calorie = (Number(sumValues[4]) + (Number(foodInfo[6]) * ratio)).toFixed(2);
sumValues = [[protein], [fat], [carbo], [sugar], [calorie]];
recordSheet.getRange(3, targetColumn + 1, 5, 1).setValues(sumValues);
replyMessage = "記録しました。";
}
return replyMessage;
};
const findTargetRow = (targetColumn, sheetLastRow) => {
let values = recordSheet.getRange(1, targetColumn, sheetLastRow, 1).getValues();
let targetRow = values.filter(String).length;
return targetRow;
}
const inspectDate = (day) => {
let replyMessage, flag, date;
[replyMessage, flag, date] = ['', true, ''];
// ---------------------------------------------------------
// 条件
// - '/'がある
// - '/'がひとつだけ
// - month, date が数値
// - 月が一致している(その月のシートしか編集できない)
// - date が 0 < date < 32
// ---------------------------------------------------------
// '/'がある && monthDate.length === 2 && isNaN(month) === false && isNaN(date) = false
// && month === date.getMonth(); && 0 < date < 32
//
// isNaN(str) === false => 数値
// ---------------------------------------------------------
if (day.includes('/')) {
let dateObj = new Date();
const MONTH = dateObj.getMonth() + 1;
let monthDateArray = day.split('/');
let month = monthDateArray[0];
date = Number(monthDateArray[1]);
if (monthDateArray.length === 2 && isNaN(month) === false && isNaN(date) === false && month === String(MONTH) && 0 < date && date < 32) {
// pass;
} else {
replyMessage = "日付のフォーマット: mm/dd\n\n例\n1/23, 3/11, 12/23\n\n月が一致している必要があります。";
flag = false;
}
} else {
replyMessage = "日付のフォーマット: mm/dd\n\n例\n1/23, 3/11, 12/23\n\n月が一致している必要があります。";
flag = false;
}
return [flag, date, replyMessage];
}
//食材情報を変更
const changeFoodInfo = (messageListOption) => {
// messageListOption = ['foodAmountBase', 'pro', 'fat', 'carbo', 'sugar', 'cal'];
let replyMessage, flag;
let values = [];
let copyListOption = [...messageListOption];
[replyMessage, flag] = ['', true];
// values = [['foodAmountBase', 'pro', 'fat', 'carbo', 'sugar', 'cal']];
values.push(copyListOption);
let foodName = messageListOption.shift();
// foodNameが既に登録されていたらダメ
[replyMessage, flag] = readFoodInfo(foodName, 'null');
if (replyMessage === "入力した食材は存在しません") {
flag = true;
} else {
replyMessage = "入力した食材は既に登録されています。";
flag = false;
}
if (flag) {
for (let i = 0; i < 6; i++) {
[replyMessage, flag] = isNumber(messageListOption[i]);
if (flag === false) {
break;
}
}
}
// A2:lastRowまでの間で食材名と一致する行を探す => その行の内容を変更
// もし食材名も変更できるようにするなら、
// 変更 食材 <元の食材名> <変更後の食材名> </変更後の食材名><分量(あたり)(g)><タンパク質> <脂質> <炭水化物> <糖質> <カロリー(kcal)></糖質>
// になる
let targetRow = 0;
[replyMessage, flag, targetRow] = readFoodInfo(foodName, 'fetchTargetRow');
if (flag) {
shokuzaiSheet.getRange(targetRow, 1, 1, 7).setValues(values);
replyMessage = "食材 ${foodName} の情報を変更しました。".replace("${foodName}", foodName);
}
// }
return replyMessage;
};
//シートの記録を変更
const changeRecord = (messageListOption) => {
let replyMessage, flag, date;
[replyMessage, flag, date] = ['', true, ''];
let foodInfo, foodAmountBase, targetColumn, sheetLastRow, targetRow;
[foodInfo, foodAmountBase, targetColumn, sheetLastRow, targetRow] = [[], 0, 0, 0, 0];
let day = messageListOption[0];
let foodName = messageListOption[1];
let recordIndex = messageListOption[2];
let laterFoodAmount = messageListOption[3];
[flag, date, replyMessage] = inspectDate(day);
if (flag) {
[replyMessage, flag] = readFoodInfo(foodName, 'null');
if (flag) {
foodInfo = replyMessage.split('\n');
foodAmountBase = Number(foodInfo[1]);
}
}
if (flag) {
[replyMessage, flag] = isNumber(recordIndex);
[replyMessage, flag] = isNumber(laterFoodAmount);
if (flag) {
recordIndex = Number(recordIndex);
targetColumn = 4 * date - 3;
sheetLastRow = recordSheet.getLastRow();
targetRow = findTargetRow(targetColumn, sheetLastRow);
if (recordIndex < 1 || targetRow - 7 < recordIndex ) {
replyMessage = "入力された番号の記録は存在しません。";
flag = false;
} else {
targetRow = recordIndex + 8;
}
}
}
if (flag) {
// 合計からもとのfoodAmountの文を引く
// 合計にfoodAmountの文を足す
// 合計に記録
// targetRowに記録
// sumValues = [[''], [''], [''], [''], ['']];
let sumValues = recordSheet.getRange(3, targetColumn + 1, 5, 1).getValues();
let changedValues = [];
// formerFoodAmount = [['120']];
// laterFoodAmount = '100';
let formerFoodAmount = recordSheet.getRange(targetRow, targetColumn + 3, 1, 1).getValues();
formerFoodAmount = Number(formerFoodAmount[0][0]);
laterFoodAmount = Number(laterFoodAmount);
let ratio = formerFoodAmount / foodAmountBase;
let proteinBase = Number(foodInfo[2]);
let fatBase = Number(foodInfo[3]);
let carobBase = Number(foodInfo[4]);
let sugarBase = Number(foodInfo[5]);
let calorieBase = Number(foodInfo[6]);
let protein = (Number(sumValues[0]));
let fat = (Number(sumValues[1]));
let carbo = (Number(sumValues[2]));
let sugar = (Number(sumValues[3]));
let calorie = (Number(sumValues[4]));
// 元の奴を引く
protein -= proteinBase * ratio;
fat -= fatBase * ratio;
carbo -= carobBase * ratio;
sugar -= sugarBase * ratio;
calorie -= calorieBase * ratio;
// 後の奴を足す
ratio = laterFoodAmount / foodAmountBase;
protein = (protein + (proteinBase * ratio)).toFixed(2);
fat = (fat + (fatBase * ratio)).toFixed(2);
carbo = (carbo + (carobBase * ratio)).toFixed(2);
sugar = (sugar + (sugarBase * ratio)).toFixed(2);
calorie = (calorie + (calorieBase * ratio)).toFixed(2);
sumValues = [[protein], [fat], [carbo], [sugar], [calorie]];
changedValues = [[foodName, laterFoodAmount]];
recordSheet.getRange(3, targetColumn + 1, 5, 1).setValues(sumValues);
recordSheet.getRange(targetRow, targetColumn + 2, 1, 2).setValues(changedValues);
replyMessage = "記録を変更しました。";
}
return replyMessage;
};
const isNumber = (target) => {
let replyMessage, flag;
[replyMessage, flag] = ['', true];
if (isNaN(target)) {
replyMessage = "数値を入力してください。";
flag = false;
}
return [replyMessage, flag];
}
//シートの内容を確認する
const readInfo = (messageListOption) => {
let replyMessage, flag;
[replyMessage, flag] = ['', true];
let command = messageListOption[0];
let target = messageListOption[1];
if (command === '食材' && target !== '一覧') {
[replyMessage, flag] = readFoodInfo(target, "null");
} else if(command === '食材' && target === '一覧') {
replyMessage = readFoodInfoAll();
} else if (command === '記録') {
replyMessage = readRecordInfo(target);
} else {
replyMessage = "フォーマット:\n①食材の成分情報の確認\n確認 食材 <食材名>\n\n②登録された食材の一覧を取得\n確認 食材 一覧\n\n③記録の確認\n確認 記録 <日付>\n\n※空白を連続で挿入すると正しく判定できません。";
}
return replyMessage;
};
const readFoodInfo = (foodName, option) => {
let replyMessage, flag, targetRow;
[replyMessage, flag, targetRow] = ['', true, 0];
let lastRow = shokuzaiSheet.getLastRow();
if (lastRow === 1) {
replyMessage = "入力した食材は存在しません";
flag = false;
}
if (flag) {
let foodNum = lastRow - 1;
// [['さつまいも'], ['もち'], ['そば'], ['プロテイン']]
let foodList = shokuzaiSheet.getRange(2, 1, foodNum, 1).getValues();
for (let j = 0; j < foodNum; j++) {
if (foodList[j] == foodName) {
targetRow = j + 2;
break;
}
if (j === foodNum - 1) {
replyMessage = "入力した食材は存在しません";
flag = false;
break;
}
}
}
if (flag) {
// [['さつまいも', '1', '2', '3', '4', '5', '6']]
let foodInfo = shokuzaiSheet.getRange(targetRow, 1, 1, 7).getValues();
replyMessage = foodInfo[0].join('\n');
}
if (option === 'fetchTargetRow') {
return [replyMessage, flag, targetRow];
} else {
return [replyMessage, flag];
}
}
const readFoodInfoAll = () => {
let replyMessage = '';
let lastRow = shokuzaiSheet.getLastRow();
let foodNameList = shokuzaiSheet.getRange(2, 1, lastRow - 1, 1).getValues();
replyMessage = foodNameList.join('\n');
return replyMessage;
}
const readRecordInfo = (day) => {
let replyMessage, flag, date;
[replyMessage, flag, date] = ['', true, ''];
// return [flag, date, replyMessage];
[flag, date, replyMessage] = inspectDate(day);
if (flag) {
let targetColumn = 4 * date - 3;
let sheetLastRow = recordSheet.getLastRow();
let targetRow = findTargetRow(targetColumn, sheetLastRow);
let sumList = recordSheet.getRange(2, targetColumn, 6, 2).getValues();
let recordList = recordSheet.getRange(9, targetColumn, targetRow - 7, 4).getValues();
// データ整形
// [['合計', ''], ['タンパク質', '100'], ['脂質', '100'], ['炭水化物', '100'], ['糖質', '100'], ['カロリー', '100']];
let sumStr = sumList[0][0] + '\n' + sumList[1][0] + ':' + sumList[1][1] + '\n' + sumList[2][0] + ':' + sumList[2][1] + '\n' + sumList[3][0] + ':' + sumList[3][1] + '\n' + sumList[4][0] + ':' + sumList[4][1] + '\n' + sumList[5][0] + ':' + sumList[5][1];
// [['1', '22:11', 'プロテイン', '111'], ['2', '22:38', 'さつまいも', '50'], ['3', '22:40', 'もち', '46']];
let recordStr, connectStr, dateStr, time, dateList, list;
[recordStr, connectStr, dateStr, time, dateList, list] = ['', '', '', '', [], []];
for (let k = 0; k < recordList.length; k++) {
dateStr = recordList[k][1] + '';
dateList = dateStr.split(':');
list = dateList[0].split(' ');
time = list[list.length - 1] + ':' + dateList[1];
connectStr = recordList[k][0] + '.' + ' ' + time + ' ' + recordList[k][2] + ' ' + recordList[k][3] + '\n';
recordStr += connectStr;
}
replyMessage = sumStr + '\n\n' + recordStr;
}
return replyMessage;
}