-
Notifications
You must be signed in to change notification settings - Fork 0
/
TomTomAPI.js
292 lines (276 loc) · 6.67 KB
/
TomTomAPI.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
import axios from "axios";
import { planAdded, planReseted } from "../redux/plans/PlansSlice";
import { CapitalizeWord } from "../utils/GeneralUtils";
const TomTomAPIKey = ["Añadir clave 1", "Añadir clave 2"];
export function nearbySearchAPIUrl(
keyIndex,
maxResults,
radius,
lat,
lon,
ofs,
categorySet
) {
return (
"https://api.tomtom.com/search/2/nearbySearch/.json?key=" +
TomTomAPIKey[keyIndex] +
"&lat=" +
lat +
"&lon=" +
lon +
"&radius=" +
radius +
"&limit=" +
maxResults +
"&ofs=" +
ofs * 10 +
"&categorySet=" +
categorySet
);
}
export function detailsSearchAPIUrl(keyIndex, detailsId) {
return (
"https://api.tomtom.com/search/2/poiDetails.json?key=" +
TomTomAPIKey[keyIndex] +
"&sourceName=Foursquare&id=" +
detailsId
);
}
export function photoSearchAPIUrl(keyIndex, photoId) {
return (
"https://api.tomtom.com/search/2/poiPhoto?key=" +
TomTomAPIKey[keyIndex] +
"&id=" +
photoId +
"&height=1350&width=1080"
);
}
export const fetchPlans = async (
keyIndex,
dispatch,
categorySet,
reloadedCards,
swipedPlans,
longitude,
latitude,
radius
) => {
try {
dispatch(planReseted());
const response = await axios.get(
nearbySearchAPIUrl(
keyIndex,
20,
radius,
latitude,
longitude,
reloadedCards,
categorySet
),
{
responseType: "json",
}
);
if (response.status === 200) {
let totalResults = response.data.summary.totalResults;
let maxOffset = Math.floor(totalResults / 10);
//Empty array to start filling the cleanedPlans
let plans = [];
let fetchedResults = cleanFetchedResults(response.data);
//Remove already swiped results
fetchedResults = removeAlreadySwipedResults(fetchedResults, swipedPlans);
//Look if there are some results
if (fetchedResults.length > 0) {
//Look for details of every result
const requests = fetchedResults.map(async (plan) => {
let fetchedPhoto = await fetchDetails(keyIndex, plan.id, false);
//Clean all information and fill the array
let cleanedPlan = cleanPlan(plan, fetchedPhoto);
plans.push(cleanedPlan);
});
Promise.all(requests).then(() => {
if (plans.length > 0) {
for (let key in plans) {
dispatch(planAdded(plans[key]));
}
} else {
if (keyIndex < TomTomAPIKey.length) {
keyIndex = keyIndex + 1;
} else {
keyIndex = 0;
}
fetchPlans(
keyIndex,
dispatch,
categorySet,
reloadedCards,
swipedPlans,
longitude,
latitude,
radius
);
}
});
} else {
if (maxOffset > reloadedCards) {
fetchPlans(
keyIndex,
dispatch,
categorySet,
reloadedCards + 1,
swipedPlans,
longitude,
latitude,
radius
);
} else {
fetchPlans(
keyIndex,
dispatch,
categorySet,
1,
swipedPlans,
longitude,
latitude,
radius + 1000
);
}
}
}
} catch (error) {
if (keyIndex < TomTomAPIKey.length) {
keyIndex = keyIndex + 1;
} else {
keyIndex = 0;
}
fetchPlans(
keyIndex,
dispatch,
categorySet,
reloadedCards,
swipedPlans,
longitude,
latitude,
1000
);
}
};
function cleanFetchedResults(data) {
let fetchedResults = data.results;
let cleanFetchedResults = [];
fetchedResults.map((fetchedResult) => {
if (fetchedResult.dataSources != undefined) {
cleanFetchedResults.push(fetchedResult);
}
});
return cleanFetchedResults;
}
function removeAlreadySwipedResults(fetchedResults, swipedPlans) {
if (swipedPlans.length > 0) {
let notRepeatedResults = [];
fetchedResults.map((result) => {
let notFound = swipedPlans.find((element) => element.id == result.id);
if (notFound == undefined) {
notRepeatedResults.push(result);
}
});
return notRepeatedResults;
} else {
return fetchedResults;
}
}
export async function fetchDetails(keyIndex, detailsId, allphotos) {
try {
const response = await axios.get(detailsSearchAPIUrl(keyIndex, detailsId), {
responseType: "json",
});
if (response.status === 200) {
//Get photos
let fetchedPhotos = response.data.result.photos;
let photos = [];
if (allphotos) {
photos = await Promise.all(
fetchedPhotos.map(async (photo) => {
return await fetchPhoto(keyIndex, photo.id);
})
);
} else {
let photo = await fetchPhoto(keyIndex, fetchedPhotos[0].id);
photos.push(photo);
}
return photos;
} else {
if (keyIndex < TomTomAPIKey.length) {
keyIndex = keyIndex + 1;
} else {
keyIndex = 0;
}
fetchDetails(keyIndex, detailsId, false);
}
} catch (error) {
if (axios.isCancel(error)) {
console.log("Data fetching cancelled");
}
}
}
async function fetchPhoto(keyIndex, photoId) {
try {
const response = await axios.get(photoSearchAPIUrl(keyIndex, photoId), {
responseType: "arraybuffer",
});
if (response.status === 200) {
//Get photo
return (
"data:image/png;base64," +
Buffer.from(response.data, "binary").toString("base64")
);
} else {
if (keyIndex < TomTomAPIKey.length) {
keyIndex = keyIndex + 1;
} else {
keyIndex = 0;
}
fetchPhoto(keyIndex, photoId);
}
} catch (error) {
if (axios.isCancel(error)) {
console.log("Data fetching cancelled");
}
}
}
function cleanPlan(plan, photos) {
let id = plan.id;
let name = plan.poi.name;
let phone = "undefined";
if (plan.poi.phone) {
phone = plan.poi.phone;
}
let url = "undefined";
if (plan.poi.url) {
url = plan.poi.url;
}
let city = plan.address.localName;
let address = plan.address.freeformAddress;
let distance = plan.dist;
let categories = "";
plan.poi.categories.map((category) => {
if (categories != "") {
categories = categories + " - " + CapitalizeWord(category);
} else {
categories = CapitalizeWord(category);
}
});
let classification = plan.poi.classifications[0].code;
return {
id,
name,
phone,
url,
city,
address,
distance,
categories,
classification,
photos,
};
}