-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgameSeeder.js
324 lines (306 loc) · 8.57 KB
/
gameSeeder.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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
// PACKAGES
import express from "express";
import mongoose from "mongoose";
import dotenv from "dotenv";
import colors from "colors";
// DATA
import ps5Games from "./data/ps5Games.js";
import ps4Games from "./data/ps4Games.js";
import xboxSeries from "./data/xboxSeriesGames.js";
import xboxOneGames from "./data/xboxOneGames.js";
import switchGames from "./data/switchGames.js";
// MODELS
import Game from "./model/gamesModel.js";
import User from "./model/userModel.js";
dotenv.config();
const connectDB = async () => {
try {
const conn = await mongoose.connect(process.env.MONGO_URI, {
useNewUrlParser: true,
useUnifiedTopology: true,
useCreateIndex: true,
});
console.log(`MongoDB connected successfully: ${conn.connection.host} `);
} catch (error) {
console.error(`MongoDB Error: ${error.message}`);
process.exit(1);
}
};
connectDB();
const importData = async () => {
try {
// Extract 'ADMIN' user from DB to add to each game below
const createdUsers = await User.find({ isAdmin: true });
const adminUser = createdUsers[0]._id;
// DELETE ENTIRE 'GAME' DATABASE
// await Game.deleteMany();
// console.log("Data DELETED".red.inverse);
// MAPPED GAMES
const newps5Games = ps5Games.map(
({
slug,
name,
platforms,
released,
background_image,
rating,
ratings_count,
reviews_count,
metacritic,
esrb_rating,
short_screenshots,
parent_platforms,
genres,
id,
}) => {
return {
slug,
name,
platforms: platforms.map((eachItem) => eachItem.platform.name),
released,
background_image,
rating,
ratings_count,
reviews_count,
metacriticScore: metacritic,
age_rating: esrb_rating !== null ? esrb_rating.name : "Not rated",
screenshots: short_screenshots.map((eachShot) => eachShot.image),
parent_platforms: parent_platforms.map(
(eachItem) => eachItem.platform.name
),
genres: genres.map((eachGenre) => eachGenre.name),
gameID: id,
category: "Video Game",
platform: "PS5",
user: adminUser,
gameDescription: "",
};
}
);
const newps4Games = ps4Games.map(
({
slug,
name,
platforms,
released,
background_image,
rating,
ratings_count,
reviews_count,
metacritic,
esrb_rating,
short_screenshots,
parent_platforms,
genres,
id,
}) => {
return {
slug,
name,
platforms: platforms.map((eachItem) => eachItem.platform.name),
released,
background_image,
rating,
ratings_count,
reviews_count,
metacriticScore: metacritic,
age_rating: esrb_rating !== null ? esrb_rating.name : "Not rated",
screenshots: short_screenshots.map((eachShot) => eachShot.image),
parent_platforms: parent_platforms.map(
(eachItem) => eachItem.platform.name
),
genres: genres.map((eachGenre) => eachGenre.name),
gameID: id,
category: "Video Game",
platform: "PS4",
user: adminUser,
gameDescription: "",
};
}
);
const newXboxSeriesGames = xboxSeries.map(
({
slug,
name,
platforms,
released,
background_image,
rating,
ratings_count,
reviews_count,
metacritic,
esrb_rating,
short_screenshots,
parent_platforms,
genres,
id,
}) => {
return {
slug,
name,
platforms: platforms.map((eachItem) => eachItem.platform.name),
released,
background_image,
rating,
ratings_count,
reviews_count,
metacriticScore: metacritic,
age_rating: esrb_rating !== null ? esrb_rating.name : "Not rated",
screenshots: short_screenshots.map((eachShot) => eachShot.image),
parent_platforms: parent_platforms.map(
(eachItem) => eachItem.platform.name
),
genres: genres.map((eachGenre) => eachGenre.name),
gameID: id,
category: "Video Game",
platform: "Xbox Series X|S",
user: adminUser,
gameDescription: "",
};
}
);
const newXboxOneGames = xboxOneGames.map(
({
slug,
name,
platforms,
released,
background_image,
rating,
ratings_count,
reviews_count,
metacritic,
esrb_rating,
short_screenshots,
parent_platforms,
genres,
id,
}) => {
return {
slug,
name,
platforms: platforms.map((eachItem) => eachItem.platform.name),
released,
background_image,
rating,
ratings_count,
reviews_count,
metacriticScore: metacritic,
age_rating: esrb_rating !== null ? esrb_rating.name : "Not rated",
screenshots: short_screenshots.map((eachShot) => eachShot.image),
parent_platforms: parent_platforms.map(
(eachItem) => eachItem.platform.name
),
genres: genres.map((eachGenre) => eachGenre.name),
gameID: id,
category: "Video Game",
platform: "Xbox One",
user: adminUser,
gameDescription: "",
};
}
);
const newSwitchGames = switchGames.map(
({
slug,
name,
platforms,
released,
background_image,
rating,
ratings_count,
reviews_count,
metacritic,
esrb_rating,
short_screenshots,
parent_platforms,
genres,
id,
}) => {
return {
slug,
name,
platforms: platforms.map((eachItem) => eachItem.platform.name),
released,
background_image,
rating,
ratings_count,
reviews_count,
metacriticScore: metacritic,
age_rating: esrb_rating !== null ? esrb_rating.name : "Not rated",
screenshots: short_screenshots.map((eachShot) => eachShot.image),
parent_platforms: parent_platforms.map(
(eachItem) => eachItem.platform.name
),
genres: genres.map((eachGenre) => eachGenre.name),
gameID: id,
category: "Video Game",
platform: "Nintendo Switch",
user: adminUser,
gameDescription: "",
};
}
);
const mergedResults = [
...newps5Games,
...newps4Games,
...newXboxSeriesGames,
...newXboxOneGames,
...newSwitchGames,
];
// REMOVE DUPLICATES using SET
const set = new Set();
const finalResult = mergedResults.filter((obj) => {
const duplicate = set.has(obj.gameID);
set.add(obj.gameID);
return duplicate;
});
// finalResult.forEach((val) => console.log(val.name));
await Game.insertMany(finalResult);
console.log("Data Imported".green.inverse);
process.exit();
} catch (error) {
console.error(`${error}`.red.inverse.bold);
process.exit(1);
}
};
// importData();
const importSingleGame = async () => {
try {
await Game.create({
slug: bogusData[0].slug,
name: bogusData[0].name,
platforms: bogusData[0].platforms.map(
(eachItem) => eachItem.platform.name
),
released: bogusData[0].released,
background_image: bogusData[0].background_image,
rating: bogusData[0].rating,
ratings_count: bogusData[0].ratings_count,
reviews_count: bogusData[0].reviews_count,
metacriticScore: bogusData[0].metacritic,
age_rating:
bogusData[0].esrb_rating !== null
? bogusData[0].esrb_rating.name
: "Not rated",
screenshots: bogusData[0].short_screenshots.map(
(eachShot) => eachShot.image
),
parent_platforms: bogusData[0].parent_platforms.map(
(eachItem) => eachItem.platform.name
),
genres: bogusData[0].genres.map((eachGenre) => eachGenre.name),
gameID: bogusData[0].id,
category: "Video Game",
platform: "6107191c56131a1d940acb55",
description: bogusData[0].description,
publisher: bogusData[0].publisher,
developer: bogusData[0].developer,
});
process.exit();
} catch (error) {
console.log(error.message);
process.exit(1);
}
};
// importSingleGame();