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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
use activitypub_federation::config::Data;
use serde::Deserialize;
#[cfg(feature = "oauth-discord")]
pub mod discord;
#[derive(Deserialize, Debug, Clone, Copy, ToSchema)]
#[serde(rename_all = "lowercase")]
pub enum OauthProvider {
/// Discord
#[cfg(feature = "oauth-discord")]
Discord,
}
#[derive(Deserialize, Debug, Clone, Copy, IntoParams)]
#[into_params(parameter_in = Query)]
pub struct Params {
/// Set OAuth provider name
provider: OauthProvider,
}
use axum::{extract::Query, response::IntoResponse};
use utoipa::{IntoParams, OpenApi, ToSchema};
use crate::server::{error::AppError, state::AppState};
pub const AUTH: &str = "AUTH";
#[derive(OpenApi)]
#[openapi(
tags(
(name = AUTH, description = "OAuth integration")
),
components(
schemas(OauthProvider)
)
)]
pub struct OAuthDoc;
#[utoipa::path(
method(get),
path = "/auth",
params(
Params
),
tag = AUTH,
responses(
(status = OK, description = "Routes to oauth provider for login", body = str, content_type = "text/plain")
)
)]
#[axum::debug_handler]
#[cfg(feature = "oauth")]
pub async fn auth(
Query(params): Query<Params>,
data: Data<AppState>,
) -> Result<impl IntoResponse, AppError> {
#[cfg(feature = "oauth-discord")]
return match params.provider {
OauthProvider::Discord => discord::discord_auth(data),
}
.await;
#[cfg(not(feature = "oauth-discord"))]
Ok(axum::http::StatusCode::INTERNAL_SERVER_ERROR)
}
#[utoipa::path(
method(get),
path = "/auth/authorised",
params(
Params
),
tag = AUTH,
responses(
(status = OK, description = "Auth redirect url", body = str, content_type = "text/plain")
)
)]
#[axum::debug_handler]
#[cfg(feature = "oauth")]
pub async fn authorised(
Query(params): Query<Params>,
data: Data<AppState>,
) -> Result<impl IntoResponse, AppError> {
#[cfg(feature = "oauth-discord")]
return match params.provider {
#[cfg(feature = "oauth-discord")]
OauthProvider::Discord => discord::discord_auth(data),
}
.await;
#[cfg(not(feature = "oauth-discord"))]
Ok(axum::http::StatusCode::INTERNAL_SERVER_ERROR)
}
|