aboutsummaryrefslogtreecommitdiff
path: root/src/api/admin/router.rs
blob: 714af1e814e34999823a10cc035309e99fdb3e3b (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
47
48
49
50
51
52
53
54
55
56
57
58
59
use crate::error::*;

use hyper::{Method, Request};

use crate::router_macros::router_match;

pub enum Authorization {
	MetricsToken,
	AdminToken,
}

router_match! {@func

/// List of all Admin API endpoints.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Endpoint {
	Options,
	Metrics,
	GetClusterStatus,
	GetClusterLayout,
	UpdateClusterLayout,
	ApplyClusterLayout,
	RevertClusterLayout,
}}

impl Endpoint {
	/// Determine which S3 endpoint a request is for using the request, and a bucket which was
	/// possibly extracted from the Host header.
	/// Returns Self plus bucket name, if endpoint is not Endpoint::ListBuckets
	pub fn from_request<T>(req: &Request<T>) -> Result<Self, Error> {
		let path = req.uri().path();

		use Endpoint::*;
		let res = match (req.method(), path) {
			(&Method::OPTIONS, _) => Options,
			(&Method::GET, "/metrics") => Metrics,
			(&Method::GET, "/status") => GetClusterStatus,
			(&Method::GET, "/layout") => GetClusterLayout,
			(&Method::POST, "/layout") => UpdateClusterLayout,
			(&Method::POST, "/layout/apply") => ApplyClusterLayout,
			(&Method::POST, "/layout/revert") => RevertClusterLayout,
			(m, p) => {
				return Err(Error::BadRequest(format!(
					"Unknown API endpoint: {} {}",
					m, p
				)))
			}
		};

		Ok(res)
	}
	/// Get the kind of authorization which is required to perform the operation.
	pub fn authorization_type(&self) -> Authorization {
		match self {
			Self::Metrics => Authorization::MetricsToken,
			_ => Authorization::AdminToken,
		}
	}
}