-
Notifications
You must be signed in to change notification settings - Fork 0
/
populatedb.js
207 lines (187 loc) · 6.92 KB
/
populatedb.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
#! /usr/bin/env node
console.log(
'This script populates some test books, authors, genres and bookinstances to your database. Specified database as argument - e.g.: node populatedb "mongodb+srv://cooluser:[email protected]/local_library?retryWrites=true&w=majority"'
);
// Get arguments passed on command line
const userArgs = process.argv.slice(2);
const Book = require("./models/book");
const Author = require("./models/author");
const Genre = require("./models/genre");
const BookInstance = require("./models/bookInstance");
const genres = [];
const authors = [];
const books = [];
const bookinstances = [];
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 createGenres();
await createAuthors();
await createBooks();
await createBookInstances();
console.log("Debug: Closing mongoose");
mongoose.connection.close();
}
async function genreCreate(name) {
const genre = new Genre({ name: name });
await genre.save();
genres.push(genre);
console.log(`Added genre: ${name}`);
}
async function authorCreate(first_name, family_name, d_birth, d_death) {
const authordetail = { first_name: first_name, family_name: family_name };
if (d_birth != false) authordetail.date_of_birth = d_birth;
if (d_death != false) authordetail.date_of_death = d_death;
const author = new Author(authordetail);
await author.save();
authors.push(author);
console.log(`Added author: ${first_name} ${family_name}`);
}
async function bookCreate(title, summary, isbn, author, genre) {
const bookdetail = {
title: title,
summary: summary,
author: author,
isbn: isbn,
};
if (genre != false) bookdetail.genre = genre;
const book = new Book(bookdetail);
await book.save();
books.push(book);
console.log(`Added book: ${title}`);
}
async function bookInstanceCreate(book, imprint, due_back, status) {
const bookinstancedetail = {
book: book,
imprint: imprint,
};
if (due_back != false) bookinstancedetail.due_back = due_back;
if (status != false) bookinstancedetail.status = status;
const bookinstance = new BookInstance(bookinstancedetail);
await bookinstance.save();
bookinstances.push(bookinstance);
console.log(`Added bookinstance: ${imprint}`);
}
async function createGenres() {
console.log("Adding genres");
await Promise.all([
genreCreate("Fantasy"),
genreCreate("Science Fiction"),
genreCreate("French Poetry"),
]);
}
async function createAuthors() {
console.log("Adding authors");
await Promise.all([
authorCreate("Patrick", "Rothfuss", "1973-06-06", false),
authorCreate("Ben", "Bova", "1932-11-8", false),
authorCreate("Isaac", "Asimov", "1920-01-02", "1992-04-06"),
authorCreate("Bob", "Billings", false, false),
authorCreate("Jim", "Jones", "1971-12-16", false),
]);
}
async function createBooks() {
console.log("Adding Books");
await Promise.all([
bookCreate(
"The Name of the Wind (The Kingkiller Chronicle, #1)",
"I have stolen princesses back from sleeping barrow kings. I burned down the town of Trebon. I have spent the night with Felurian and left with both my sanity and my life. I was expelled from the University at a younger age than most people are allowed in. I tread paths by moonlight that others fear to speak of during day. I have talked to Gods, loved women, and written songs that make the minstrels weep.",
"9781473211896",
authors[0],
[genres[0]]
),
bookCreate(
"The Wise Man's Fear (The Kingkiller Chronicle, #2)",
"Picking up the tale of Kvothe Kingkiller once again, we follow him into exile, into political intrigue, courtship, adventure, love and magic... and further along the path that has turned Kvothe, the mightiest magician of his age, a legend in his own time, into Kote, the unassuming pub landlord.",
"9788401352836",
authors[0],
[genres[0]]
),
bookCreate(
"The Slow Regard of Silent Things (Kingkiller Chronicle)",
"Deep below the University, there is a dark place. Few people know of it: a broken web of ancient passageways and abandoned rooms. A young woman lives there, tucked among the sprawling tunnels of the Underthing, snug in the heart of this forgotten place.",
"9780756411336",
authors[0],
[genres[0]]
),
bookCreate(
"Apes and Angels",
"Humankind headed out to the stars not for conquest, nor exploration, nor even for curiosity. Humans went to the stars in a desperate crusade to save intelligent life wherever they found it. A wave of death is spreading through the Milky Way galaxy, an expanding sphere of lethal gamma ...",
"9780765379528",
authors[1],
[genres[1]]
),
bookCreate(
"Death Wave",
"In Ben Bova's previous novel New Earth, Jordan Kell led the first human mission beyond the solar system. They discovered the ruins of an ancient alien civilization. But one alien AI survived, and it revealed to Jordan Kell that an explosion in the black hole at the heart of the Milky Way galaxy has created a wave of deadly radiation, expanding out from the core toward Earth. Unless the human race acts to save itself, all life on Earth will be wiped out...",
"9780765379504",
authors[1],
[genres[1]]
),
bookCreate(
"Test Book 1",
"Summary of test book 1",
"ISBN111111",
authors[4],
[genres[0], genres[1]]
),
bookCreate(
"Test Book 2",
"Summary of test book 2",
"ISBN222222",
authors[4],
false
),
]);
}
async function createBookInstances() {
console.log("Adding authors");
await Promise.all([
bookInstanceCreate(books[0], "London Gollancz, 2014.", false, "Available"),
bookInstanceCreate(books[1], " Gollancz, 2011.", false, "Loaned"),
bookInstanceCreate(books[2], " Gollancz, 2015.", false, false),
bookInstanceCreate(
books[3],
"New York Tom Doherty Associates, 2016.",
false,
"Available"
),
bookInstanceCreate(
books[3],
"New York Tom Doherty Associates, 2016.",
false,
"Available"
),
bookInstanceCreate(
books[3],
"New York Tom Doherty Associates, 2016.",
false,
"Available"
),
bookInstanceCreate(
books[4],
"New York, NY Tom Doherty Associates, LLC, 2015.",
false,
"Available"
),
bookInstanceCreate(
books[4],
"New York, NY Tom Doherty Associates, LLC, 2015.",
false,
"Maintenance"
),
bookInstanceCreate(
books[4],
"New York, NY Tom Doherty Associates, LLC, 2015.",
false,
"Loaned"
),
bookInstanceCreate(books[0], "Imprint XXX2", false, false),
bookInstanceCreate(books[1], "Imprint XXX3", false, false),
]);
}