mirror of
https://github.com/ArthurDanjou/artdanj-api.git
synced 2026-01-20 15:01:36 +01:00
💻 | Working on API
This commit is contained in:
@@ -1,54 +0,0 @@
|
||||
import { HttpContextContract } from '@ioc:Adonis/Core/HttpContext'
|
||||
import {getTotalStats, getWeeklyStats, getMonthlyStats, getDailyStats} from 'App/Helpers/StatsHelper'
|
||||
import DockerBuild from "App/Models/DockerBuild"
|
||||
import DockerCommand from "App/Models/DockerCommand"
|
||||
import {UpdateGitHubReadme} from "App/tasks/UpdateGithubReadme";
|
||||
|
||||
export default class StatsController {
|
||||
|
||||
public async get ({response}: HttpContextContract) {
|
||||
const daily = await getDailyStats()
|
||||
const weekly = await getWeeklyStats()
|
||||
const monthly = await getMonthlyStats()
|
||||
const total = await getTotalStats()
|
||||
return response.status(200).send({
|
||||
daily: daily,
|
||||
weekly: weekly,
|
||||
monthly: monthly,
|
||||
total: total,
|
||||
})
|
||||
}
|
||||
|
||||
public async incrementBuild () {
|
||||
const date = new Date()
|
||||
const last_entry = await DockerBuild.findBy('created_at', date)
|
||||
|
||||
if (last_entry) {
|
||||
last_entry.builds = last_entry.builds ++
|
||||
await last_entry.save()
|
||||
} else {
|
||||
await DockerBuild.create({
|
||||
builds: BigInt(1)
|
||||
})
|
||||
}
|
||||
|
||||
await UpdateGitHubReadme()
|
||||
}
|
||||
|
||||
public async incrementCommand () {
|
||||
const date = new Date()
|
||||
const last_entry = await DockerCommand.findBy('created_at', date)
|
||||
|
||||
if (last_entry) {
|
||||
last_entry.commands = last_entry.commands ++
|
||||
await last_entry.save()
|
||||
} else {
|
||||
await DockerCommand.create({
|
||||
commands: BigInt(1)
|
||||
})
|
||||
}
|
||||
|
||||
await UpdateGitHubReadme()
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user