// // Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"). // You may not use this file except in compliance with the License. // A copy of the License is located at // // http://aws.amazon.com/apache2.0 // // or in the "license" file accompanying this file. This file is distributed // on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either // express or implied. See the License for the specific language governing // permissions and limitations under the License. // #import #import "AWSServiceEnum.h" NS_ASSUME_NONNULL_BEGIN FOUNDATION_EXPORT NSString *const AWSCognitoIdentityIdChangedNotification; FOUNDATION_EXPORT NSString *const AWSCognitoNotificationPreviousId; FOUNDATION_EXPORT NSString *const AWSCognitoNotificationNewId; FOUNDATION_EXPORT NSString *const AWSIdentityProviderDigits; FOUNDATION_EXPORT NSString *const AWSIdentityProviderFacebook; FOUNDATION_EXPORT NSString *const AWSIdentityProviderGoogle; FOUNDATION_EXPORT NSString *const AWSIdentityProviderLoginWithAmazon; FOUNDATION_EXPORT NSString *const AWSIdentityProviderTwitter; FOUNDATION_EXPORT NSString *const AWSIdentityProviderAmazonCognitoIdentity; FOUNDATION_EXPORT NSString *const AWSCognitoCredentialsProviderHelperErrorDomain; typedef NS_ENUM(NSInteger, AWSCognitoCredentialsProviderHelperErrorType) { AWSCognitoCredentialsProviderHelperErrorTypeIdentityIsNil, AWSCognitoCredentialsProviderHelperErrorTypeTokenRefreshTimeout, }; @class AWSTask<__covariant ResultType>; /** AWSIdentityProvider provides an interface for acquiring an identity token from a provider. */ @protocol AWSIdentityProvider /** The name of the identity provider. e.g. graph.facebook.com. */ @property (nonatomic, readonly) NSString *identityProviderName; /** Returns the token associated with this provider. If the token is cached and invalid, should refresh and return the valid token. */ - (AWSTask *)token; @end /** `AWSIdentityProviderManager` provides an interface for creating the `logins` dictionary for Amazon Cognito Identity. */ @protocol AWSIdentityProviderManager /** Each entry in logins represents a single login with an identity provider. The key is the domain of the login provider (e.g. 'graph.facebook.com') and the value is the OAuth/OpenId Connect token that results from an authentication with that login provider. */ - (AWSTask *> *)logins; @optional /** * If the token contains the role arn and there are multiple roles, return the custom role to assume. This is currently only supported for SAML identity providers. */ @property (nonatomic, readonly) NSString *customRoleArn; @end /** AWSCognitoCredentialsProviderHelper provides a Cognito specific identity provider. Cognito Identity providers are associated with an identity pool. If the identity pool supports authenticated access, multiple logins may be added to link to the Cognito identity. */ @protocol AWSCognitoCredentialsProviderHelper /** The identity pool for this provider. Used to when making calls to the Amazon Cognito service */ @property (nonatomic, strong, readonly) NSString *identityPoolId; /** The identity id as determined by the Amazon Cognito service */ @property (nonatomic, strong, nullable) NSString *identityId; /** */ @property (nonatomic, strong, readonly, nullable) id identityProviderManager; /** Get/retrieve the identity id for this provider. If an identity id is already set on this provider, no remote call is made and the identity will be returned as a result of the AWSTask (the identityId is also available as a property). If no identityId is set on this provider, one will be retrieved from the service. */ - (AWSTask *)getIdentityId; /** Is this provider considered 'authenticated'. By default, only returns YES if logins is set. */ - (BOOL)isAuthenticated; /** Clear saved values for identityId, token, and logins. */ - (void)clear; @end /** An abstract implementation of the AWSCognitoCredentialsProviderHelper. */ @interface AWSAbstractCognitoCredentialsProviderHelper : NSObject /** The identity pool for this provider. Used to when making calls to the Amazon Cognito service */ @property (nonatomic, strong, readonly) NSString *identityPoolId; /** The identity id as determined by the Amazon Cognito service */ @property (nonatomic, strong, nullable) NSString *identityId; /** The identity provider manager that asynchronously returns `logins`. */ @property (nonatomic, strong, readonly, nullable) id identityProviderManager; @end /** An abstract implementation of the AWSCognitoCredentialsProviderHelper. Developers should extend this class when they want to implement developer authenticated identities and want to support the basic Amazon Cognito authflow in the same application. */ @interface AWSCognitoCredentialsProviderHelper : AWSAbstractCognitoCredentialsProviderHelper @property (nonatomic, assign) BOOL useEnhancedFlow; - (instancetype)initWithRegionType:(AWSRegionType)regionType identityPoolId:(NSString *)identityPoolId useEnhancedFlow:(BOOL)useEnhancedFlow identityProviderManager:(nullable id)identityProviderManager; @end NS_ASSUME_NONNULL_END