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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
use std::{error, fmt};
use dyn_clone::{clone_trait_object, DynClone};
pub use oauth2_core::access_token_request::BodyWithClientCredentialsGrant;
use crate::{
re_exports::{ClientId, ClientSecret, Map, Scope, Url, Value},
Provider,
};
pub trait ProviderExtClientCredentialsGrant: Provider + DynClone {
fn client_password_in_request_body(&self) -> bool {
false
}
fn scopes_default(&self) -> Option<Vec<<Self as Provider>::Scope>> {
None
}
fn access_token_request_body_extra(
&self,
_body: &BodyWithClientCredentialsGrant<<Self as Provider>::Scope>,
) -> Option<Result<Map<String, Value>, Box<dyn error::Error + Send + Sync + 'static>>> {
None
}
}
clone_trait_object!(<SCOPE> ProviderExtClientCredentialsGrant<Scope = SCOPE> where SCOPE: Scope + Clone);
impl<SCOPE> fmt::Debug for dyn ProviderExtClientCredentialsGrant<Scope = SCOPE> + Send + Sync
where
SCOPE: Scope,
{
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("ProviderExtClientCredentialsGrant")
.field("client_id", &self.client_id())
.field("token_endpoint_url", &self.token_endpoint_url().as_str())
.field("scopes_default", &self.scopes_default())
.finish()
}
}
#[derive(Debug, Clone)]
pub struct ProviderExtClientCredentialsGrantStringScopeWrapper<P>
where
P: ProviderExtClientCredentialsGrant,
{
inner: P,
}
impl<P> ProviderExtClientCredentialsGrantStringScopeWrapper<P>
where
P: ProviderExtClientCredentialsGrant,
{
pub fn new(provider: P) -> Self {
Self { inner: provider }
}
}
impl<P> Provider for ProviderExtClientCredentialsGrantStringScopeWrapper<P>
where
P: ProviderExtClientCredentialsGrant + Clone,
{
type Scope = String;
fn client_id(&self) -> Option<&ClientId> {
self.inner.client_id()
}
fn client_secret(&self) -> Option<&ClientSecret> {
self.inner.client_secret()
}
fn token_endpoint_url(&self) -> &Url {
self.inner.token_endpoint_url()
}
fn extra(&self) -> Option<Map<String, Value>> {
self.inner.extra()
}
}
impl<P> ProviderExtClientCredentialsGrant for ProviderExtClientCredentialsGrantStringScopeWrapper<P>
where
P: ProviderExtClientCredentialsGrant + Clone,
{
fn client_password_in_request_body(&self) -> bool {
self.inner.client_password_in_request_body()
}
fn scopes_default(&self) -> Option<Vec<<Self as Provider>::Scope>> {
self.inner
.scopes_default()
.map(|x| x.iter().map(|y| y.to_string()).collect())
}
fn access_token_request_body_extra(
&self,
body: &BodyWithClientCredentialsGrant<<Self as Provider>::Scope>,
) -> Option<Result<Map<String, Value>, Box<dyn error::Error + Send + Sync + 'static>>> {
let body =
match BodyWithClientCredentialsGrant::<<P as Provider>::Scope>::try_from_t_with_string(
body,
) {
Ok(x) => x,
Err(err) => return Some(Err(Box::new(err))),
};
self.inner.access_token_request_body_extra(&body)
}
}