-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_to_db.js
233 lines (192 loc) · 5.16 KB
/
data_to_db.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
const express = require('express');
const app = express();
const fs = require('fs');
const db = require('./db');
const brandsData = require('./brands_list.json');
const servicesData = require('./services_list.json');
const stosKh = require('./sto_kh_all.json');
const serviceTypesData = require('./service_types_list.json');
// shemas
const Sto = require('./schemas/stoSchema');
const Brand = require('./schemas/brandSchema').brandModel;
const Service = require('./schemas/serviceSchema').serviceModel;
const ServiceType = require('./schemas/serviceTypeSchema').serviceTypeModel;
const getStoDetails = (sto) => {
return JSON.parse(fs.readFileSync(`${__dirname}/details/${sto.id}.json`, 'utf8'));
};
const findStos = () => {
Sto.find((err, stos) => {
if (err) return console.error(err);
console.log(stos);
})
};
const writeBrandsCollection = () => {
let finished = 0;
let brandsDataLength = brandsData.length;
brandsData.forEach((brand) => {
let newBrand = new Brand({name: brand});
newBrand.save(err => {
if (err) return console.err('writeBrandsCollection error: ', err);
finished++;
if (finished == brandsDataLength) {
console.log('Brands Collection write finished!');
}
})
})
};
const writeServicesCollection = () => {
let finished = 0;
let servicesDataLength = servicesData.length;
servicesData.forEach((service) => {
let newService = new Service({name: service});
newService.save(err => {
if (err) return console.err('writeServicesCollection error: ', err);
finished++;
if (finished == servicesDataLength) {
console.log('Service Collection write finished!');
}
});
});
};
const writeServiceTypesCollection = () => {
let finished = 0;
let serviceTypesDataLength = serviceTypesData.length;
serviceTypesData.forEach((service) => {
let newServiceType = new ServiceType({name: service});
newServiceType.save(err => {
if (err) return console.err('writeServiceTypesCollection error: ', err);
finished++;
if (finished == serviceTypesDataLength) {
console.log('Service Types Collection write finished!');
}
});
});
};
// Create Stos Collection helpers START
const getServiceType = (data) => {
const promise = new Promise((resolve, reject) => {
ServiceType.find({name: data.service_type}, (err, sType) => {
if (err) {
console.error('getServiceType error: ', err)
reject({
error: err
});
return;
}
resolve(sType[0]._id);
})
})
return promise;
};
const getBrandsArr = (data) => {
const promise = new Promise((resolve, reject) => {
let finished = 0;
let brandsCount = data.brands.length
let brandsArr = [];
if (brandsCount === 0) resolve([]);
data.brands.forEach((brand) => {
Brand.find({name: brand}, (err, resBrand) => {
let brand = resBrand[0];
if (brand) {
brandsArr.push(brand._id);
}
finished++;
if (finished === brandsCount) {
resolve(brandsArr);
}
});
});
})
return promise;
}
const getServicesArr = (data) => {
const promise = new Promise((resolve, reject) => {
let finished = 0;
let servicesCount = data.services.length
let serviceArr = [];
if (servicesCount === 0) resolve([]);
data.services.forEach((service) => {
Service.find({name: service}, (err, resService) => {
let service = resService[0];
if (service) {
serviceArr.push(service._id);
}
finished++;
if (finished === servicesCount) {
resolve(serviceArr);
}
});
});
})
return promise;
}
// Create Stos Collection helpers END
const writeStosCollection = (stoData) => {
return new Promise((resolve, reject) => {
let stoDetails = getStoDetails(stoData);
Promise.all([getServiceType(stoData),
getBrandsArr(stoDetails),
getServicesArr(stoDetails)])
.then(resArr => {
let newSto = new Sto({
id: stoData.id,
name: stoData.name,
title: stoData.title,
tel: stoData.tel,
address: stoData.address,
lat: stoData.lat,
lng: stoData.lng,
url: stoDetails.url,
service_type: resArr[0],
brands: resArr[1],
services: resArr[2]
});
newSto.save((err) => {
if (err) reject('Sto not saved! Err: ', err);
resolve(`Sto ID = ${newSto.id} SAVED...`);
});
})
});
};
const port = 7755;
app.listen(port, () => {
console.log(`SERVER STARTED ON PORT ${port}...`);
db.openDbConnection();
db.connectToDb(
() => {
let finished = 0;
stosKh.forEach((sto) => {
writeStosCollection(sto).then((result) => {
finished++;
console.log(result);
if (stosKh.length === finished) {
console.log('Stos db collection filled!!!');
}
}).catch((err) => {
console.error(err);
});
});
// Sto
// .findOne({id: 327})
// .populate('service_type')
// .populate('brands')
// .populate('services')
// .exec((err, sto) => {
// if (err) return console.error('Error geting sto: ', err);
// console.log(sto);
// })
}
);
});
// TO SORT SOMTH
// brands.sort((a, b) => {
// const A = a.name.toUpperCase();
// const B = b.name.toUpperCase();
// let comparison = 0;
// if (A > B) {
// comparison = 1;
// } else if (A < B) {
// comparison = -1;
// }
// return comparison;
// });