avina-api 1.2.1

Rust API server for the LRZ-specific features of the Openstack-based LRZ Compute Cloud.
use actix_web::{
    HttpResponse,
    web::{Data, ReqData},
};
use anyhow::Context;
use avina_wire::{
    budgeting::UserBudgetSync,
    user::{Project, User},
};
use sqlx::MySqlPool;

use crate::{
    authorization::require_admin_user,
    database::budgeting::user_budget::sync_user_budgets_in_db,
    error::NormalApiError,
};

// TODO: write tests for this endpoint
#[tracing::instrument(name = "user_budget_sync")]
pub async fn user_budget_sync(
    user: ReqData<User>,
    project: ReqData<Project>,
    db_pool: Data<MySqlPool>,
    // TODO: this can only be an authorization or unexpected error, we need a type for that
) -> Result<HttpResponse, NormalApiError> {
    require_admin_user(&user)?;
    let mut transaction = db_pool
        .begin()
        .await
        .context("Failed to begin transaction")?;
    let count = sync_user_budgets_in_db(&mut transaction).await?;
    transaction
        .commit()
        .await
        .context("Failed to commit transaction")?;
    Ok(HttpResponse::Ok().content_type("application/json").json(
        UserBudgetSync {
            updated_budget_count: count as u32,
        },
    ))
}