1eb6e972b0
Bulk CommentChecker pass: fills in <param>/<inheritdoc> tags on public APIs across all 23 src/ projects so the doc-coverage gate is green. Also adds a Sister Projects section to CLAUDE.md pointing at the MxAccess Gateway and OtOpcUa sibling repos, and gitignores local credential captures (*login*.txt) and the wonder-app-vd03 deploy/ artifacts.
95 lines
4.8 KiB
C#
95 lines
4.8 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using ScadaLink.Commons.Entities.Notifications;
|
|
using ScadaLink.Commons.Interfaces.Repositories;
|
|
|
|
namespace ScadaLink.ConfigurationDatabase.Repositories;
|
|
|
|
public class NotificationRepository : INotificationRepository
|
|
{
|
|
private readonly ScadaLinkDbContext _context;
|
|
|
|
/// <summary>Initializes a new instance of the NotificationRepository class.</summary>
|
|
/// <param name="context">The database context.</param>
|
|
public NotificationRepository(ScadaLinkDbContext context)
|
|
{
|
|
_context = context ?? throw new ArgumentNullException(nameof(context));
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task<NotificationList?> GetNotificationListByIdAsync(int id, CancellationToken cancellationToken = default)
|
|
=> await _context.Set<NotificationList>().FindAsync(new object[] { id }, cancellationToken);
|
|
|
|
/// <inheritdoc />
|
|
public async Task<IReadOnlyList<NotificationList>> GetAllNotificationListsAsync(CancellationToken cancellationToken = default)
|
|
=> await _context.Set<NotificationList>().Include(n => n.Recipients).ToListAsync(cancellationToken);
|
|
|
|
/// <inheritdoc />
|
|
public async Task<NotificationList?> GetListByNameAsync(string name, CancellationToken cancellationToken = default)
|
|
=> await _context.Set<NotificationList>().FirstOrDefaultAsync(l => l.Name == name, cancellationToken);
|
|
|
|
/// <inheritdoc />
|
|
public async Task AddNotificationListAsync(NotificationList list, CancellationToken cancellationToken = default)
|
|
=> await _context.Set<NotificationList>().AddAsync(list, cancellationToken);
|
|
|
|
/// <inheritdoc />
|
|
public Task UpdateNotificationListAsync(NotificationList list, CancellationToken cancellationToken = default)
|
|
{ _context.Set<NotificationList>().Update(list); return Task.CompletedTask; }
|
|
|
|
/// <inheritdoc />
|
|
public async Task DeleteNotificationListAsync(int id, CancellationToken cancellationToken = default)
|
|
{
|
|
var entity = await GetNotificationListByIdAsync(id, cancellationToken);
|
|
if (entity != null) _context.Set<NotificationList>().Remove(entity);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task<NotificationRecipient?> GetRecipientByIdAsync(int id, CancellationToken cancellationToken = default)
|
|
=> await _context.Set<NotificationRecipient>().FindAsync(new object[] { id }, cancellationToken);
|
|
|
|
/// <inheritdoc />
|
|
public async Task<IReadOnlyList<NotificationRecipient>> GetRecipientsByListIdAsync(int notificationListId, CancellationToken cancellationToken = default)
|
|
=> await _context.Set<NotificationRecipient>().Where(r => r.NotificationListId == notificationListId).ToListAsync(cancellationToken);
|
|
|
|
/// <inheritdoc />
|
|
public async Task AddRecipientAsync(NotificationRecipient recipient, CancellationToken cancellationToken = default)
|
|
=> await _context.Set<NotificationRecipient>().AddAsync(recipient, cancellationToken);
|
|
|
|
/// <inheritdoc />
|
|
public Task UpdateRecipientAsync(NotificationRecipient recipient, CancellationToken cancellationToken = default)
|
|
{ _context.Set<NotificationRecipient>().Update(recipient); return Task.CompletedTask; }
|
|
|
|
/// <inheritdoc />
|
|
public async Task DeleteRecipientAsync(int id, CancellationToken cancellationToken = default)
|
|
{
|
|
var entity = await GetRecipientByIdAsync(id, cancellationToken);
|
|
if (entity != null) _context.Set<NotificationRecipient>().Remove(entity);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task<SmtpConfiguration?> GetSmtpConfigurationByIdAsync(int id, CancellationToken cancellationToken = default)
|
|
=> await _context.Set<SmtpConfiguration>().FindAsync(new object[] { id }, cancellationToken);
|
|
|
|
/// <inheritdoc />
|
|
public async Task<IReadOnlyList<SmtpConfiguration>> GetAllSmtpConfigurationsAsync(CancellationToken cancellationToken = default)
|
|
=> await _context.Set<SmtpConfiguration>().ToListAsync(cancellationToken);
|
|
|
|
/// <inheritdoc />
|
|
public async Task AddSmtpConfigurationAsync(SmtpConfiguration configuration, CancellationToken cancellationToken = default)
|
|
=> await _context.Set<SmtpConfiguration>().AddAsync(configuration, cancellationToken);
|
|
|
|
/// <inheritdoc />
|
|
public Task UpdateSmtpConfigurationAsync(SmtpConfiguration configuration, CancellationToken cancellationToken = default)
|
|
{ _context.Set<SmtpConfiguration>().Update(configuration); return Task.CompletedTask; }
|
|
|
|
/// <inheritdoc />
|
|
public async Task DeleteSmtpConfigurationAsync(int id, CancellationToken cancellationToken = default)
|
|
{
|
|
var entity = await GetSmtpConfigurationByIdAsync(id, cancellationToken);
|
|
if (entity != null) _context.Set<SmtpConfiguration>().Remove(entity);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task<int> SaveChangesAsync(CancellationToken cancellationToken = default)
|
|
=> await _context.SaveChangesAsync(cancellationToken);
|
|
}
|