#if !DISABLE_PLAYFABENTITY_API && !DISABLE_PLAYFAB_STATIC_API using System; using System.Collections.Generic; using PlayFab.AuthenticationModels; using PlayFab.Internal; namespace PlayFab { /// /// The Authentication APIs provide a convenient way to convert classic authentication responses into entity authentication /// models. These APIs will provide you with the entity authentication token needed for subsequent Entity API calls. The /// game_server API is designed to create uniquely identifiable game_server entities. The game_server Entity token can be /// used to call Matchmaking Lobby and Pubsub for server scenarios. /// public static class PlayFabAuthenticationAPI { static PlayFabAuthenticationAPI() {} /// /// Verify entity login. /// public static bool IsEntityLoggedIn() { return PlayFabSettings.staticPlayer.IsEntityLoggedIn(); } /// /// Clear the Client SessionToken which allows this Client to call API calls requiring login. /// A new/fresh login will be required after calling this. /// public static void ForgetAllCredentials() { PlayFabSettings.staticPlayer.ForgetAllCredentials(); } /// /// Create a game_server entity token and return a new or existing game_server entity. /// public static void AuthenticateGameServerWithCustomId(AuthenticateCustomIdRequest request, Action resultCallback, Action errorCallback, object customData = null, Dictionary extraHeaders = null) { var context = (request == null ? null : request.AuthenticationContext) ?? PlayFabSettings.staticPlayer; var callSettings = PlayFabSettings.staticSettings; if (!context.IsEntityLoggedIn()) throw new PlayFabException(PlayFabExceptionCode.NotLoggedIn,"Must be logged in to call this method"); PlayFabHttp.MakeApiCall("/GameServerIdentity/AuthenticateGameServerWithCustomId", request, AuthType.EntityToken, resultCallback, errorCallback, customData, extraHeaders, context, callSettings); } /// /// Delete a game_server entity. /// public static void Delete(DeleteRequest request, Action resultCallback, Action errorCallback, object customData = null, Dictionary extraHeaders = null) { var context = (request == null ? null : request.AuthenticationContext) ?? PlayFabSettings.staticPlayer; var callSettings = PlayFabSettings.staticSettings; if (!context.IsEntityLoggedIn()) throw new PlayFabException(PlayFabExceptionCode.NotLoggedIn,"Must be logged in to call this method"); PlayFabHttp.MakeApiCall("/GameServerIdentity/Delete", request, AuthType.EntityToken, resultCallback, errorCallback, customData, extraHeaders, context, callSettings); } /// /// Method to exchange a legacy AuthenticationTicket or title SecretKey for an Entity Token or to refresh a still valid /// Entity Token. /// public static void GetEntityToken(GetEntityTokenRequest request, Action resultCallback, Action errorCallback, object customData = null, Dictionary extraHeaders = null) { var context = (request == null ? null : request.AuthenticationContext) ?? PlayFabSettings.staticPlayer; var callSettings = PlayFabSettings.staticSettings; AuthType authType = AuthType.None; #if !DISABLE_PLAYFABCLIENT_API if (context.IsClientLoggedIn()) { authType = AuthType.LoginSession; } #endif #if ENABLE_PLAYFABSERVER_API || ENABLE_PLAYFABADMIN_API || ENABLE_PLAYFAB_SECRETKEY if (callSettings.DeveloperSecretKey != null) { authType = AuthType.DevSecretKey; } #endif #if !DISABLE_PLAYFABENTITY_API if (context.IsEntityLoggedIn()) { authType = AuthType.EntityToken; } #endif PlayFabHttp.MakeApiCall("/Authentication/GetEntityToken", request, authType, resultCallback, errorCallback, customData, extraHeaders, context, callSettings); } /// /// Method for a server to validate a client provided EntityToken. Only callable by the title entity. /// public static void ValidateEntityToken(ValidateEntityTokenRequest request, Action resultCallback, Action errorCallback, object customData = null, Dictionary extraHeaders = null) { var context = (request == null ? null : request.AuthenticationContext) ?? PlayFabSettings.staticPlayer; var callSettings = PlayFabSettings.staticSettings; if (!context.IsEntityLoggedIn()) throw new PlayFabException(PlayFabExceptionCode.NotLoggedIn,"Must be logged in to call this method"); PlayFabHttp.MakeApiCall("/Authentication/ValidateEntityToken", request, AuthType.EntityToken, resultCallback, errorCallback, customData, extraHeaders, context, callSettings); } } } #endif