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

233 lines
8.1 KiB
C#
Raw Normal View History

2019-06-06 14:41:16 +00:00
/*
*
* (c) Copyright Ascensio System Limited 2010-2018
*
* This program is freeware. You can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) version 3 as published by the Free Software Foundation (https://www.gnu.org/copyleft/gpl.html).
* In accordance with Section 7(a) of the GNU GPL its Section 15 shall be amended to the effect that
* Ascensio System SIA expressly excludes the warranty of non-infringement of any third-party rights.
*
* THIS PROGRAM IS DISTRIBUTED WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR
* FITNESS FOR A PARTICULAR PURPOSE. For more details, see GNU GPL at https://www.gnu.org/copyleft/gpl.html
*
* You can contact Ascensio System SIA by email at sales@onlyoffice.com
*
* The interactive user interfaces in modified source and object code versions of ONLYOFFICE must display
* Appropriate Legal Notices, as required under Section 5 of the GNU GPL version 3.
*
* Pursuant to Section 7 § 3(b) of the GNU GPL you must retain the original ONLYOFFICE logo which contains
* relevant author attributions when distributing the software. If the display of the logo in its graphic
* form is not reasonably feasible for technical reasons, you must include the words "Powered by ONLYOFFICE"
* in every copy of the program you distribute.
* Pursuant to Section 7 § 3(e) we decline to grant you any rights under trademark law for use of our trademarks.
*
*/
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
}