feat(authorize): add implicit authorize flow
This commit is contained in:
parent
fa31485e44
commit
f0fad9a90a
4 changed files with 54 additions and 2 deletions
28
config.example.toml
Normal file
28
config.example.toml
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
[instance]
|
||||||
|
base_uri = "http://localhost:8085"
|
||||||
|
name = "Example org"
|
||||||
|
logo_uri = "https://example.org/logo.png"
|
||||||
|
|
||||||
|
[[applications]]
|
||||||
|
slug = "demo_app"
|
||||||
|
name = "Demo app"
|
||||||
|
description = "A super application where you can do everything you want."
|
||||||
|
client_id = "a1785786-8be1-443c-9a6f-35feed703609"
|
||||||
|
client_secret = "49c6c16a-0a8a-4981-a60d-5cb96582cc1a"
|
||||||
|
allowed_redirect_uris = [
|
||||||
|
"http://localhost:9090/authorize",
|
||||||
|
"http://localhost:9876/callback"
|
||||||
|
]
|
||||||
|
authorize_flow = "implicit"
|
||||||
|
|
||||||
|
[[roles]]
|
||||||
|
slug = "basic"
|
||||||
|
name = "Basic"
|
||||||
|
description = "Basic user"
|
||||||
|
default = true
|
||||||
|
|
||||||
|
[[roles]]
|
||||||
|
slug = "admin"
|
||||||
|
name = "Administrator"
|
||||||
|
description = "Full power on organization instance"
|
||||||
|
|
|
@ -13,6 +13,7 @@ allowed_redirect_uris = [
|
||||||
"http://localhost:9090/authorize",
|
"http://localhost:9090/authorize",
|
||||||
"http://localhost:9876/callback"
|
"http://localhost:9876/callback"
|
||||||
]
|
]
|
||||||
|
authorize_flow = "Implicit"
|
||||||
|
|
||||||
[[roles]]
|
[[roles]]
|
||||||
slug = "basic"
|
slug = "basic"
|
||||||
|
|
|
@ -8,7 +8,7 @@ use url::Url;
|
||||||
use uuid::Uuid;
|
use uuid::Uuid;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
models::{authorization::Authorization, token_claims::UserTokenClaims},
|
models::{authorization::Authorization, config::AppAuthorizeFlow, token_claims::UserTokenClaims},
|
||||||
renderer::TemplateRenderer, server::AppState,
|
renderer::TemplateRenderer, server::AppState,
|
||||||
services::oauth2::{parse_scope, verify_redirect_uri},
|
services::oauth2::{parse_scope, verify_redirect_uri},
|
||||||
utils::get_random_alphanumerical
|
utils::get_random_alphanumerical
|
||||||
|
@ -97,6 +97,7 @@ pub async fn authorize_form(
|
||||||
).into_response();
|
).into_response();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// 2. Check if the app is already authorized
|
// 2. Check if the app is already authorized
|
||||||
let authorizations_res = sqlx::query_as::<_, Authorization>(
|
let authorizations_res = sqlx::query_as::<_, Authorization>(
|
||||||
"SELECT * FROM authorizations WHERE user_id = $1 AND client_id = $2 AND scopes = $3"
|
"SELECT * FROM authorizations WHERE user_id = $1 AND client_id = $2 AND scopes = $3"
|
||||||
|
@ -139,7 +140,19 @@ pub async fn authorize_form(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 3. Check for implicit/explicit flow
|
||||||
|
if app.authorize_flow == AppAuthorizeFlow::Implicit {
|
||||||
|
debug!("Performing Implicit authorization flow.");
|
||||||
|
// Authorization already given, just redirect to the app
|
||||||
|
return perform_authorize(
|
||||||
|
State(app_state),
|
||||||
|
Extension(token_claims),
|
||||||
|
Form(authorization_params)
|
||||||
|
).await.into_response()
|
||||||
|
}
|
||||||
|
|
||||||
// 4. Show form that POST to authorize
|
// 4. Show form that POST to authorize
|
||||||
|
debug!("Performing explicit authorization flow.");
|
||||||
renderer
|
renderer
|
||||||
.render(
|
.render(
|
||||||
"pages/authorize",
|
"pages/authorize",
|
||||||
|
|
|
@ -12,6 +12,15 @@ struct InstanceConfig {
|
||||||
logo_uri: Option<String>
|
logo_uri: Option<String>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
|
||||||
|
#[fully_pub]
|
||||||
|
enum AppAuthorizeFlow {
|
||||||
|
/// user must grant the app
|
||||||
|
Explicit,
|
||||||
|
/// authorized by default for all scopes
|
||||||
|
Implicit
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||||
#[fully_pub]
|
#[fully_pub]
|
||||||
struct Application {
|
struct Application {
|
||||||
|
@ -20,7 +29,8 @@ struct Application {
|
||||||
description: String,
|
description: String,
|
||||||
client_id: String,
|
client_id: String,
|
||||||
client_secret: String,
|
client_secret: String,
|
||||||
allowed_redirect_uris: Vec<String>
|
allowed_redirect_uris: Vec<String>,
|
||||||
|
authorize_flow: AppAuthorizeFlow
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||||
|
|
Loading…
Reference in a new issue