mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
836 B
31 lines
836 B
import { Controller } from '@nestjs/common';
|
|
|
|
import { PrismaService } from '../services/prisma.service';
|
|
import { RedisCacheService } from './redis-cache/redis-cache.service';
|
|
|
|
@Controller()
|
|
export class AppController {
|
|
public constructor(
|
|
private prisma: PrismaService,
|
|
private readonly redisCacheService: RedisCacheService
|
|
) {
|
|
this.initialize();
|
|
}
|
|
|
|
private async initialize() {
|
|
this.redisCacheService.reset();
|
|
|
|
const isDataGatheringLocked = await this.prisma.property.findUnique({
|
|
where: { key: 'LOCKED_DATA_GATHERING' }
|
|
});
|
|
|
|
if (!isDataGatheringLocked) {
|
|
// Prepare for automatical data gather if not locked
|
|
await this.prisma.property.deleteMany({
|
|
where: {
|
|
OR: [{ key: 'LAST_DATA_GATHERING' }, { key: 'LOCKED_DATA_GATHERING' }]
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|