00649d0248
CI/CD / CI · API (dotnet build + test) (push) Successful in 40s
CI/CD / CI · Admin API (dotnet build) (push) Successful in 30s
CI/CD / CI · Dashboard (tsc) (push) Successful in 1m8s
CI/CD / CI · Admin Web (tsc) (push) Successful in 37s
CI/CD / CI · Website (tsc) (push) Successful in 45s
CI/CD / CI · Koja (tsc) (push) Successful in 50s
CI/CD / Deploy · all services (push) Successful in 5m16s
The platform no longer sells SMS. Each café saves its OWN Kavenegar API key + sender line (new Cafes columns + migration) and campaigns are sent and billed through that account. Backend: - GET/PUT /sms/settings (Manager/Owner; key echoed masked, verified against the provider before saving) - campaign + balance use the café's credentials; SMS_NOT_CONFIGURED error when missing; plan-tier SMS gating removed everywhere (PlanLimitChecker, SmsMarketingService, billing status) - platform Kavenegar config stays ONLY for login OTPs (env/DB) - design-time DbContext factory so `dotnet ef migrations add` works without booting the host Dashboard: - SMS screen: provider-settings card, not-configured callout, campaign form disabled until configured; quota bar removed (usage stays as info) - subscription screen + plan comparison no longer show SMS limits Admin panel: - Kavenegar/SMS section removed from integrations (request field now optional; stored OTP config untouched) - SMS limit field removed from the plan editor - nav label "درگاه و پیامک" → "درگاه پرداخت و AI" fa/en/ar translations. 86 tests pass; all tsc clean. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
39 lines
1.8 KiB
C#
39 lines
1.8 KiB
C#
namespace Meezi.Core.Interfaces;
|
|
|
|
public record KavenegarAccountInfo(long RemainCredit, string AccountType);
|
|
|
|
public record BulkSendResult(int SentCount, int FailedCount);
|
|
|
|
public interface ISmsService
|
|
{
|
|
/// <summary>Send a one-time password via Kavenegar Verify/Lookup template.</summary>
|
|
Task SendOtpAsync(string phone, string otp, CancellationToken cancellationToken = default);
|
|
|
|
/// <summary>Send a plain-text message to a single recipient.</summary>
|
|
Task SendMessageAsync(string phone, string message, CancellationToken cancellationToken = default);
|
|
|
|
/// <summary>
|
|
/// Send the same message to many recipients in batches of up to 200.
|
|
/// Never throws — failures per batch are counted and returned.
|
|
/// </summary>
|
|
Task<BulkSendResult> SendBulkAsync(IReadOnlyList<string> phones, string message, CancellationToken cancellationToken = default);
|
|
|
|
/// <summary>Returns credit balance from the Kavenegar account, or null if not configured.</summary>
|
|
Task<KavenegarAccountInfo?> GetAccountInfoAsync(CancellationToken cancellationToken = default);
|
|
|
|
/// <summary>
|
|
/// Bulk send using the CALLER's own provider credentials — marketing SMS is
|
|
/// bring-your-own-provider (each café configures its own API key + sender line).
|
|
/// Never throws — failures per batch are counted and returned.
|
|
/// </summary>
|
|
Task<BulkSendResult> SendBulkWithCredentialsAsync(
|
|
string apiKey,
|
|
string senderNumber,
|
|
IReadOnlyList<string> phones,
|
|
string message,
|
|
CancellationToken cancellationToken = default);
|
|
|
|
/// <summary>Credit balance for an EXPLICIT API key (a café's own account), or null on failure.</summary>
|
|
Task<KavenegarAccountInfo?> GetAccountInfoAsync(string apiKey, CancellationToken cancellationToken = default);
|
|
}
|