Skip to content

Commit 88f332b

Browse files
authored
Add missing outer fn (#54)
* Add missing outer function * docs * update changelog * add cargo deny skip for base64
1 parent 7eba397 commit 88f332b

File tree

4 files changed

+18
-1
lines changed

4 files changed

+18
-1
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
<!-- next-header -->
1010
## [Unreleased] - ReleaseDate
11+
### Fixed
12+
- [PR#54](https://github.com/EmbarkStudios/tame-oauth/pull/54) re-adds `get_account_info` to the outer `ServiceAccountProvider` implementation. It was accidentally removed in #51.
13+
1114
## [0.8.0] - 2023-01-10
1215
### Changed
1316
- [PR#51](https://github.com/EmbarkStudios/tame-oauth/pull/51) moved the token cache out of `ServiceAccountProvider` into a public type, and added a cached token provider that can wrap any other token provider. This wrapper now wrapps all the current gcp token providers, making them cached by default.

deny.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ deny = [
1515
{ name = "openssl" },
1616
{ name = "openssl-sys" },
1717
]
18-
skip = []
18+
skip = [
19+
# reqwest uses old dependency (dev dependency)
20+
{ name = "base64", version = "=0.13.1" }
21+
]
1922
skip-tree = []
2023

2124
[licenses]

src/gcp/service_account.rs

+5
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ impl ServiceAccountProvider {
4444
info,
4545
)?))
4646
}
47+
48+
/// Gets the [`ServiceAccountInfo`] this was created for
49+
pub fn get_account_info(&self) -> &ServiceAccountInfo {
50+
&self.inner().info
51+
}
4752
}
4853

4954
/// A token provider for a GCP service account.

src/token_cache.rs

+6
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,18 @@ pub struct CachedTokenProvider<P> {
7272
}
7373

7474
impl<P> CachedTokenProvider<P> {
75+
/// Wraps a token provider with a cache
7576
pub fn wrap(token_provider: P) -> Self {
7677
Self {
7778
cache: TokenCache::new(),
7879
inner: token_provider,
7980
}
8081
}
82+
83+
/// Gets a reference to the wrapped token provider
84+
pub fn inner(&self) -> &P {
85+
&self.inner
86+
}
8187
}
8288

8389
impl<P> TokenProvider for CachedTokenProvider<P>

0 commit comments

Comments
 (0)