// // Copyright (C) 2017 Google Inc. 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. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License 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. // namespace Google.Impl { using System; using System.Collections.Generic; using System.Runtime.InteropServices; internal class GoogleSignInImpl : BaseObject, ISignInImpl { #if UNITY_ANDROID private const string DllName = "native-googlesignin"; #else private const string DllName = "__Internal"; #endif internal GoogleSignInImpl(GoogleSignInConfiguration configuration) : base(GoogleSignIn_Create(GetPlayerActivity())) { if (configuration != null) { List scopes = new List(); if (configuration.AdditionalScopes != null) { scopes.AddRange(configuration.AdditionalScopes); } GoogleSignIn_Configure(SelfPtr(), configuration.UseGameSignIn, configuration.WebClientId, configuration.RequestAuthCode, configuration.ForceTokenRefresh, configuration.RequestEmail, configuration.RequestIdToken, configuration.HidePopups, scopes.ToArray(), scopes.Count, configuration.AccountName); } } /// Enables/Disables verbose logging to help troubleshooting public void EnableDebugLogging(bool flag) { GoogleSignIn_EnableDebugLogging(SelfPtr(), flag); } /// /// Starts the authentication process. /// /// /// The authenication process is started and may display account picker /// popups and consent prompts based on the state of authentication and /// the requested elements. /// public Future SignIn() { IntPtr nativeFuture = GoogleSignIn_SignIn(SelfPtr()); return new Future(new NativeFuture(nativeFuture)); } /// /// Starts the authentication process. /// /// /// The authenication process is started and may display account picker /// popups and consent prompts based on the state of authentication and /// the requested elements. /// public Future SignInSilently() { IntPtr nativeFuture = GoogleSignIn_SignInSilently(SelfPtr()); return new Future(new NativeFuture(nativeFuture)); } /// /// Signs out the User. /// public void SignOut() { GoogleSignIn_Signout(SelfPtr()); } /// /// Disconnects the user from the application and revokes all consent. /// public void Disconnect() { GoogleSignIn_Disconnect(SelfPtr()); } /// /// Creates an instance of the native Google Sign-In implementation. /// /// /// For Android this must be the JNI raw object for the parentActivity. /// For iOS it is ignored. /// /// The pointer to the instance. /// Data used in creating the instance. [DllImport(DllName)] static extern IntPtr GoogleSignIn_Create(IntPtr data); [DllImport(DllName)] static extern void GoogleSignIn_EnableDebugLogging(HandleRef self, bool flag); [DllImport(DllName)] static extern bool GoogleSignIn_Configure(HandleRef self, bool useGameSignIn, string webClientId, bool requestAuthCode, bool forceTokenRefresh, bool requestEmail, bool requestIdToken, bool hidePopups, string[] additionalScopes, int scopeCount, string accountName); [DllImport(DllName)] static extern IntPtr GoogleSignIn_SignIn(HandleRef self); [DllImport(DllName)] static extern IntPtr GoogleSignIn_SignInSilently(HandleRef self); [DllImport(DllName)] static extern void GoogleSignIn_Signout(HandleRef self); [DllImport(DllName)] static extern void GoogleSignIn_Disconnect(HandleRef self); [DllImport(DllName)] internal static extern void GoogleSignIn_DisposeFuture(HandleRef self); [DllImport(DllName)] internal static extern bool GoogleSignIn_Pending(HandleRef self); [DllImport(DllName)] internal static extern IntPtr GoogleSignIn_Result(HandleRef self); [DllImport(DllName)] internal static extern int GoogleSignIn_Status(HandleRef self); [DllImport(DllName)] internal static extern UIntPtr GoogleSignIn_GetServerAuthCode( HandleRef self, [In, Out] byte[] bytes, UIntPtr len); [DllImport(DllName)] internal static extern UIntPtr GoogleSignIn_GetDisplayName(HandleRef self, [In, Out] byte[] bytes, UIntPtr len); [DllImport(DllName)] internal static extern UIntPtr GoogleSignIn_GetEmail(HandleRef self, [In, Out] byte[] bytes, UIntPtr len); [DllImport(DllName)] internal static extern UIntPtr GoogleSignIn_GetFamilyName(HandleRef self, [In, Out] byte[] bytes, UIntPtr len); [DllImport(DllName)] internal static extern UIntPtr GoogleSignIn_GetGivenName(HandleRef self, [In, Out] byte[] bytes, UIntPtr len); [DllImport(DllName)] internal static extern UIntPtr GoogleSignIn_GetIdToken(HandleRef self, [In, Out] byte[] bytes, UIntPtr len); [DllImport(DllName)] internal static extern UIntPtr GoogleSignIn_GetImageUrl(HandleRef self, [In, Out] byte[] bytes, UIntPtr len); [DllImport(DllName)] internal static extern UIntPtr GoogleSignIn_GetUserId(HandleRef self, [In, Out] byte[] bytes, UIntPtr len); // Gets the Unity player activity. // For iOS, this returns Zero. private static IntPtr GetPlayerActivity() { #if UNITY_ANDROID UnityEngine.AndroidJavaClass jc = new UnityEngine.AndroidJavaClass( "com.unity3d.player.UnityPlayer"); return jc.GetStatic("currentActivity") .GetRawObject(); #else return IntPtr.Zero; #endif } } }