/* * Copyright (C) 2021 Aravinth Manivannan * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ use std::borrow::Cow; use actix_identity::Identity; use actix_web::{web, HttpResponse, Responder}; use sqlx::types::time::OffsetDateTime; use super::get_uuid; use crate::errors::*; use crate::AppData; pub mod routes { pub struct Challenges { pub add: &'static str, } impl Challenges { pub const fn new() -> Challenges { let add = "/api/v1/admin/challenges/add"; Challenges { add } } } } pub mod runners { // use std::borrow::Cow; use super::*; pub async fn add_runner(data: &AppData) -> ServiceResult { let mut uuid; let now = OffsetDateTime::now_utc(); loop { uuid = get_uuid(); let res = sqlx::query!( " INSERT INTO survey_users (created_at, id) VALUES($1, $2)", &now, &uuid ) .execute(&data.db) .await; if res.is_ok() { break; } else if let Err(sqlx::Error::Database(err)) = res { if err.code() == Some(Cow::from("23505")) && err.message().contains("survey_users_id_key") { continue; } else { return Err(sqlx::Error::Database(err).into()); } } } Ok(uuid) } } pub fn services(cfg: &mut web::ServiceConfig) { cfg.service(add); } #[my_codegen::post(path = "crate::V1_API_ROUTES.auth.add")] async fn add(data: AppData, id: Identity) -> ServiceResult { let uuid = runners::add_runner(&data).await?; id.remember(uuid.to_string()); Ok(HttpResponse::Ok()) }