120 lines
No EOL
3.1 KiB
C#
120 lines
No EOL
3.1 KiB
C#
using UnityEngine;
|
|
using Supabase;
|
|
using Supabase.Gotrue;
|
|
using Client = Supabase.Client;
|
|
using Firebase;
|
|
using Firebase.Database;
|
|
|
|
public class Backend : MonoBehaviour
|
|
{
|
|
public static Backend instance;
|
|
|
|
[SerializeField] private string url;
|
|
[SerializeField] private string anonKey;
|
|
public Client Client;
|
|
public string email;
|
|
public string password;
|
|
public Session Session;
|
|
public Users User;
|
|
|
|
|
|
private async void Start()
|
|
{
|
|
var options = new SupabaseOptions
|
|
{
|
|
AutoConnectRealtime = true
|
|
};
|
|
|
|
|
|
Client = new Supabase.Client(url, anonKey, options);
|
|
await Client.InitializeAsync().ContinueWith(task =>
|
|
{
|
|
if (!task.IsCompletedSuccessfully)
|
|
{
|
|
Debug.LogError(task.Exception);
|
|
}
|
|
else
|
|
{
|
|
Debug.Log("Supabase Initialized");
|
|
}
|
|
});
|
|
FirebaseGet();
|
|
}
|
|
|
|
public async void SendData(string uid, int score, string displayName, int daysPlayed, int customersHelped,
|
|
int customersHelpedWrongly)
|
|
{
|
|
var user = new Users
|
|
{
|
|
uid = uid,
|
|
score = score,
|
|
displayName = displayName,
|
|
daysPlayed = daysPlayed,
|
|
customersHelped = customersHelped,
|
|
customersHelpedWrongly = customersHelpedWrongly,
|
|
};
|
|
await Client.From<Users>().Insert(user).ContinueWith(SendTask =>
|
|
{
|
|
if (!SendTask.IsCompletedSuccessfully)
|
|
{
|
|
Debug.LogError(SendTask.Exception);
|
|
}
|
|
else
|
|
{
|
|
Debug.Log("Data Sent Sucessfully");
|
|
}
|
|
});
|
|
}
|
|
|
|
public async void SignUp(string email, string password, string displayName)
|
|
{
|
|
Session = await Client.Auth.SignUp(email, password);
|
|
Debug.Log(Session.User.Id);
|
|
SendData(Session.User.Id, 0, displayName, 0, 0, 0);
|
|
}
|
|
|
|
public async void SignIn(string email, string password)
|
|
{
|
|
Session = await Client.Auth.SignIn(email, password);
|
|
Debug.Log(Session.User.Id);
|
|
GetData(Session.User.Id);
|
|
}
|
|
|
|
public async void GetData(string uid)
|
|
{
|
|
var result = await Client.From<Users>().Where(x => x.uid == uid).Get();
|
|
User = result.Model;
|
|
}
|
|
|
|
public NpcData FirebaseGet()
|
|
{
|
|
NpcData data = new NpcData();
|
|
FirebaseDatabase.DefaultInstance.RootReference.Child("scenarios").Child("1").GetValueAsync().ContinueWith(task =>
|
|
{
|
|
if (task.IsFaulted)
|
|
{
|
|
Debug.LogError(task.Exception);
|
|
}
|
|
else if (task.IsCompleted)
|
|
{
|
|
DataSnapshot snapshot = task.Result;
|
|
string json = snapshot.GetRawJsonValue();
|
|
data = JsonUtility.FromJson<NpcData>(json);
|
|
|
|
}
|
|
});
|
|
return data;
|
|
}
|
|
private void Awake()
|
|
{
|
|
if (instance == null)
|
|
{
|
|
instance = this;
|
|
DontDestroyOnLoad(gameObject);
|
|
}
|
|
else
|
|
{
|
|
Destroy(gameObject);
|
|
}
|
|
}
|
|
} |