You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CrowdControl/Assets/GoogleSignInManager.cs

186 lines
5.7 KiB
C#

2 weeks ago
using UnityEngine;
using UnityEngine.UI;
using Google;
using PlayFab;
using PlayFab.ClientModels;
using System;
using System.Collections.Generic;
2 weeks ago
using System.Threading.Tasks;
public class GoogleSignInManager : MonoBehaviour
{
private GoogleSignInConfiguration configuration;
public Bootstrapper bootstrapper; // Assign in Inspector
2 weeks ago
public Button googleSignInButton;
void Awake()
2 weeks ago
{
configuration = new GoogleSignInConfiguration
{
WebClientId = "723833850517-865419enf8t0j1itln3cgmd1b67shsue.apps.googleusercontent.com",
RequestEmail = true,
RequestAuthCode = true
2 weeks ago
};
GoogleSignIn.Configuration = configuration;
Application.quitting += SyncPlayerPrefsToPlayFabOnQuit;
}
void Start()
{
2 weeks ago
if (PlayerPrefs.HasKey("PlayFabID"))
{
Debug.Log("User already signed in, attempting silent login...");
SignInSilently();
}
else
{
Debug.Log("No saved PlayFab ID, waiting for user sign-in.");
googleSignInButton.gameObject.SetActive(true);
googleSignInButton.onClick.RemoveAllListeners();
2 weeks ago
googleSignInButton.onClick.AddListener(SignInWithGoogle);
}
}
public void SignInWithGoogle()
{
googleSignInButton.interactable = false;
2 weeks ago
GoogleSignIn.DefaultInstance.SignIn().ContinueWith(OnGoogleSignIn);
}
private void OnGoogleSignIn(Task<GoogleSignInUser> task)
{
if (task.IsFaulted || task.IsCanceled)
2 weeks ago
{
Debug.LogError("Google Sign-In failed: " + task.Exception);
// ✅ Show the sign-in button again
googleSignInButton.gameObject.SetActive(true);
googleSignInButton.interactable = true;
googleSignInButton.onClick.RemoveAllListeners();
googleSignInButton.onClick.AddListener(SignInWithGoogle);
return;
2 weeks ago
}
GoogleSignInUser user = task.Result;
string authCode = user.AuthCode;
PlayerPrefs.SetString("GoogleAuthCode", authCode);
PlayerPrefsKeys.RegisterKey("GoogleAuthCode");
PlayerPrefs.Save();
LoginToPlayFab(authCode);
}
private void SignInSilently()
{
if (PlayerPrefs.HasKey("GoogleAuthCode"))
2 weeks ago
{
string authCode = PlayerPrefs.GetString("GoogleAuthCode");
LoginToPlayFab(authCode);
2 weeks ago
}
else
{
Debug.LogWarning("No Google AuthCode found for silent sign-in.");
googleSignInButton.gameObject.SetActive(true);
googleSignInButton.onClick.RemoveAllListeners();
googleSignInButton.onClick.AddListener(SignInWithGoogle);
2 weeks ago
}
}
private void LoginToPlayFab(string authCode)
2 weeks ago
{
var request = new LoginWithGoogleAccountRequest
{
TitleId = PlayFabSettings.TitleId,
ServerAuthCode = authCode,
2 weeks ago
CreateAccount = true
};
PlayFabClientAPI.LoginWithGoogleAccount(request, OnPlayFabLoginSuccess, OnPlayFabLoginFailure);
}
private void OnPlayFabLoginSuccess(LoginResult result)
{
Debug.Log("✅ PlayFab Login Success! PlayFab ID: " + result.PlayFabId);
2 weeks ago
PlayerPrefs.SetString("PlayFabID", result.PlayFabId);
PlayerPrefsKeys.RegisterKey("PlayFabID");
2 weeks ago
PlayerPrefs.Save();
LoadPlayerPrefsFromPlayFab(() =>
{
googleSignInButton.gameObject.SetActive(false);
bootstrapper.StartGame(); // Start the game after loading
});
2 weeks ago
}
private void OnPlayFabLoginFailure(PlayFabError error)
{
Debug.LogError("❌ PlayFab Login Failed: " + error.GenerateErrorReport());
// ✅ Re-enable button so player can retry
googleSignInButton.gameObject.SetActive(true);
googleSignInButton.interactable = true;
googleSignInButton.onClick.RemoveAllListeners();
googleSignInButton.onClick.AddListener(SignInWithGoogle);
2 weeks ago
}
private void LoadPlayerPrefsFromPlayFab(Action onComplete)
2 weeks ago
{
PlayFabClientAPI.GetUserData(new GetUserDataRequest(), result =>
2 weeks ago
{
if (result.Data != null)
{
foreach (var entry in result.Data)
{
PlayerPrefs.SetString(entry.Key, entry.Value.Value);
PlayerPrefsKeys.RegisterKey(entry.Key);
}
PlayerPrefs.Save();
Debug.Log("✅ Loaded PlayerPrefs from PlayFab.");
}
else
{
Debug.Log(" No saved PlayerPrefs found in PlayFab.");
}
onComplete?.Invoke();
},
error =>
2 weeks ago
{
Debug.LogError("❌ Failed to load PlayerPrefs from PlayFab: " + error.GenerateErrorReport());
onComplete?.Invoke();
});
}
private void SyncPlayerPrefsToPlayFabOnQuit()
{
Dictionary<string, string> allPrefs = new Dictionary<string, string>();
foreach (var key in PlayerPrefsKeys.GetAllKeys())
{
allPrefs[key] = PlayerPrefs.GetString(key);
2 weeks ago
}
var request = new UpdateUserDataRequest
{
Data = allPrefs
};
PlayFabClientAPI.UpdateUserData(request,
result => Debug.Log("✅ Synced PlayerPrefs to PlayFab on quit."),
error => Debug.LogError("❌ Failed to sync PlayerPrefs on quit: " + error.GenerateErrorReport()));
2 weeks ago
}
public void SignOut()
{
PlayerPrefs.DeleteKey("PlayFabID");
PlayerPrefs.DeleteKey("GoogleAuthCode");
2 weeks ago
PlayerPrefs.Save();
GoogleSignIn.DefaultInstance.SignOut();
Debug.Log("User signed out.");
2 weeks ago
}
}