-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopulate.js
181 lines (157 loc) · 5.02 KB
/
populate.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
#! /usr/bin/env node
console.log(
`This script populates some courses categories,
courses, images srcs and instructors in the database.
Specified database as argument
- e.g.: node populatedb "mongodb+srv://cooluser:coolpassword@cluster0.lz91hw2.mongodb.net/local_library?retryWrites=true&w=majority"`
);
// Get arguments passed on command line
/* process.argv return an array of command line arguments passed
where runing a node script and elements at position
0 and 1 are respectively absolute path of node executable and
of the script being executed */
const userArgs = process.argv.slice(2);
//import models
const Category = require("./models/CategoryModel");
const Instructor = require("./models/InstructorModel");
const Course = require("./models/CourseModel");
const Image = require("./models/ImageModel");
const path = require("path");
const publicFolderPath = path.join(__dirname, "public", "images");
const mathCourseImg = path.join(publicFolderPath, "math.jpg");
const RichardFeynman = path.join(publicFolderPath, "richardFeynman.jpg");
const webdevImage = path.join(publicFolderPath, "webDev.png");
const webdevCourse = path.join(publicFolderPath, "web-dev.png");
const financeImage = path.join(publicFolderPath, "finance.jpg");
/* //import some Images from public folder
const mathCourseImg = require("./public/images/math.jpg");
const RichardFeynman = require("./public/images/richardFeynman.jpg");
const webdevImage = require("./public/images/webDev.png");
const webdevCourse = require("./public/images/web-dev.png");
const financeImage = require("./public/images/finance.jpg");
*/
const categories = [];
const instructors = [];
const courses = [];
const images = [];
const mongoose = require("mongoose");
mongoose.set("strictQuery", false); // Prepare for Mongoose 7
const mongoDB = userArgs[0];
main().catch((err) => console.log(err));
async function main() {
console.log("Debug: About to connect");
await mongoose.connect(mongoDB);
console.log("Debug: Should be connected?");
await createCategories();
await createInstructors();
await createImages();
await createCourses();
console.log("Debug: Closing mongoose");
mongoose.connection.close();
}
async function createCategory(name, description) {
const category = new Category({ name: name, description: description });
await category.save();
categories.push(category);
console.log(`Added category: ${name}`);
}
async function createInstructor(first_name, family_name, qualifications) {
const instructorDetails = {
first_name: first_name,
last_name: family_name,
};
if (qualifications != false)
instructorDetails.qualifications = qualifications;
const instructor = new Instructor(instructorDetails);
await instructor.save();
instructors.push(instructor);
console.log(`Added instructor: ${first_name} ${family_name}`);
}
async function createCourse(
title,
description,
category,
price,
instructor,
img
) {
const courseDetail = {
title: title,
description: description,
category,
category,
price: price,
instructor: instructor,
img: img,
};
const course = new Course(courseDetail);
await course.save();
courses.push(course);
console.log(`Added course: ${title}`);
}
async function createImage(src, alt) {
const imageDetails = {
src: src,
alt: alt,
};
const image = new Image(imageDetails);
await image.save();
images.push(image);
console.log(`Added image: ''}`);
}
async function createImages() {
console.log("Adding images ");
await Promise.all([
createImage(RichardFeynman, "Richard Feynman"),
createImage(webdevCourse, "web development"),
createImage(webdevImage, "development category"),
createImage(financeImage, "finance category"),
createImage(mathCourseImg, "math course"),
]);
}
async function createCategories() {
console.log("Adding categories");
await Promise.all([
createCategory(
"Finance",
"This category contains anything you must know in the domaine of finance "
),
createCategory(
"Mathematics",
"This contains anything you must know about mathematics and how they are used in the real world"
),
]);
}
async function createInstructors() {
console.log("Adding instructors");
await Promise.all([
createInstructor(
"Richard",
"Feynman",
"a God of Maths, physics and anything related to knowledge"
),
createInstructor("James", "Padolsey", "author and software develope"),
createInstructor("anthon", "Spraul", "author and programmer"),
]);
}
async function createCourses() {
console.log("Adding courses");
await Promise.all([
createCourse(
"node novice to ninja",
"Here you are going to learn everything from the begining and become a real node ninja ",
categories[0],
0,
instructors[0],
images[0]
),
createCourse(
"Math for computer science ",
"in this course you are going to learn any maths required to make you better programmer ",
categories[1],
0,
instructors[0],
images[1]
),
]);
}