diff --git a/Account/Sources/Account/Feedly/FeedlyAPICaller.swift b/Account/Sources/Account/Feedly/FeedlyAPICaller.swift index 58f98e704..daaf47f0a 100644 --- a/Account/Sources/Account/Feedly/FeedlyAPICaller.swift +++ b/Account/Sources/Account/Feedly/FeedlyAPICaller.swift @@ -332,16 +332,22 @@ extension FeedlyAPICaller: OAuthAuthorizationCodeGrantRequesting { } } -extension FeedlyAPICaller: OAuthAcessTokenRefreshRequesting { +extension FeedlyAPICaller { - func refreshAccessToken(_ refreshRequest: OAuthRefreshAccessTokenRequest) async throws -> FeedlyOAuthAccessTokenResponse { + /// Access tokens expire. Perform a request for a fresh access token given the long life refresh token received when authorization was granted. + /// + /// [Documentation](https://tools.ietf.org/html/rfc6749#section-6) + /// + /// - Parameter refreshRequest: The refresh token and other information the authorization server requires to grant the client fresh access tokens on the user's behalf. + /// - Returns: On success, the access token response appropriate for concrete type's service. Both the access and refresh token should be stored, preferably on the Keychain. On failure, throws an Error. +func refreshAccessToken(_ refreshRequest: OAuthRefreshAccessTokenRequest) async throws -> FeedlyOAuthAccessTokenResponse { guard !isSuspended else { throw TransportError.suspended } var request = try urlRequest(path: "/v3/auth/token", method: HTTPMethod.post, includeJSONHeaders: true, includeOAuthToken: false) try addObject(refreshRequest, keyEncodingStrategy: .convertToSnakeCase, to: &request) - let (_, tokenResponse) = try await send(request: request, resultType: AccessTokenResponse.self) + let (_, tokenResponse) = try await send(request: request, resultType: FeedlyOAuthAccessTokenResponse.self) guard let tokenResponse else { throw URLError(.cannotDecodeContentData) } diff --git a/Account/Sources/Account/Feedly/OAuthAcessTokenRefreshing.swift b/Account/Sources/Account/Feedly/OAuthAcessTokenRefreshing.swift index 47de9e279..a40b9b84a 100644 --- a/Account/Sources/Account/Feedly/OAuthAcessTokenRefreshing.swift +++ b/Account/Sources/Account/Feedly/OAuthAcessTokenRefreshing.swift @@ -29,17 +29,6 @@ public struct OAuthRefreshAccessTokenRequest: Encodable, Sendable { } } -/// Conformed to by API callers to provide a consistent interface for `AccountDelegate` types to refresh OAuth Access Tokens. Conformers provide an associated type that models any custom parameters/properties, as well as the standard ones, in the response to a request for an access token. -/// https://tools.ietf.org/html/rfc6749#section-6 -public protocol OAuthAcessTokenRefreshRequesting { - associatedtype AccessTokenResponse: OAuthAccessTokenResponse - - /// Access tokens expire. Perform a request for a fresh access token given the long life refresh token received when authorization was granted. - /// - Parameter refreshRequest: The refresh token and other information the authorization server requires to grant the client fresh access tokens on the user's behalf. - /// - Parameter completion: On success, the access token response appropriate for concrete type's service. Both the access and refresh token should be stored, preferably on the Keychain. On failure, possibly a `URLError` or `OAuthAuthorizationErrorResponse` value. - func refreshAccessToken(_ refreshRequest: OAuthRefreshAccessTokenRequest) async throws -> AccessTokenResponse -} - /// Implemented by concrete types to perform the actual request. protocol OAuthAccessTokenRefreshing: AnyObject {