DocSpace-client/common/ASC.VoipService/Twilio/TwilioProvider.cs

207 lines
6.7 KiB
C#
Raw Normal View History

2019-06-06 14:41:16 +00:00
using RecordingResource = Twilio.Rest.Api.V2010.Account.Call.RecordingResource;
namespace ASC.VoipService.Twilio;
public class TwilioProvider : IVoipProvider
2019-06-06 14:41:16 +00:00
{
private readonly string _accountSid;
private readonly string _authToken;
private readonly TwilioRestClient _client;
private readonly AuthContext _authContext;
private readonly TenantUtil _tenantUtil;
private readonly SecurityContext _securityContext;
private readonly BaseCommonLinkUtility _baseCommonLinkUtility;
public TwilioProvider(string accountSid, string authToken, AuthContext authContext, TenantUtil tenantUtil, SecurityContext securityContext, BaseCommonLinkUtility baseCommonLinkUtility)
2019-06-06 14:41:16 +00:00
{
2022-03-09 17:15:51 +00:00
ArgumentNullOrEmptyException.ThrowIfNullOrEmpty(accountSid);
ArgumentNullOrEmptyException.ThrowIfNullOrEmpty(authToken);
2019-06-06 14:41:16 +00:00
_authToken = authToken;
_authContext = authContext;
_tenantUtil = tenantUtil;
_securityContext = securityContext;
_baseCommonLinkUtility = baseCommonLinkUtility;
_accountSid = accountSid;
2019-06-06 14:41:16 +00:00
_client = new TwilioRestClient(accountSid, authToken);
}
2019-06-06 14:41:16 +00:00
#region Call
2019-06-06 14:41:16 +00:00
public VoipRecord GetRecord(string callId, string recordSid)
{
var result = new VoipRecord { Sid = recordSid };
var count = 6;
2019-06-06 14:41:16 +00:00
while (count > 0)
2019-06-06 14:41:16 +00:00
{
try
2019-06-06 14:41:16 +00:00
{
var record = RecordingResource.Fetch(callId, recordSid, client: _client);
if (!record.Price.HasValue)
2019-06-06 14:41:16 +00:00
{
count--;
Thread.Sleep(10000);
continue;
2019-06-06 14:41:16 +00:00
}
result.Price = (-1) * record.Price.Value;
2019-06-06 14:41:16 +00:00
result.Duration = Convert.ToInt32(record.Duration);
if (record.Uri != null)
{
result.Uri = record.Uri;
}
break;
}
catch (ApiException)
{
count--;
Thread.Sleep(10000);
}
2019-06-06 14:41:16 +00:00
}
return result;
}
2019-06-06 14:41:16 +00:00
public void CreateQueue(VoipPhone newPhone)
{
newPhone.Settings.Queue = ((TwilioPhone)newPhone).CreateQueue(newPhone.Number, 5, string.Empty, 5);
}
2019-06-06 14:41:16 +00:00
#endregion
2019-06-06 14:41:16 +00:00
#region Numbers
2019-06-06 14:41:16 +00:00
public VoipPhone BuyNumber(string phoneNumber)
{
var newNumber = IncomingPhoneNumberResource.Create(
new CreateIncomingPhoneNumberOptions
{
PathAccountSid = _accountSid,
PhoneNumber = new PhoneNumber(phoneNumber)
}, _client);
2019-06-06 14:41:16 +00:00
return new TwilioPhone(_client, _authContext, _tenantUtil, _securityContext, _baseCommonLinkUtility) { Id = newNumber.Sid, Number = phoneNumber.Substring(1) };
}
2019-06-06 14:41:16 +00:00
public VoipPhone DeleteNumber(VoipPhone phone)
{
IncomingPhoneNumberResource.Delete(phone.Id, client: _client);
return phone;
}
2019-06-06 14:41:16 +00:00
public IEnumerable<VoipPhone> GetExistingPhoneNumbers()
{
var result = IncomingPhoneNumberResource.Read(client: _client);
return result.Select(r => new TwilioPhone(_client, _authContext, _tenantUtil, _securityContext, _baseCommonLinkUtility) { Id = r.Sid, Number = r.PhoneNumber.ToString() });
}
2019-06-06 14:41:16 +00:00
public IEnumerable<VoipPhone> GetAvailablePhoneNumbers(PhoneNumberType phoneNumberType, string isoCountryCode)
{
return phoneNumberType switch
2019-06-06 14:41:16 +00:00
{
PhoneNumberType.Local => LocalResource.Read(isoCountryCode, voiceEnabled: true, client: _client).Select(r => new TwilioPhone(_client, _authContext, _tenantUtil, _securityContext, _baseCommonLinkUtility) { Number = r.PhoneNumber.ToString() }),
PhoneNumberType.TollFree => TollFreeResource.Read(isoCountryCode, voiceEnabled: true, client: _client).Select(r => new TwilioPhone(_client, _authContext, _tenantUtil, _securityContext, _baseCommonLinkUtility) { Number = r.PhoneNumber.ToString() }),
2019-06-06 14:41:16 +00:00
_ => new List<VoipPhone>(),
};
}
2019-06-06 14:41:16 +00:00
public VoipPhone GetPhone(string phoneSid)
{
var phone = IncomingPhoneNumberResource.Fetch(phoneSid, client: _client);
2019-06-06 14:41:16 +00:00
var result = new TwilioPhone(_client, _authContext, _tenantUtil, _securityContext, _baseCommonLinkUtility)
{
Id = phone.Sid,
Number = phone.PhoneNumber.ToString(),
Settings = new TwilioVoipSettings(_authContext, _tenantUtil, _securityContext, _baseCommonLinkUtility)
};
2019-06-06 14:41:16 +00:00
if (phone.VoiceUrl == null)
2019-06-06 14:41:16 +00:00
{
result.Settings.VoiceUrl = result.Settings.Connect(false);
2019-06-06 14:41:16 +00:00
}
return result;
}
public VoipPhone GetPhone(VoipNumber data)
{
return new TwilioPhone(_client, _authContext, _tenantUtil, _securityContext, _baseCommonLinkUtility)
2019-06-06 14:41:16 +00:00
{
Id = data.Id,
Number = data.Number,
Alias = data.Alias,
Settings = new TwilioVoipSettings(data.Settings, _authContext)
};
}
public VoipCall GetCall(string callId)
{
var result = new VoipCall { Id = callId };
var count = 6;
2019-06-06 14:41:16 +00:00
while (count > 0)
{
try
2019-06-06 14:41:16 +00:00
{
var call = CallResource.Fetch(result.Id, client: _client);
if (!call.Price.HasValue || string.IsNullOrEmpty(call.Duration))
2019-06-06 14:41:16 +00:00
{
count--;
Thread.Sleep(10000);
continue;
2019-06-06 14:41:16 +00:00
}
result.Price = (-1) * call.Price.Value;
result.DialDuration = Convert.ToInt32(call.Duration);
break;
}
catch (ApiException)
{
count--;
Thread.Sleep(10000);
}
2019-06-06 14:41:16 +00:00
}
return result;
}
public string GetToken(Agent agent, int seconds = 60 * 60 * 24)
{
var scopes = new HashSet<IScope>
2019-06-06 14:41:16 +00:00
{
new IncomingClientScope(agent.ClientID)
};
var capability = new ClientCapability(_accountSid, _authToken, scopes: scopes);
2019-06-06 14:41:16 +00:00
return capability.ToJwt();
}
2019-06-06 14:41:16 +00:00
public void UpdateSettings(VoipPhone phone)
{
IncomingPhoneNumberResource.Update(phone.Id, voiceUrl: new Uri(phone.Settings.Connect(false)), client: _client);
}
2019-06-06 14:41:16 +00:00
public void DisablePhone(VoipPhone phone)
{
IncomingPhoneNumberResource.Update(phone.Id, voiceUrl: new Uri("https://demo.twilio.com/welcome/voice/"), client: _client);
2019-06-06 14:41:16 +00:00
}
#endregion
}
2019-08-15 12:04:42 +00:00
2019-06-06 14:41:16 +00:00
public enum PhoneNumberType
{
Local,
/* Mobile,*/
TollFree
}