-
Notifications
You must be signed in to change notification settings - Fork 0
/
dynamodb.js
604 lines (530 loc) · 23.3 KB
/
dynamodb.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
module.exports = function(RED) {
/* 関数定義 */
return {
cnctSetting: cnctSetting,
serviceSetting: serviceSetting,
dynamoRequest: dynamoRequest,
aggregation: aggregation,
round: round,
expressionSetting: expressionSetting
};
};
/* 使用モジュール定義 */
// var request = require("request");
const got = require("got");
var moment = require("moment");
var reqbody = {}; // DynamoDBリクエスト用オブジェクト
/* DynamoDB接続情報設定関数 */
function cnctSetting (ccsConnectionConfigNode) {
var opts = {}; // 接続情報格納用オブジェクト
// 接続情報のデコード
// var buffer = Buffer(ccsConnectionConfigNode.credentials.userId + ":" + ccsConnectionConfigNode.credentials.password);
// var encodedData = buffer.toString("base64");
var encodedData = Buffer.from(ccsConnectionConfigNode.credentials.userId + ":" + ccsConnectionConfigNode.credentials.password).toString("base64");
opts = {
url: ccsConnectionConfigNode.url,
method: "POST",
headers: {"Content-Type": "application/json", "Authorization": "Basic " + encodedData},
maxRedirects: 21
};
/*
// httpリクエストのoptionを設定
opts.url = ccsConnectionConfigNode.url;
opts.method = "POST";
opts.headers = {};
opts.headers["Content-Type"] = "application/json";
opts.headers["Authorization"] = "Basic " + encodedData;
opts.encoding = null;
*/
return opts;
}
/* 検索期間条件設定関数 */
function expressionSetting (node) {
if (node.sdatetime != undefined) {
node.sdatetime = moment(node.sdatetime).format("YYYY-MM-DDTHH:mm:ss");
}
if (node.edatetime != undefined) {
node.edatetime = moment(node.edatetime).format("YYYY-MM-DDTHH:mm:ss");
}
if (node.sdatetime!= undefined && node.edatetime != undefined) {
// 開始・終了共に条件あり
node.ExpressionAttributeValues[":sdatetime"] = node.sdatetime + "+09:00"; // 期間セット
node.ExpressionAttributeValues[":edatetime"] = node.edatetime + "+09:00"; // 期間セット
node.KeyConditionExpression = "objectKey = :a and #t BETWEEN :sdatetime and :edatetime"; // 検索条件
node.ExpressionAttributeNames = { // 検索条件値
"#t": "timestamp"
};
} else if (node.sdatetime != undefined && node.edatetime == undefined){
// 開始のみ条件あり
node.ExpressionAttributeValues[":sdatetime"] = node.sdatetime + "+09:00"; // 期間セット
delete node.ExpressionAttributeValues[":edatetime"]; // 期間セット
node.KeyConditionExpression = "objectKey = :a and #t > :sdatetime"; // 検索条件
node.ExpressionAttributeNames = { // 検索条件値
"#t": "timestamp"
};
} else if (node.sdatetime == undefined && node.edate != undefined) {
// 終了のみ条件あり
delete node.ExpressionAttributeValues[":sdatetime"]; // 期間セット
node.ExpressionAttributeValues[":edatetime"] = node.edatetime + "+09:00"; // 期間セット
node.KeyConditionExpression = "objectKey = :a and #t < :edatetime"; // 検索条件
node.ExpressionAttributeNames = { // 検索条件値
"#t": "timestamp"
};
} else {
// 開始・終了共に条件なし
delete node.ExpressionAttributeValues[":sdatetime"]; // 期間セット
delete node.ExpressionAttributeValues[":edatetime"]; // 期間セット
node.KeyConditionExpression = "objectKey = :a"; // 検索条件
delete node.ExpressionAttributeNames; // 検索条件値
}
return node;
}
/* DynamoDB操作内容設定関数 */
function serviceSetting (opts, node) {
reqbody = {};
service[node.operation](node); // 操作内容を基にリクエストを設定
reqbody.oparation = node.operation;
opts.body = JSON.stringify(reqbody);
return opts;
}
/* DynamoDBリクエスト実行関数 */
async function dynamoRequest (opts, node, callback) {
// リクエストモジュールを利用して設定APIへリクエスト
// make sharrow copy of opts
let options = {};
Object.assign(options, opts);
// delete url property from options
// The `url` option is mutually exclusive with the `input` argument
delete options["url"];
// other options for Got package
options.responseType = "text";
var resbody = {};
try {
const response = await got(opts.url, options);
if (response.statusCode === 200){
// 結果を返却
try {
resbody = {
"status": "ok",
"statusCode": 200,
"data": JSON.parse(response.body)
};
} catch (e) {
node.error("response Error");
}
} else {
// その他エラー
resbody = {
"status": "ng",
"statusCode": 400,
"errorMassage": "エラーが発生しました"
};
node.error("DynamoDB:エラー", resbody);
}
} catch (err) {
console.log(err);
// その他エラー
resbody = {
"status": "ng",
"statusCode": 500,
"errorMassage": "リクエスト時にエラーが発生しました"
};
node.error("request Error");
}
callback(resbody);
/*
request (opts, function(err, res, body) {
var resbody = {}; // レスポンス設定用オブジェクト
if (err) {
// その他エラー
var resbody = {
"status": "ng",
"statusCode": 500,
"errorMassage": "エラーが発生しました"
};
// リクエストが失敗したらエラーを出力
if(err.code === 'ETIMEDOUT' || err.code === 'ESOCKETTIMEDOUT') {
node.error(RED._("common.errors.no-response"));
}
node.status({fill:"red", shape:"ring", text:"not respond"});
} else {
// リクエストが成功したらレスポンス毎に処理を分岐
if (res.statusCode == 500){
// 認証エラー
var resbody = {
"status": "ng",
"statusCode": 401,
"errorMassage": "認証情報が正しくありません"
};
node.error("DynamoDB:認証エラー", resbody);
} else if (res.statusCode != 200){
// その他エラー
var resbody = {
"status": "ng",
"statusCode": 500,
"errorMassage": "エラーが発生しました"
};
node.error("DynamoDB:認証エラー", resbody);
} else {
// 結果を返却
try {
resbody = {
"status": "ok",
"statusCode": 200,
"data": JSON.parse(body)
};
} catch (e) {
node.warn(RED._("common.errors.json-error"));
}
}
}
callback(resbody);
});
*/
}
/* アグリゲーション実行関数 */
function aggregation (items, node) {
var aggrItem = {}; // 集計データ格納用配列
// 処理対象データの有無を確認
if (items.length > 0) {
aggrItem.objectKey = items[0].objectkey; // 勝利データ一件目のobjectKeyを取得
aggrItem.objectList = []; // アグリゲーション結果を格納するobjectListを作成
var tmpObj; // オブジェクト一時保存用オブジェクト
var DatObj; // dataObject一時保存用オブジェクト
var contentData; // 集計結果一時保存用オブジェクト
var sumList; // 一時集計用配列
var resultList = []; // 集計結果一時保存用配列
var resultObj; // 結果結果一時保存用オブジェクト
// データをひとまとめに
for (var i=0; i<items.length; i++) {
DatObj = items[i].dataObject
if (DatObj.objectType == "iaCloudObject") {
tmpObj = {};
// timeStamp(timestamp)を格納
if (DatObj.timeStamp != undefined) {
tmpObj.timestamp = DatObj.timeStamp;
} else if (DatObj.timestamp != undefined) {
tmpObj.timestamp = DatObj.timestamp;
} else {
console.log("timeStamp(timestamp)が無効");
continue;
}
try {
// contentDataを格納
if (DatObj.objectContent != undefined) {
tmpObj.contentData = DatObj.objectContent.contentData;
} else if (DatObj.ObjectContent != undefined) {
tmpObj.contentData = DatObj.ObjectContent.contentData;
} else {
continue;
}
} catch (e) {
console.log("objectContent(ObjectContent)が無効");
continue;
}
// 作成したtmpObjをpushをaggrItem.objectListへpush
aggrItem.objectList.push(tmpObj);
} else {
console.log("objectTypeが無効:" + DatObj.objectType);
}
}
// データをソート
aggrItem.objectList.sort(function(a, b) {
if (a.timestamp > b.timestamp) {
return 1;
} else {
return -1;
}
});
// 全データの集計が終わるまで繰り返す
for (var i=0; i<aggrItem.objectList.length; i) {
// 一時集計を容易にするため、tmpObjに一時格納
tmpObj = aggrItem.objectList[i];
// 期間設定処理
var endTimestamp = moment(tmpObj.timestamp).endOf(node.aggreunit);
sumList = {};
// 指定単位(年~秒)で一時的にsumListへ集計
for (i; i<aggrItem.objectList.length && moment(tmpObj.timestamp)<=endTimestamp; i) {
tmpObj.contentData.forEach (function (CntDat) {
// 初めて確認したdataNameの場合、項目箇所を新規作成
var key;
if (CntDat.dataName != undefined) {
key = "dataName";
} else {
key = "dataname";
}
if (sumList[CntDat[key]] == undefined) {
sumList[CntDat[key]] = [];
}
sumList[CntDat[key]].push(CntDat.dataValue);
});
// 一時集計を容易にするため、tmpObjに一時格納
tmpObj = aggrItem.objectList[++i];
}
/* アグリゲーション */
switch (node.aggregation) {
// 最大値
case "max":
contentData = [];
// sumList内のオブジェクト毎にM最大値を算出
Object.keys(sumList).forEach(function (key) {
tmpObj = {};
tmpObj.dataName = key;
tmpObj.dataValue = Math.max(...sumList[key]);
contentData.push(tmpObj);
});
// resultListに格納するためのオブジェクトを作成
resultObj = {
timestamp: endTimestamp.startOf(node.aggreunit).format(),
contentData: contentData
};
// resultListに格納
resultList.push(resultObj);
break;
case "min":
// 最小値
contentData = [];
// sumList内のオブジェクト毎に最小値を算出
Object.keys(sumList).forEach(function (key) {
tmpObj = {};
tmpObj.dataName = key;
tmpObj.dataValue = Math.min(...sumList[key]);
contentData.push(tmpObj);
});
// resultListに格納するためのオブジェクトを作成
resultObj = {
timestamp: endTimestamp.startOf(node.aggreunit).format(),
contentData: contentData
};
// resultListに格納
resultList.push(resultObj);
break;
case "average":
// 平均
// SUM関数作成
var sum = function(arr) {
return arr.reduce(function(prev, current, i, arr) {
return prev+current;
});
};
contentData = [];
// sumList内のオブジェクト毎に平均を算出
Object.keys(sumList).forEach(function (key) {
tmpObj = {};
tmpObj.dataName = key;
tmpObj.dataValue = sum(sumList[key]) / sumList[key].length;
contentData.push(tmpObj);
});
// resultListに格納するためのオブジェクトを作成
resultObj = {
timestamp: endTimestamp.startOf(node.aggreunit).format(),
contentData: contentData
};
// resultListに格納
resultList.push(resultObj);
break;
case "median":
// 中央値
// ソート用関数作成
function compareNumbers(a, b) {
return a - b;
}
var sortedList;
contentData = [];
// sumList内のオブジェクト毎に中央値を算出
Object.keys(sumList).forEach(function (key) {
tmpObj = {};
tmpObj.dataName = key;
sortedList = sumList[key].sort(compareNumbers);
tmpObj.dataValue = sortedList[ Math.floor(sortedList.length / 2) ];
contentData.push(tmpObj);
});
// resultListに格納するためのオブジェクトを作成
resultObj = {
timestamp: endTimestamp.startOf(node.aggreunit).format(),
contentData: contentData
};
// resultListに格納
resultList.push(resultObj);
break;
case "count":
//カウント
contentData = [];
// sumList内のオブジェクト毎にカウントを算出
Object.keys(sumList).forEach(function (key) {
tmpObj = {};
tmpObj.dataName = key;
tmpObj.dataValue = sumList[key].length;
contentData.push(tmpObj);
});
// resultListに格納するためのオブジェクトを作成
resultObj = {
timestamp: endTimestamp.startOf(node.aggreunit).format(),
contentData: contentData
};
// resultListに格納
resultList.push(resultObj);
break;
case "integration":
// 積算
// 未実装
break;
case "first":
// 指定単位(年~秒)内の最初のデータ
contentData = [];
// sumList内のオブジェクト毎に最初のデータを算出
Object.keys(sumList).forEach(function (key) {
tmpObj = {};
tmpObj.dataName = key;
tmpObj.dataValue = sumList[key][0];
contentData.push(tmpObj);
});
// resultListに格納するためのオブジェクトを作成
resultObj = {
timestamp: endTimestamp.startOf(node.aggreunit).format(),
contentData: contentData
};
// resultListに格納
resultList.push(resultObj);
break;
case "last":
// 指定単位(年~秒)内の最後のデータ
contentData = [];
// sumList内のオブジェクト毎に最後のデータを算出
Object.keys(sumList).forEach(function (key) {
tmpObj = {};
tmpObj.dataName = key;
tmpObj.dataValue = sumList[key][sumList[key].length-1];
contentData.push(tmpObj);
});
// resultListに格納するためのオブジェクトを作成
resultObj = {
timestamp: endTimestamp.startOf(node.aggreunit).format(),
contentData: contentData
};
// resultListに格納
resultList.push(resultObj);
break;
}
}
} else {
// アグリゲーション処理用データが存在しなかった場合はエラー出力
console.log("アグリゲーション対象データがありません");
node.error("dynamodb.js -aggregation:アグリゲーション対象データがありません");
}
// 集計結果(reusltList)を返却する
return resultList;
}
/* 表示桁数関数 */
function round (items, node) {
try {
if (node.aggregationCheck == true) {
// アグリゲーション処理後データ
items.forEach (function (item) {
item.contentData.forEach (function (obj) {
obj.dataValue = Math.round(obj.dataValue * Math.pow(10, node.decimalPoint)) / Math.pow(10, node.decimalPoint);
});
});
} else {
if (items.Items[0].dataObject.objectContent != undefined) {
// 生データ(objectContent)
items.Items.forEach (function (item) {
item.dataObject.objectContent.contentData.forEach (function (obj) {
obj.dataValue = Math.round(obj.dataValue * Math.pow(10, node.decimalPoint)) / Math.pow(10, node.decimalPoint);
});
});
} else if (items.Items[0].dataObject.ObjectContent != undefined) {
// 生データ(ObjectContent)
items.Items.forEach (function (item) {
item.dataObject.ObjectContent.contentData.forEach (function (obj) {
obj.dataValue = Math.round(obj.dataValue * Math.pow(10, node.decimalPoint)) / Math.pow(10, node.decimalPoint);
});
});
} else {
// round処理未実施:生データ
}
}
} catch (e) {
// 表示桁数変換データが存在しなかった場合はエラー出力
console.log("表示桁数変換対象データがありません");
node.error("dynamodb.js -round:表示桁数変換対象データがありません");
}
return items;
}
/* 文字列コピー関数*/
var copyArg=function(src,arg,out,outArg,isObject){
var tmpValue=src[arg];
outArg = (typeof outArg !== 'undefined') ? outArg : arg;
if (typeof src[arg] !== 'undefined'){
if (isObject && typeof src[arg]=="string" && src[arg] != "") {
tmpValue=JSON.parse(src[arg]);
}
out[outArg]=tmpValue;
}
if (arg=="Payload" && typeof tmpValue == 'undefined'){
out[arg]=src["payload"];
}
}
// 処理毎にserivceを設定
var service={};
// Query処理を行う際のservice
service.Query=function(msg){
var params={};
//copyArgs
copyArg(msg,"TableName",params,undefined,false);
copyArg(msg,"IndexName",params,undefined,false);
copyArg(msg,"Select",params,undefined,false);
copyArg(msg,"AttributesToGet",params,undefined,true);
copyArg(msg,"Limit",params,undefined,false);
copyArg(msg,"ConsistentRead",params,undefined,false);
copyArg(msg,"KeyConditions",params,undefined,false);
copyArg(msg,"QueryFilter",params,undefined,true);
copyArg(msg,"ConditionalOperator",params,undefined,false);
copyArg(msg,"ScanIndexForward",params,undefined,false);
copyArg(msg,"ExclusiveStartKey",params,undefined,true);
copyArg(msg,"ReturnConsumedCapacity",params,undefined,false);
copyArg(msg,"ProjectionExpression",params,undefined,false);
// copyArg(msg,"FilterExpression",params,undefined,false);
copyArg(msg,"KeyConditionExpression",params,undefined,false);
copyArg(msg,"ExpressionAttributeNames",params,undefined,true);
copyArg(msg,"ExpressionAttributeValues",params,undefined,true);
reqbody.params = params;
}
// Scan処理を行う際のservice
service.Scan=function(msg){
var params={};
//copyArgs
copyArg(msg,"TableName",params,undefined,false);
copyArg(msg,"IndexName",params,undefined,false);
copyArg(msg,"AttributesToGet",params,undefined,true);
copyArg(msg,"Limit",params,undefined,false);
copyArg(msg,"Select",params,undefined,false);
copyArg(msg,"ScanFilter",params,undefined,true);
copyArg(msg,"ConditionalOperator",params,undefined,false);
copyArg(msg,"ExclusiveStartKey",params,undefined,true);
copyArg(msg,"ReturnConsumedCapacity",params,undefined,false);
copyArg(msg,"TotalSegments",params,undefined,false);
copyArg(msg,"Segment",params,undefined,false);
copyArg(msg,"ProjectionExpression",params,undefined,false);
copyArg(msg,"FilterExpression",params,undefined,false);
copyArg(msg,"ExpressionAttributeNames",params,undefined,true);
copyArg(msg,"ExpressionAttributeValues",params,undefined,true);
copyArg(msg,"ConsistentRead",params,undefined,false);
reqbody.params = params;
}
// PutItem処理を行う際のservice
service.PutItem=function(msg){
var params={};
//copyArgs
copyArg(msg,"TableName",params,undefined,false);
copyArg(msg,"Item",params,undefined,true);
copyArg(msg,"Expected",params,undefined,true);
copyArg(msg,"ReturnValues",params,undefined,false);
copyArg(msg,"ReturnConsumedCapacity",params,undefined,false);
copyArg(msg,"ReturnItemCollectionMetrics",params,undefined,false);
copyArg(msg,"ConditionalOperator",params,undefined,false);
copyArg(msg,"ConditionExpression",params,undefined,false);
copyArg(msg,"ExpressionAttributeNames",params,undefined,true);
copyArg(msg,"ExpressionAttributeValues",params,undefined,true);
reqbody.params = params;
}