Skip to content

Commit 3bd6c63

Browse files
committed
Merge commit 'caf59aa2c4d7f688522a91a04d71696f0c18b4a7'
2 parents e8a2db7 + caf59aa commit 3bd6c63

File tree

1 file changed

+31
-32
lines changed

1 file changed

+31
-32
lines changed

pages/api/openbiblioimport/migrateBooks.ts

+31-32
Original file line numberDiff line numberDiff line change
@@ -234,10 +234,9 @@ export default async function handler(
234234
const booklist = req.body as any;
235235
//console.log("Booklist", booklist);
236236
const bookCopy = booklist.biblio_copy[2].data;
237-
//for some reason, the real ID of the book is in the copy table.. didn't get it
237+
//bibid to barcode id, which is used in openlibry since it's printed in the books already!
238238
const bookIDMapping = createBookIDMapping(bookCopy);
239239
//filter out the books that have no barcode..
240-
//console.log("Book ID Mapping", bookIDMapping);
241240
const books = filterForBarcode(booklist.biblio[2].data, bookIDMapping);
242241
console.log("Filtered books", books.length);
243242
const bookStatus = filterForBarcode(
@@ -259,39 +258,38 @@ export default async function handler(
259258
existingUsers.add(parseInt(u.mbrid));
260259
});
261260

262-
//First create basic table with the biblio books
263-
const migratedBooks = books?.map((u: any) => {
261+
//First create basic table with the biblio table books
262+
books?.map((b: any) => {
264263
//map the fields from OpenBiblio correctly:
265264

266-
const barcodeID = bookIDMapping[u.bibid];
265+
const barcodeID = bookIDMapping[b.bibid];
267266
if (isNaN(barcodeID)) {
268-
console.log("Barcode not found", u.bibid);
267+
console.log("Barcode not found", b.bibid);
269268
return;
270269
}
271270

272271
const book = {
273272
id: barcodeID,
274-
275-
rentalStatus: "available",
276-
rentedDate: (u.status_begin_dt ??= new Date()),
277-
dueDate: (u.due_back_dt ??= new Date()),
278-
renewalCount: parseInt((u.renewal_count ??= 0)),
279-
title: (u.title ??= "FEHLER Titel nicht importiert"),
280-
subtitle: (u.title_remainder ??= "FEHLER Titel nicht importiert"),
281-
author: (u.author ??= "FEHLER Autor nicht importiert"),
273+
rentalStatus: transformRentalStatus(b.status_cd),
274+
rentedDate: (b.status_begin_dt ??= new Date()),
275+
dueDate: (b.due_back_dt ??= new Date()),
276+
renewalCount: parseInt((b.renewal_count ??= 0)),
277+
title: (b.title ??= "FEHLER Titel nicht importiert"),
278+
subtitle: (b.title_remainder ??= "FEHLER Titel nicht importiert"),
279+
author: (b.author ??= "FEHLER Autor nicht importiert"),
282280
topics:
283-
(u.topic1 ??= " ") +
281+
(b.topic1 ??= " ") +
284282
";" +
285-
(u.topic2 ??= " ") +
283+
(b.topic2 ??= " ") +
286284
";" +
287-
(u.topic3 ??= " ") +
285+
(b.topic3 ??= " ") +
288286
";" +
289-
(u.topic4 ??= " ") +
287+
(b.topic4 ??= " ") +
290288
";" +
291-
(u.topic5 ??= " "),
289+
(b.topic5 ??= " "),
292290
imageLink: "",
293291
} as BookType;
294-
console.log("Adding book", book);
292+
//console.log("Adding book", book);
295293
//transaction.push(addBook(prisma, book));
296294
//addBook(prisma, book);
297295
transaction.push(prisma.book.create({ data: { ...book } }));
@@ -300,34 +298,35 @@ export default async function handler(
300298
});
301299
console.log("Created books", importedBooksCount);
302300

301+
//Now all the books from the biblio table are imported with their values and rental status. But they are not connected to the users yet if renter
303302
//Attach rental status from history table in OpenBiblio
304303
let rentalStatusCount = 0;
305-
const migratedStatus = bookStatus?.map((u: any) => {
306-
const barcodeID = bookIDMapping[u.bibid];
304+
bookCopy?.map((b: any) => {
305+
const barcodeID = bookIDMapping[b.bibid];
307306
//skip the books that are not needed
308307
//rented date has format 2022-11-11 12:37:39
308+
//if the book is in, the value in the DB is NULL
309309
const rentedTime = dayjs(
310-
u.status_begin_dt,
310+
b.status_begin_dt,
311311
"YYYY-MM-DD HH:mm:ss",
312312
true
313313
).isValid()
314-
? dayjs(u.status_begin_dt, "YYYY-MM-DD HH:mm:ss", true).toDate()
314+
? dayjs(b.status_begin_dt, "YYYY-MM-DD HH:mm:ss", true).toDate()
315315
: undefined;
316-
const dueDate = dayjs(u.due_back_dt, "YYYY-MM-DD", true).isValid()
317-
? dayjs(u.due_back_dt, "YYYY-MM-DD", true).toDate()
316+
const dueDate = dayjs(b.due_back_dt, "YYYY-MM-DD", true).isValid()
317+
? dayjs(b.due_back_dt, "YYYY-MM-DD", true).toDate()
318318
: undefined;
319319

320320
console.log("Timestamps: ", rentedTime, dueDate);
321321

322322
//connect the book to the user, if it still exists
323323

324-
console.log("Connecting user ", u.mbrid);
325-
if (existingUsers.has(parseInt(u.mbrid))) {
326-
rentalStatusCount++;
324+
console.log("Connecting user ", b.mbrid);
325+
if (existingUsers.has(parseInt(b.mbrid)) && b.status_cd == "out") {
327326
transaction.push(
328327
prisma.user.update({
329328
where: {
330-
id: parseInt(u.mbrid),
329+
id: parseInt(b.mbrid),
331330
},
332331
data: {
333332
books: {
@@ -342,10 +341,10 @@ export default async function handler(
342341

343342
// update the rest
344343
const bookUpdate = {
345-
rentalStatus: transformRentalStatus(u.status_cd),
344+
rentalStatus: transformRentalStatus(b.status_cd),
346345
rentedDate: rentedTime,
347346
dueDate: dueDate,
348-
renewalCount: parseInt(u.renewal_count),
347+
renewalCount: parseInt(b.renewal_count),
349348
} as BookType;
350349

351350
transaction.push(

0 commit comments

Comments
 (0)