@@ -234,10 +234,9 @@ export default async function handler(
234
234
const booklist = req . body as any ;
235
235
//console.log("Booklist", booklist);
236
236
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!
238
238
const bookIDMapping = createBookIDMapping ( bookCopy ) ;
239
239
//filter out the books that have no barcode..
240
- //console.log("Book ID Mapping", bookIDMapping);
241
240
const books = filterForBarcode ( booklist . biblio [ 2 ] . data , bookIDMapping ) ;
242
241
console . log ( "Filtered books" , books . length ) ;
243
242
const bookStatus = filterForBarcode (
@@ -259,39 +258,38 @@ export default async function handler(
259
258
existingUsers . add ( parseInt ( u . mbrid ) ) ;
260
259
} ) ;
261
260
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 ) => {
264
263
//map the fields from OpenBiblio correctly:
265
264
266
- const barcodeID = bookIDMapping [ u . bibid ] ;
265
+ const barcodeID = bookIDMapping [ b . bibid ] ;
267
266
if ( isNaN ( barcodeID ) ) {
268
- console . log ( "Barcode not found" , u . bibid ) ;
267
+ console . log ( "Barcode not found" , b . bibid ) ;
269
268
return ;
270
269
}
271
270
272
271
const book = {
273
272
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" ) ,
282
280
topics :
283
- ( u . topic1 ??= " " ) +
281
+ ( b . topic1 ??= " " ) +
284
282
";" +
285
- ( u . topic2 ??= " " ) +
283
+ ( b . topic2 ??= " " ) +
286
284
";" +
287
- ( u . topic3 ??= " " ) +
285
+ ( b . topic3 ??= " " ) +
288
286
";" +
289
- ( u . topic4 ??= " " ) +
287
+ ( b . topic4 ??= " " ) +
290
288
";" +
291
- ( u . topic5 ??= " " ) ,
289
+ ( b . topic5 ??= " " ) ,
292
290
imageLink : "" ,
293
291
} as BookType ;
294
- console . log ( "Adding book" , book ) ;
292
+ // console.log("Adding book", book);
295
293
//transaction.push(addBook(prisma, book));
296
294
//addBook(prisma, book);
297
295
transaction . push ( prisma . book . create ( { data : { ...book } } ) ) ;
@@ -300,34 +298,35 @@ export default async function handler(
300
298
} ) ;
301
299
console . log ( "Created books" , importedBooksCount ) ;
302
300
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
303
302
//Attach rental status from history table in OpenBiblio
304
303
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 ] ;
307
306
//skip the books that are not needed
308
307
//rented date has format 2022-11-11 12:37:39
308
+ //if the book is in, the value in the DB is NULL
309
309
const rentedTime = dayjs (
310
- u . status_begin_dt ,
310
+ b . status_begin_dt ,
311
311
"YYYY-MM-DD HH:mm:ss" ,
312
312
true
313
313
) . 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 ( )
315
315
: 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 ( )
318
318
: undefined ;
319
319
320
320
console . log ( "Timestamps: " , rentedTime , dueDate ) ;
321
321
322
322
//connect the book to the user, if it still exists
323
323
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" ) {
327
326
transaction . push (
328
327
prisma . user . update ( {
329
328
where : {
330
- id : parseInt ( u . mbrid ) ,
329
+ id : parseInt ( b . mbrid ) ,
331
330
} ,
332
331
data : {
333
332
books : {
@@ -342,10 +341,10 @@ export default async function handler(
342
341
343
342
// update the rest
344
343
const bookUpdate = {
345
- rentalStatus : transformRentalStatus ( u . status_cd ) ,
344
+ rentalStatus : transformRentalStatus ( b . status_cd ) ,
346
345
rentedDate : rentedTime ,
347
346
dueDate : dueDate ,
348
- renewalCount : parseInt ( u . renewal_count ) ,
347
+ renewalCount : parseInt ( b . renewal_count ) ,
349
348
} as BookType ;
350
349
351
350
transaction . push (
0 commit comments