mirror of
https://github.com/ArthurDanjou/artdanj-api.git
synced 2026-01-14 12:14:33 +01:00
44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
import Env from "@ioc:Adonis/Core/Env";
|
|
import Route from "@ioc:Adonis/Core/Route";
|
|
import {HttpContextContract} from "@ioc:Adonis/Core/HttpContext";
|
|
import HealthCheck from "@ioc:Adonis/Core/HealthCheck";
|
|
|
|
const BASE_URL = Env.get('BASE_URL')
|
|
|
|
Route.get('/', async ({response}: HttpContextContract) => {
|
|
return response.status(200).send({
|
|
domain: BASE_URL,
|
|
version: Env.get('API_VERSION'),
|
|
source: `${BASE_URL}/source`,
|
|
healthCheck: `${BASE_URL}/health`,
|
|
routes: {
|
|
profile: `${BASE_URL}/profile`,
|
|
//stats: `${BASE_URL}/stats`,
|
|
states: `${BASE_URL}/states`,
|
|
locations: `${BASE_URL}/locations`,
|
|
projects: `${BASE_URL}/projects`
|
|
}
|
|
})
|
|
})
|
|
|
|
Route.get('/source', async ({response}: HttpContextContract) => {
|
|
return response.redirect(Env.get('GITHUB_SOURCE'))
|
|
})
|
|
|
|
Route.get('/health', async ({response}: HttpContextContract) => {
|
|
const report = await HealthCheck.getReport()
|
|
const isLive = await HealthCheck.isLive()
|
|
const isReady = await HealthCheck.isReady()
|
|
return report.healthy ? response.ok({isLive, isReady, report: report.report}) : response.badRequest({
|
|
isLive,
|
|
isReady,
|
|
report: report.report
|
|
})
|
|
})
|
|
|
|
Route.get('/profile', 'ProfileController.me')
|
|
Route.get('/locations', 'LocationsController.get')
|
|
Route.get('/stats', 'StatsController.get')
|
|
Route.get('/states', 'StatesController.get')
|
|
Route.get('/projects', 'ProjectsController.get')
|