75 lines
2.6 KiB
C#
75 lines
2.6 KiB
C#
namespace Netina.Infrastructure.Services;
|
|
|
|
public class SmsService : ISmsService
|
|
{
|
|
private readonly IRestApiWrapper _restApiWrapper;
|
|
private readonly ILogger<SmsService> _logger;
|
|
private readonly IHostEnvironment _environment;
|
|
private readonly SiteSettings _siteSettings;
|
|
public SmsService(
|
|
IRestApiWrapper restApiWrapper,
|
|
IOptionsSnapshot<SiteSettings> optionsSnapshot,
|
|
ILogger<SmsService> logger,
|
|
IHostEnvironment environment)
|
|
{
|
|
_restApiWrapper = restApiWrapper;
|
|
_logger = logger;
|
|
_environment = environment;
|
|
_siteSettings = optionsSnapshot.Value;
|
|
}
|
|
public async Task SendForgerPasswordAsync(string phoneNumber, string newPassword)
|
|
{
|
|
var rest = await _restApiWrapper.KaveNegarRestApi.SendLookUp(_siteSettings.KaveNegarApiKey, phoneNumber, newPassword,
|
|
null, null
|
|
, null, null, "forgetPassword");
|
|
|
|
if (rest.Return.status != 200)
|
|
throw new BaseApiException(ApiResultStatusCode.SendSmsError, rest.Return.message);
|
|
}
|
|
|
|
public async Task SendVerifyCodeAsync(string phoneNumber, string verifyCode)
|
|
{
|
|
|
|
try
|
|
{
|
|
var rest = await _restApiWrapper.KaveNegarRestApi.SendLookUp(_siteSettings.KaveNegarApiKey, phoneNumber, _siteSettings.LoginOtpTemplate,verifyCode);
|
|
|
|
if (rest.Return.status != 200 && _environment.IsProduction())
|
|
throw new BaseApiException(ApiResultStatusCode.SendSmsError, rest.Return.message);
|
|
}
|
|
catch (ApiException apiException)
|
|
{
|
|
if (_environment.IsProduction())
|
|
throw;
|
|
else
|
|
_logger.LogError(apiException.Message);
|
|
}
|
|
catch (Exception apiException)
|
|
{
|
|
if (_environment.IsProduction())
|
|
throw;
|
|
else
|
|
_logger.LogError(apiException.Message);
|
|
}
|
|
}
|
|
|
|
public async Task SendLookUpAsync(string phoneNumber, string template, string token, string? token2 = null, string? token3 = null, string? token10 = null, string? token20 = null)
|
|
{
|
|
try
|
|
{
|
|
var rest = await _restApiWrapper.KaveNegarRestApi.SendLookUp(_siteSettings.KaveNegarApiKey, phoneNumber,template,token,token2,token3,token10,token20);
|
|
|
|
if (rest.Return.status != 200)
|
|
throw new BaseApiException(ApiResultStatusCode.SendSmsError, rest.Return.message);
|
|
}
|
|
catch (ApiException apiException)
|
|
{
|
|
_logger.LogError(apiException.Message);
|
|
}
|
|
catch (Exception apiException)
|
|
{
|
|
_logger.LogError(apiException.Message);
|
|
}
|
|
}
|
|
|
|
} |