-
Notifications
You must be signed in to change notification settings - Fork 0
/
import-mapswipe.js
executable file
·232 lines (176 loc) · 6.11 KB
/
import-mapswipe.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
"use strict";
var parse = require('csv-parse');
var CSVParser = require("./src/CSVParser");
const fs = require('fs');
var fileToParse = null;
var projectId = null;
var Model = require('./src/Model');
var PythonShell = require('python-shell');
var rest = require('restling');
var model = new Model();
/**
* Starts the import process for Mapswipe.
* 1) Get the import data from firebase
* 2) runs the python shell on each project
* 3) run the csv parser on each
* 4) Geogrouping places it in Firebase
*
*/
var importProjects = {};
/**
* Gets the projects to import from firebase, runs some security checks, and processes them.
*/
// keeps track of the amount of python threads active so that we can launch the CSV importer after all is done.
var pythonCount = 0;
var startImport = function() {
var highestProjectId = 0;
"use strict";
importProjects = {};
pythonCount = 0;
// set the highest project id
rest.get('https://YOUR-DOMAIN.firebaseio.com/projects.json?shallow=true').then(function(result){
Object.keys(result).forEach(key => {
if(parseInt(key) > highestProjectId) {
highestProjectId = parseInt(key);
console.log("Highest id set to:" + key);
}
});
}, function(error){
console.log(error.message);
});
// runs the import
model.getProjects().then(data => {
try {
var projectNameFilter = {};
// ensure that no data is overwritten 1 more time
Object.keys(data).forEach(function (proj) {
if (parseInt(data[proj].id) > highestProjectId) {
highestProjectId = parseInt(data[proj].id);
}
projectNameFilter[data[proj].name] = true;
//projectNameFilter.push(proj.name);
console.log(projectNameFilter);
});
}catch(err){
console.log(err);
}
// get all the projects to import
model.getProjectsToImport().then(data2 => {
// iterate over all the keys in the importer, add the ones to the import cache that are not yet complete
console.log("Importing:" + Object.keys(data2).length);
Object.keys(data2).forEach(function(proj) {
if(data2[proj].complete === true) {
console.log("was complete, not doing" + proj);
return;
}
if(projectNameFilter[data2[proj].project.name] !== undefined) {
console.log("already found this project, not importing it" + proj);
return;
}
// assign the ID
data2[proj].project.importKey = proj;
importProjects[highestProjectId+100+Math.floor((Math.random() * 100) + 1)] = data2[proj]; // to avoid collisions, we add 100 and a random of 100 per project
});
// iterate over the import cache, fire off import events for each
Object.keys(importProjects).forEach(key => {
startProjectImport(key, importProjects[key]);
})
});
}).catch(error => {
console.log("error");
console.log(error);
});
};
/**
* Process the python file and start an import project on a separate thread
* @param newProjId
* @param importObject
*/
// amount of python tasks finished
var startProjectImport = function(newProjId, importObject) {
pythonCount++;
console.log("starting import for project " + newProjId);
fs.unlink(newProjId+".csv", function(error) {
console.log('removed csv '+newProjId+'!');
});
fs.unlink(newProjId+".json", function(error) {
console.log('removed csv '+newProjId+'!');
});
fs.unlink(newProjId+".kml", function(error) {
fs.appendFile(newProjId+".kml", importObject.kml, (err) => {
if (err) throw err;
pythonCount--;
if(pythonCount === 0) {
startCSVImports();
}
console.log('The "data to append" was appended to file '+newProjId+'!');
});
})
}
var startCSVImports = function(offset) {
// get
var firstObject = null;
Object.keys(importProjects).forEach(key => {
if(firstObject === null) {
firstObject = key;
return;
}
})
// starts the first csv import, needs to spawn the next
var options = {
args: [firstObject+".kml", 18]
};
console.log("Starting import with python for project:" + firstObject);
PythonShell.run('create_csv.py', options, function (err2, results) {
if (err2) console.log(err2.message);
console.log('results: %j', results);
startCSVImport(firstObject, importProjects[firstObject].project);
});
}
var startNextImport = function(last) {
// get
var lastFound = false;
var next = null;
Object.keys(importProjects).forEach(key => {
if(lastFound === true) {
if(next === null) {
next = key;
}
}
if(key === last) {
lastFound = true;
}
})
if(lastFound === true && next === null) {
// we receachd the end
console.log("the end");
return;
}
var options = {
args: [next+".kml", 18]
};
console.log("Starting import with python for project:" + next);
PythonShell.run('create_csv.py', options, function (err2, results) {
if (err2) console.log(err2.message);
console.log('results: %j', results);
startCSVImport(next, importProjects[next].project);
});
// starts the first csv import, needs to spawn the next
}
var startCSVImport = function(projectId, project) {
"use strict";
try {
var csvp = new CSVParser();
console.log("Running for project id: " + projectId);
console.log("Project is:");
console.log(project);
csvp.run(projectId + "_tiles.csv", projectId, project, startNextImport);
}catch(err) {
console.log("ah");
console.log(err);
}
};
startImport()
setTimeout(function() {
startImport()
}, 3600000); // run every 1 hour