- Introduced billing capabilities, allowing users to request payments for subscription periods (3/6/12 months) with admin approval via Telegram. - Updated role management to include a `BillingEnabled` property, preventing billing for admin roles. - Enhanced the `CreateRoleCommand` and `UpdateRoleCommand` to accept billing parameters, ensuring proper handling during role creation and updates. - Added new endpoints for billing management and integrated billing checks into VPN config creation to enforce payment requirements. - Updated related services, models, and tests to support the new billing features, ensuring comprehensive coverage and functionality. - Enhanced documentation to reflect the new billing processes and role management changes.
61 lines
1.7 KiB
C#
61 lines
1.7 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using PnvPanel.Domain.Activation;
|
|
using PnvPanel.Domain.Apps;
|
|
using PnvPanel.Domain.Audit;
|
|
using PnvPanel.Domain.Billing;
|
|
using PnvPanel.Domain.Configs;
|
|
using PnvPanel.Domain.Inbounds;
|
|
using PnvPanel.Domain.Instructions;
|
|
using PnvPanel.Domain.News;
|
|
using PnvPanel.Domain.Nodes;
|
|
using PnvPanel.Domain.Pricing;
|
|
using PnvPanel.Domain.Support;
|
|
using PnvPanel.Domain.Telegram;
|
|
|
|
namespace PnvPanel.Application.Common.Interfaces;
|
|
|
|
public interface IAppDbContext
|
|
{
|
|
DbSet<ActivationRequest> ActivationRequests { get; }
|
|
|
|
DbSet<AuditLog> AuditLogs { get; }
|
|
|
|
DbSet<TelegramLinkToken> TelegramLinkTokens { get; }
|
|
|
|
DbSet<TelegramLoginRequest> TelegramLoginRequests { get; }
|
|
|
|
DbSet<Node> Nodes { get; }
|
|
|
|
DbSet<Inbound> Inbounds { get; }
|
|
|
|
DbSet<VpnConfig> VpnConfigs { get; }
|
|
|
|
DbSet<TrafficSample> TrafficSamples { get; }
|
|
|
|
DbSet<ClientApp> ClientApps { get; }
|
|
|
|
DbSet<NewsPost> NewsPosts { get; }
|
|
|
|
DbSet<SupportTicket> SupportTickets { get; }
|
|
|
|
DbSet<TicketComment> TicketComments { get; }
|
|
|
|
DbSet<TicketAttachment> TicketAttachments { get; }
|
|
|
|
DbSet<InstructionIntro> InstructionIntros { get; }
|
|
|
|
DbSet<InstructionTab> InstructionTabs { get; }
|
|
|
|
DbSet<PricingSettings> PricingSettings { get; }
|
|
|
|
DbSet<BillingSettings> BillingSettings { get; }
|
|
|
|
DbSet<PaymentRequest> PaymentRequests { get; }
|
|
|
|
/// <summary>Нужен для advisory-lock при проверке квоты конфигов (см. CreateVpnConfigCommandHandler).</summary>
|
|
DatabaseFacade Database { get; }
|
|
|
|
Task<int> SaveChangesAsync(CancellationToken cancellationToken);
|
|
}
|