SSLR/SSLR/Assets/Scripts/Backend.cs

86 lines
No EOL
2.2 KiB
C#

using UnityEngine;
using Supabase;
using Supabase.Gotrue;
using Client = Supabase.Client;
public class Backend : MonoBehaviour
{
[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");
}
});
SignIn(email, password);
}
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;
}
}