nipaw_gitcode 1.9.7

GitCode provider for nipaw_core
Documentation
use async_trait::async_trait;
use chrono::{DateTime, Utc};
use http::Extensions;
use nipaw_core::Error as CoreError;
use reqwest::{Request, Response, StatusCode};
use reqwest_middleware::{Error, Middleware, Next, Result};
use serde::Deserialize;

#[allow(dead_code)]
#[derive(Debug, Deserialize)]
struct ErrorResponse {
	timestamp: DateTime<Utc>,
	status: u16,
	error: String,
	path: String,
}

pub struct ResponseMiddleware;

#[async_trait]
impl Middleware for ResponseMiddleware {
	async fn handle(
		&self,
		req: Request,
		extensions: &mut Extensions,
		next: Next<'_>,
	) -> Result<Response> {
		let res = next.run(req, extensions).await?;
		match res.status() {
			StatusCode::OK => Ok(res),
			StatusCode::UNAUTHORIZED => Err(Error::Middleware(CoreError::Unauthorized.into())),
			StatusCode::NOT_FOUND => {
				let path = res.url().path();
				let resource_type = path
					.split('/')
					.rev()
					.find(|&seg| {
						["commit", "issue", "release", "user", "repo", "org"]
							.iter()
							.any(|&pattern| seg.contains(pattern))
					})
					.map(|seg| match seg {
						"commits" | "commit" => "Commit",
						"issues" | "issue" => "Issue",
						"releases" | "release" => "Release",
						s if s.contains("user") => "User",
						s if s.contains("repo") => "Repo",
						s if s.contains("org") => "Org",
						_ => "Resource",
					})
					.unwrap_or("Resource")
					.to_string();
				Err(Error::Middleware(CoreError::NotFound { resource: resource_type }.into()))
			}
			StatusCode::FORBIDDEN => {
				let message = res.json::<ErrorResponse>().await?.error;
				Err(Error::Middleware(CoreError::Forbidden { message }.into()))
			}
			StatusCode::TOO_MANY_REQUESTS => Err(Error::Middleware(CoreError::RateLimit.into())),
			_ => Ok(res),
		}
	}
}