mirror of
https://github.com/ershisan99/flashcards-api.git
synced 2025-12-17 20:59:27 +00:00
304 lines
8.0 KiB
TypeScript
304 lines
8.0 KiB
TypeScript
import { Injectable, InternalServerErrorException, Logger } from '@nestjs/common'
|
|
import { omit } from 'remeda'
|
|
|
|
import { PrismaService } from '../../../prisma.service'
|
|
import { GetAllDecksDto } from '../dto'
|
|
import { Deck, PaginatedDecks } from '../entities/deck.entity'
|
|
|
|
@Injectable()
|
|
export class DecksRepository {
|
|
constructor(private prisma: PrismaService) {}
|
|
|
|
private readonly logger = new Logger(DecksRepository.name)
|
|
|
|
async createDeck({
|
|
name,
|
|
userId,
|
|
cover,
|
|
isPrivate,
|
|
}: {
|
|
name: string
|
|
userId: string
|
|
cover?: string
|
|
isPrivate?: boolean
|
|
}): Promise<Deck> {
|
|
try {
|
|
const result = await this.prisma.deck.create({
|
|
data: {
|
|
author: {
|
|
connect: {
|
|
id: userId,
|
|
},
|
|
},
|
|
|
|
name,
|
|
cover,
|
|
isPrivate,
|
|
},
|
|
include: {
|
|
_count: {
|
|
select: {
|
|
card: true,
|
|
},
|
|
},
|
|
author: {
|
|
select: {
|
|
id: true,
|
|
name: true,
|
|
},
|
|
},
|
|
},
|
|
})
|
|
|
|
return { ...result, cardsCount: result._count.card }
|
|
} catch (e) {
|
|
this.logger.error(e?.message)
|
|
throw new InternalServerErrorException(e?.message)
|
|
}
|
|
}
|
|
|
|
async findAllDecks({
|
|
name = undefined,
|
|
authorId = undefined,
|
|
userId,
|
|
currentPage,
|
|
itemsPerPage,
|
|
minCardsCount,
|
|
maxCardsCount,
|
|
orderBy,
|
|
}: GetAllDecksDto): Promise<PaginatedDecks> {
|
|
if (!orderBy || orderBy === 'null') {
|
|
orderBy = 'updated-desc' // Adjust this based on your actual ordering requirements
|
|
}
|
|
let orderField = 'd.updated' // default order field
|
|
let orderDirection = 'DESC' // default order direction
|
|
|
|
if (orderBy) {
|
|
const orderByParts = orderBy.split('-')
|
|
|
|
if (orderByParts.length === 2) {
|
|
const field = orderByParts[0]
|
|
const direction = orderByParts[1].toUpperCase()
|
|
|
|
// Validate the field and direction
|
|
if (
|
|
['cardsCount', 'updated', 'name', 'author.name', 'created'].includes(field) &&
|
|
['ASC', 'DESC'].includes(direction)
|
|
) {
|
|
if (field === 'cardsCount') {
|
|
orderField = 'cardsCount'
|
|
} else if (field === 'author.name') {
|
|
orderField = 'a.name'
|
|
} else {
|
|
orderField = `d.${field}`
|
|
}
|
|
|
|
orderDirection = direction
|
|
}
|
|
}
|
|
}
|
|
try {
|
|
// Prepare the where clause conditions
|
|
const conditions = []
|
|
|
|
if (name) conditions.push(`d.name LIKE CONCAT('%', ?, '%')`)
|
|
if (authorId) conditions.push(`d.userId = ?`)
|
|
if (userId) conditions.push(`(d.isPrivate = FALSE OR (d.isPrivate = TRUE AND d.userId = ?))`)
|
|
|
|
// Prepare the having clause for card count range
|
|
const havingConditions = []
|
|
|
|
if (minCardsCount != null) havingConditions.push(`COUNT(c.id) >= ?`)
|
|
if (maxCardsCount != null) havingConditions.push(`COUNT(c.id) <= ?`)
|
|
|
|
// Construct the raw SQL query for fetching decks
|
|
const query = `
|
|
SELECT
|
|
d.*,
|
|
COUNT(c.id) AS cardsCount,
|
|
a.id AS authorId,
|
|
a.name AS authorName
|
|
FROM deck AS d
|
|
LEFT JOIN card AS c ON d.id = c.deckId
|
|
LEFT JOIN user AS a ON d.userId = a.id
|
|
${conditions.length ? `WHERE ${conditions.join(' AND ')}` : ''}
|
|
GROUP BY d.id
|
|
${havingConditions.length ? `HAVING ${havingConditions.join(' AND ')}` : ''}
|
|
ORDER BY ${orderField} ${orderDirection}
|
|
LIMIT ? OFFSET ?;
|
|
`
|
|
|
|
// Parameters for fetching decks
|
|
const deckQueryParams = [
|
|
...(name ? [name] : []),
|
|
...(authorId ? [authorId] : []),
|
|
...(userId ? [userId] : []),
|
|
...(minCardsCount != null ? [minCardsCount] : []),
|
|
...(maxCardsCount != null ? [maxCardsCount] : []),
|
|
itemsPerPage,
|
|
(currentPage - 1) * itemsPerPage,
|
|
]
|
|
|
|
// Execute the raw SQL query for fetching decks
|
|
const decks = await this.prisma.$queryRawUnsafe<
|
|
Array<
|
|
Deck & {
|
|
authorId: string
|
|
authorName: string
|
|
}
|
|
>
|
|
>(query, ...deckQueryParams)
|
|
// Construct the raw SQL query for total count
|
|
const countQuery = `
|
|
SELECT COUNT(DISTINCT d.id) AS total
|
|
FROM deck AS d
|
|
LEFT JOIN card AS c ON d.id = c.deckId
|
|
${conditions.length ? `WHERE ${conditions.join(' AND ')}` : ''}
|
|
${havingConditions.length ? `GROUP BY d.id HAVING ${havingConditions.join(' AND ')}` : ''};
|
|
`
|
|
|
|
// Parameters for total count query
|
|
const countQueryParams = [
|
|
...(name ? [name] : []),
|
|
...(authorId ? [authorId] : []),
|
|
...(userId ? [userId] : []),
|
|
...(minCardsCount != null ? [minCardsCount] : []),
|
|
...(maxCardsCount != null ? [maxCardsCount] : []),
|
|
]
|
|
|
|
// Execute the raw SQL query for total count
|
|
const totalResult = await this.prisma.$queryRawUnsafe<any[]>(countQuery, ...countQueryParams)
|
|
|
|
const total = totalResult.length
|
|
const modifiedDecks = decks.map(deck => {
|
|
const cardsCount = deck.cardsCount
|
|
|
|
return omit(
|
|
{
|
|
...deck,
|
|
cardsCount: typeof cardsCount === 'bigint' ? Number(cardsCount) : cardsCount,
|
|
isPrivate: !!deck.isPrivate,
|
|
author: {
|
|
id: deck.authorId,
|
|
name: deck.authorName,
|
|
},
|
|
},
|
|
['authorId', 'authorName']
|
|
)
|
|
})
|
|
const max = await this.prisma
|
|
.$queryRaw`SELECT MAX(card_count) as maxCardsCount FROM (SELECT COUNT(*) as card_count FROM card GROUP BY deckId) AS card_counts;`
|
|
|
|
// Return the result with pagination data
|
|
return {
|
|
items: modifiedDecks,
|
|
pagination: {
|
|
totalItems: total,
|
|
currentPage,
|
|
itemsPerPage,
|
|
totalPages: Math.ceil(total / itemsPerPage),
|
|
},
|
|
maxCardsCount: Number(max[0].maxCardsCount),
|
|
}
|
|
} catch (e) {
|
|
this.logger.error(e?.message)
|
|
throw new InternalServerErrorException(e?.message)
|
|
}
|
|
}
|
|
|
|
public async findDeckById(id: string): Promise<Deck> {
|
|
try {
|
|
const result = await this.prisma.deck.findUnique({
|
|
where: {
|
|
id,
|
|
},
|
|
include: {
|
|
_count: {
|
|
select: {
|
|
card: true,
|
|
},
|
|
},
|
|
},
|
|
})
|
|
|
|
return { ...result, cardsCount: result._count.card }
|
|
} catch (e) {
|
|
this.logger.error(e?.message)
|
|
throw new InternalServerErrorException(e?.message)
|
|
}
|
|
}
|
|
|
|
public async findDeckByCardId(cardId: string): Promise<Deck> {
|
|
try {
|
|
const card = await this.prisma.card.findUnique({
|
|
where: {
|
|
id: cardId,
|
|
},
|
|
})
|
|
|
|
const result = await this.prisma.deck.findUnique({
|
|
include: {
|
|
_count: {
|
|
select: {
|
|
card: true,
|
|
},
|
|
},
|
|
},
|
|
where: {
|
|
id: card.deckId,
|
|
},
|
|
})
|
|
|
|
return { ...result, cardsCount: result._count.card }
|
|
} catch (e) {
|
|
this.logger.error(e?.message)
|
|
throw new InternalServerErrorException(e?.message)
|
|
}
|
|
}
|
|
|
|
public async deleteDeckById(id: string) {
|
|
try {
|
|
return await this.prisma.deck.delete({
|
|
where: {
|
|
id,
|
|
},
|
|
})
|
|
} catch (e) {
|
|
this.logger.error(e?.message)
|
|
throw new InternalServerErrorException(e?.message)
|
|
}
|
|
}
|
|
|
|
public async updateDeckById(
|
|
id: string,
|
|
data: { name?: string; cover?: string; isPrivate?: boolean }
|
|
): Promise<Deck> {
|
|
try {
|
|
const result = await this.prisma.deck.update({
|
|
where: {
|
|
id,
|
|
},
|
|
data,
|
|
include: {
|
|
_count: {
|
|
select: {
|
|
card: true,
|
|
},
|
|
},
|
|
author: {
|
|
select: {
|
|
id: true,
|
|
name: true,
|
|
},
|
|
},
|
|
},
|
|
})
|
|
|
|
return { ...result, cardsCount: result._count.card }
|
|
} catch (e) {
|
|
this.logger.error(e?.message)
|
|
throw new InternalServerErrorException(e?.message)
|
|
}
|
|
}
|
|
}
|