-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreatedummycampaigns.js
73 lines (65 loc) · 2.44 KB
/
createdummycampaigns.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
const AWS = require('aws-sdk');
const moment = require('moment');
const accessKeyID = process.env.ACCESS_KEY_ID;
const secretAccessKey = process.env.SECRET_ACCESS_KEY;
const region = process.env.REGION;
var documentClient = new AWS.DynamoDB.DocumentClient({accessKeyId: accessKeyID, secretAccessKey: secretAccessKey, region: region, apiVersion: '2012-10-08'});
var active = 60;
var fairlyActive = 180;
var params = {
TableName: 'usertable'
};
function createCampaignId() {
var text = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
for (var i = 0; i < 10; i++)
text += possible.charAt(Math.floor(Math.random() * possible.length));
return text;
}
function getRandomChannelCount() {
var result = [1,2,3];
return result[Math.floor(Math.random()*result.length)];
}
function getRandomStatus() {
var result = [1, 0];
return result[Math.floor(Math.random()*2)];
}
documentClient.scan(params, function(err, data) {
if (err) {
console.log(err);
res.status(400).json({status: 400, message: 'error in fetching data'});
} else {
var currentTime = moment();
data.Items.forEach(function(element, index, array) {
var lastLogin = moment(element["last_login"],'DD/MM/YYYY');
var dateDiff = 0;
if(lastLogin) {
dateDiff = currentTime.diff(lastLogin, 'days');
}
if(dateDiff <= active) {
} else if(dateDiff <= fairlyActive) {
var channelCount = getRandomChannelCount();
for(var i=0 ; i < channelCount; i++) {
var campaign = {
campaignid: createCampaignId(),
userid: element["id"],
channel: ["whatsapp","email","webpush"][i],
status: getRandomStatus(),
date: moment().format("DD/MM/YYYY")
}
var campaignParam = {
TableName: 'campaigntable',
Item: campaign
}
documentClient.put(campaignParam, function(err, data) {
if (err == null) {
console.log(data);
} else {
console.log(err);
}
});
}
}
});
}
});