aboutsummaryrefslogtreecommitdiff
path: root/src/api/admin/lib.rs
blob: fe4b0598e871e9bb6d0d2e7e32452c5f2a67dfa7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#[macro_use]
extern crate tracing;

pub mod api_server;
mod error;
mod macros;

pub mod api;
mod router_v0;
mod router_v1;
mod router_v2;

mod bucket;
mod cluster;
mod key;
mod special;

mod block;
mod node;
mod repair;
mod worker;

use std::sync::Arc;

use async_trait::async_trait;

use garage_model::garage::Garage;

pub use api_server::AdminApiServer as Admin;

pub enum Authorization {
	None,
	MetricsToken,
	AdminToken,
}

#[async_trait]
pub trait RequestHandler {
	type Response;

	async fn handle(
		self,
		garage: &Arc<Garage>,
		admin: &Admin,
	) -> Result<Self::Response, error::Error>;
}