mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
51 lines
1.5 KiB
C#
51 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Data;
|
|
using BTCPayServer.Events;
|
|
using BTCPayServer.Services.Notifications.Blobs;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Models.NotificationViewModels
|
|
{
|
|
public class IndexViewModel
|
|
{
|
|
public List<NotificationViewModel> Items { get; set; }
|
|
}
|
|
|
|
public class NotificationViewModel
|
|
{
|
|
public string Id { get; set; }
|
|
public DateTimeOffset Created { get; set; }
|
|
public string Body { get; set; }
|
|
public string ActionLink { get; set; }
|
|
public bool Seen { get; set; }
|
|
}
|
|
|
|
public static class NotificationViewModelExt
|
|
{
|
|
public static NotificationViewModel ViewModel(this NotificationData data)
|
|
{
|
|
var baseType = typeof(BaseNotification);
|
|
|
|
var fullTypeName = baseType.FullName.Replace(nameof(BaseNotification), data.NotificationType, StringComparison.OrdinalIgnoreCase);
|
|
var parsedType = baseType.Assembly.GetType(fullTypeName);
|
|
var instance = Activator.CreateInstance(parsedType) as BaseNotification;
|
|
|
|
var casted = JsonConvert.DeserializeObject(ZipUtils.Unzip(data.Blob), parsedType);
|
|
var obj = new NotificationViewModel
|
|
{
|
|
Id = data.Id,
|
|
Created = data.Created,
|
|
Seen = data.Seen
|
|
};
|
|
|
|
instance.FillViewModel(obj);
|
|
|
|
return obj;
|
|
}
|
|
}
|
|
}
|