2022-08-03 22:51:39 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Google.Cloud.Firestore;
|
|
|
|
|
|
2022-08-07 13:54:29 +01:00
|
|
|
|
namespace Mixonomer.Fire
|
2022-08-03 22:51:39 +01:00
|
|
|
|
{
|
|
|
|
|
public class UserRepo
|
|
|
|
|
{
|
|
|
|
|
private static readonly string USER_COLLECTION = "spotify_users";
|
|
|
|
|
|
|
|
|
|
private readonly FirestoreDb db;
|
|
|
|
|
private readonly CollectionReference userCollection;
|
|
|
|
|
|
|
|
|
|
public UserRepo(FirestoreDb db = null, string projectId = null)
|
|
|
|
|
{
|
|
|
|
|
this.db = db ?? FirestoreDb.Create(projectId);
|
|
|
|
|
userCollection = this.db.Collection(USER_COLLECTION);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IAsyncEnumerable<DocumentSnapshot> GetUsers()
|
|
|
|
|
{
|
|
|
|
|
return userCollection.StreamAsync();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<User> GetUser(string username)
|
|
|
|
|
{
|
|
|
|
|
var query = userCollection.WhereEqualTo("username", username.ToLower());
|
|
|
|
|
var querySnapshot = await query.GetSnapshotAsync().ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
return querySnapshot.SingleOrDefault()?.ConvertTo<User>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<IAsyncEnumerable<DocumentSnapshot>> GetPlaylists(string username)
|
|
|
|
|
{
|
|
|
|
|
var user = await GetUser(username);
|
|
|
|
|
|
|
|
|
|
var playlistCollection = db.Collection($"{USER_COLLECTION}/{user.Reference.Id}/playlists");
|
|
|
|
|
|
|
|
|
|
return playlistCollection.StreamAsync();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|