@@ -134,7 +134,7 @@ export async function countBook(client: PrismaClient) {
134
134
export async function addBook ( client : PrismaClient , book : BookType ) {
135
135
console . log ( "Adding book" , book ) ;
136
136
try {
137
- addAudit ( client , "Add book" , book . title ) ;
137
+ addAudit ( client , "Add book" , book . title , book . id ) ;
138
138
return await client . book . create ( {
139
139
data : { ...book } ,
140
140
} ) ;
@@ -157,8 +157,9 @@ export async function updateBook(
157
157
try {
158
158
await addAudit (
159
159
client ,
160
- "update" ,
161
- book . id ? book . id . toString ( ) : "undefined"
160
+ "Update book" ,
161
+ book . id ? book . id . toString ( ) + ", " + book . title : "undefined" ,
162
+ id
162
163
) ;
163
164
return await client . book . update ( {
164
165
where : {
@@ -179,7 +180,7 @@ export async function updateBook(
179
180
180
181
export async function deleteBook ( client : PrismaClient , id : number ) {
181
182
try {
182
- await addAudit ( client , "delete " , id . toString ( ) ) ;
183
+ await addAudit ( client , "Delete book " , id . toString ( ) , id ) ;
183
184
return await client . book . delete ( {
184
185
where : {
185
186
id,
@@ -224,7 +225,12 @@ export async function extendBook(
224
225
where : { id : bookid } ,
225
226
data : { renewalCount : { increment : 1 } , dueDate : updatedDueDate } ,
226
227
} ) ;
227
- await addAudit ( client , "extend" , bookid . toString ( ) ) ;
228
+ await addAudit (
229
+ client ,
230
+ "Extend book" ,
231
+ "book id " + bookid . toString ( ) + ", " + book . title ,
232
+ bookid
233
+ ) ;
228
234
} catch ( e ) {
229
235
if (
230
236
e instanceof Prisma . PrismaClientKnownRequestError ||
@@ -245,7 +251,12 @@ export async function returnBook(client: PrismaClient, bookid: number) {
245
251
return "ERROR in returning a book, this user does not have a book" ;
246
252
}
247
253
const userid = book . userId ;
248
- await addAudit ( client , "return book" , bookid . toString ( ) ) ;
254
+ await addAudit (
255
+ client ,
256
+ "Return book" ,
257
+ "book id " + bookid . toString ( ) + ", " + book . title ,
258
+ bookid
259
+ ) ;
249
260
const transaction = [ ] ;
250
261
transaction . push (
251
262
client . book . update ( {
@@ -310,8 +321,8 @@ export async function rentBook(
310
321
//put all into one transaction
311
322
312
323
//if the book is rented already, you cannot rent it
324
+ const book = await getBook ( client , bookid ) ;
313
325
try {
314
- const book = await getBook ( client , bookid ) ;
315
326
if ( book ?. rentalStatus == "rented" ) {
316
327
console . log ( "ERROR in renting a book: It is rented already" ) ;
317
328
return "ERROR, book is rented" ;
@@ -327,8 +338,15 @@ export async function rentBook(
327
338
}
328
339
await addAudit (
329
340
client ,
330
- "rent book" ,
331
- "user id " + userid . toString ( ) + ", book id " + bookid . toString ( )
341
+ "Rent book" ,
342
+ "User id: " +
343
+ userid . toString ( ) +
344
+ ", Book id: " +
345
+ bookid . toString ( ) +
346
+ ", book title: " +
347
+ book ?. title ,
348
+ bookid ,
349
+ userid
332
350
) ;
333
351
const transaction = [ ] ;
334
352
0 commit comments