diff --git a/doc/api/garage-admin-v2.json b/doc/api/garage-admin-v2.json index f3310256..6ede967b 100644 --- a/doc/api/garage-admin-v2.json +++ b/doc/api/garage-admin-v2.json @@ -2043,7 +2043,6 @@ "GetAdminTokenInfoResponse": { "type": "object", "required": [ - "id", "name", "expired", "scope" @@ -2061,7 +2060,10 @@ "description": "Whether this admin token is expired already" }, "id": { - "type": "string", + "type": [ + "string", + "null" + ], "description": "Identifier of the admin token (which is also a prefix of the full bearer token)" }, "name": { diff --git a/src/api/admin/admin_token.rs b/src/api/admin/admin_token.rs index 10a23a68..aca7a519 100644 --- a/src/api/admin/admin_token.rs +++ b/src/api/admin/admin_token.rs @@ -22,7 +22,7 @@ impl RequestHandler for ListAdminTokensRequest { ) -> Result { let now = now_msec(); - let res = garage + let mut res = garage .admin_token_table .get_range( &EmptyKey, @@ -36,6 +36,32 @@ impl RequestHandler for ListAdminTokensRequest { .map(|t| admin_token_info_results(t, now)) .collect::>(); + if garage.config.admin.admin_token.is_some() { + res.insert( + 0, + GetAdminTokenInfoResponse { + id: None, + name: "admin_token (from daemon configuration)".into(), + expiration: None, + expired: false, + scope: vec!["*".into()], + }, + ); + } + + if garage.config.admin.metrics_token.is_some() { + res.insert( + 1, + GetAdminTokenInfoResponse { + id: None, + name: "metrics_token (from daemon configuration)".into(), + expiration: None, + expired: false, + scope: vec!["Metrics".into()], + }, + ); + } + Ok(ListAdminTokensResponse(res)) } } @@ -153,7 +179,7 @@ fn admin_token_info_results(token: &AdminApiToken, now: u64) -> GetAdminTokenInf let params = token.params().unwrap(); GetAdminTokenInfoResponse { - id: token.prefix.clone(), + id: Some(token.prefix.clone()), name: params.name.get().to_string(), expiration: params.expiration.get().map(|x| { DateTime::from_timestamp_millis(x as i64).expect("invalid timestamp stored in db") diff --git a/src/api/admin/api.rs b/src/api/admin/api.rs index f002efad..94cb7377 100644 --- a/src/api/admin/api.rs +++ b/src/api/admin/api.rs @@ -313,7 +313,7 @@ pub struct GetAdminTokenInfoRequest { #[serde(rename_all = "camelCase")] pub struct GetAdminTokenInfoResponse { /// Identifier of the admin token (which is also a prefix of the full bearer token) - pub id: String, + pub id: Option, /// Name of the admin API token pub name: String, /// Expiration time and date, formatted according to RFC 3339