Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3396401
D9275.id31591.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D9275.id31591.diff
View Options
diff --git a/services/comm-services-lib/src/auth.rs b/services/comm-services-lib/src/auth.rs
--- a/services/comm-services-lib/src/auth.rs
+++ b/services/comm-services-lib/src/auth.rs
@@ -21,6 +21,23 @@
ServicesToken(ServicesAuthToken),
}
+impl AuthorizationCredential {
+ /// Gets the access token value, usable in bearer authorization
+ ///
+ /// # Example
+ /// ```ignore
+ /// reqwest::get("url").beaerer_auth(credential.as_authorization_token()?).send().await?;
+ /// ```
+ pub fn as_authorization_token(&self) -> Result<String, serde_json::Error> {
+ match self {
+ AuthorizationCredential::UserToken(user) => user.as_authorization_token(),
+ AuthorizationCredential::ServicesToken(token) => {
+ token.as_authorization_token()
+ }
+ }
+ }
+}
+
#[derive(Debug, Clone, Serialize, Deserialize, derive_more::Constructor)]
pub struct ServicesAuthToken {
#[serde(rename = "servicesToken")]
diff --git a/services/comm-services-lib/src/blob/client.rs b/services/comm-services-lib/src/blob/client.rs
--- a/services/comm-services-lib/src/blob/client.rs
+++ b/services/comm-services-lib/src/blob/client.rs
@@ -13,7 +13,7 @@
pub use reqwest::StatusCode;
pub use reqwest::Url;
-use crate::auth::UserIdentity;
+use crate::auth::{AuthorizationCredential, UserIdentity};
#[derive(From, Error, Debug, Display)]
pub enum BlobServiceError {
@@ -75,7 +75,7 @@
pub struct BlobServiceClient {
http_client: reqwest::Client,
blob_service_url: reqwest::Url,
- user_identity: Option<UserIdentity>,
+ auth_credential: Option<AuthorizationCredential>,
}
impl BlobServiceClient {
@@ -92,16 +92,30 @@
Self {
http_client: reqwest::Client::new(),
blob_service_url,
- user_identity: None,
+ auth_credential: None,
}
}
/// Clones the client and sets the [`UserIdentity`] for the new instance.
/// This allows the client to reuse the same connection pool for different users.
+ ///
+ /// This is the same as calling
+ /// ```ignore
+ /// client.with_authentication(AuthorizationCredential::UserToken(user_identity))
+ /// ````
pub fn with_user_identity(&self, user_identity: UserIdentity) -> Self {
- trace!("Set user_identity: {:?}", &user_identity);
+ self.with_authentication(AuthorizationCredential::UserToken(user_identity))
+ }
+
+ /// Clones the client and sets the [`AuthorizationCredential`] for the new instance.
+ /// This allows the client to reuse the same connection pool for different users.
+ pub fn with_authentication(
+ &self,
+ auth_credential: AuthorizationCredential,
+ ) -> Self {
+ trace!("Set auth_credential: {:?}", &auth_credential);
let mut this = self.clone();
- this.user_identity = Some(user_identity);
+ this.auth_credential = Some(auth_credential);
this
}
@@ -355,9 +369,9 @@
url: Url,
) -> BlobResult<RequestBuilder> {
let request = self.http_client.request(http_method, url);
- match &self.user_identity {
- Some(user) => {
- let token = user.as_authorization_token().map_err(|e| {
+ match &self.auth_credential {
+ Some(credential) => {
+ let token = credential.as_authorization_token().map_err(|e| {
error!("Failed to parse authorization token: {}", e);
BlobServiceError::UnexpectedError
})?;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Dec 2, 12:08 PM (17 h, 45 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2607546
Default Alt Text
D9275.id31591.diff (3 KB)
Attached To
Mode
D9275: [services-lib] Let blob client use services token
Attached
Detach File
Event Timeline
Log In to Comment