mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-13 10:14:16 +01:00
62 lines
1.7 KiB
C#
62 lines
1.7 KiB
C#
using Bit.Core.Abstractions;
|
|
using LiteDB;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Serialization;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public class LiteDbStorageService : IStorageService
|
|
{
|
|
private readonly LiteCollection<JsonItem> _collection;
|
|
private readonly JsonSerializerSettings _jsonSettings = new JsonSerializerSettings
|
|
{
|
|
ContractResolver = new CamelCasePropertyNamesContractResolver()
|
|
};
|
|
|
|
public LiteDbStorageService(string dbPath)
|
|
{
|
|
var db = new LiteDatabase($"Filename={dbPath};");
|
|
_collection = db.GetCollection<JsonItem>("json_items");
|
|
}
|
|
|
|
public Task<T> GetAsync<T>(string key)
|
|
{
|
|
var item = _collection.Find(i => i.Id == key).FirstOrDefault();
|
|
if(item == null)
|
|
{
|
|
return Task.FromResult(default(T));
|
|
}
|
|
return Task.FromResult(JsonConvert.DeserializeObject<T>(item.Value, _jsonSettings));
|
|
}
|
|
|
|
public Task SaveAsync<T>(string key, T obj)
|
|
{
|
|
var data = JsonConvert.SerializeObject(obj, _jsonSettings);
|
|
_collection.Upsert(new JsonItem(key, data));
|
|
return Task.FromResult(0);
|
|
}
|
|
|
|
public Task RemoveAsync(string key)
|
|
{
|
|
_collection.Delete(i => i.Id == key);
|
|
return Task.FromResult(0);
|
|
}
|
|
|
|
private class JsonItem
|
|
{
|
|
public JsonItem() { }
|
|
|
|
public JsonItem(string key, string value)
|
|
{
|
|
Id = key;
|
|
Value = value;
|
|
}
|
|
|
|
public string Id { get; set; }
|
|
public string Value { get; set; }
|
|
}
|
|
}
|
|
}
|