forked from awslabs/aws-lambda-redshift-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocessedFiles.js
More file actions
executable file
·73 lines (62 loc) · 2.14 KB
/
processedFiles.js
File metadata and controls
executable file
·73 lines (62 loc) · 2.14 KB
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
#!/usr/bin/env node
/*
Copyright 2014-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
Licensed under the Amazon Software License (the "License"). You may not use this file except in compliance with the License. A copy of the License is located at
http://aws.amazon.com/asl/
or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions and limitations under the License.
*/
var aws = require('aws-sdk');
require('./constants');
var args = require('minimist')(process.argv.slice(2));
var common = require('./common');
var setRegion = args.region;
var queryOption = args.query;
var deleteOption = args.delete;
var reproOption = args.reprocess;
var file = args.file
if (!setRegion || (!queryOption && !deleteOption && !reproOption) || !file) {
console.log("You must provide an AWS Region Code (--region), Query (--query), Delete (--delete), or Reprocess (--reprocess) option, and the specified Filename (--file)");
process.exit(-1);
}
var dynamoDB = new aws.DynamoDB({
apiVersion: '2012-08-10',
region: setRegion
});
var s3 = new aws.S3({
apiVersion: '2006-03-01',
region: setRegion
});
var fileItem = {
Key: {
loadFile: {
S: file
}
},
TableName: filesTable
};
var doExit = function (err, data, message) {
if (err) {
console.log(err);
process.exit(error);
} else {
if (data && data.Item) {
console.log(JSON.stringify(data.Item));
}
if (message) {
console.log(message);
}
}
};
if (deleteOption) {
dynamoDB.deleteItem(fileItem, function (err, data) {
doExit(err, data, "File Entry " + file + " deleted successfully");
});
} else if (queryOption) {
dynamoDB.getItem(fileItem, function (err, data) {
doExit(err, data);
});
} else if (reproOption) {
common.inPlaceCopyFile(s3, undefined, file, function (err, data) {
doExit(err, data, "File Entry " + file + " reprocessed successfully");
});
}