sporedimk/price-compare-api/dist/source/source.service.js
2025-05-06 10:01:03 +02:00

76 lines
2.6 KiB
JavaScript

"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.SourceService = void 0;
const common_1 = require("@nestjs/common");
const prisma_service_1 = require("../prisma/prisma.service");
let SourceService = class SourceService {
prisma;
constructor(prisma) {
this.prisma = prisma;
}
async getSources() {
return this.prisma.source.findMany({
orderBy: { name: 'asc' },
});
}
async getSource(id) {
return this.prisma.source.findUnique({
where: { id },
});
}
async getProductsFromSource(sourceId, skip, take) {
const products = await this.prisma.product.findMany({
where: {
prices: {
some: {
sourceId,
},
},
},
include: {
prices: {
where: { sourceId },
orderBy: { lastUpdated: 'desc' },
take: 1,
include: { source: true },
},
},
skip,
take: take || 20,
orderBy: { name: 'asc' },
});
const total = await this.prisma.product.count({
where: {
prices: {
some: {
sourceId,
},
},
},
});
return {
products,
pagination: {
total,
skip: skip || 0,
take: take || 20,
hasMore: (skip || 0) + (take || 20) < total,
},
};
}
};
exports.SourceService = SourceService;
exports.SourceService = SourceService = __decorate([
(0, common_1.Injectable)(),
__metadata("design:paramtypes", [prisma_service_1.PrismaService])
], SourceService);
//# sourceMappingURL=source.service.js.map