bitwarden-android/src/App/Repositories/DeviceApiRepository.cs

86 lines
2.7 KiB
C#
Raw Normal View History

2016-06-18 23:10:09 +03:00
using System;
2016-06-22 05:29:29 +03:00
using System.Net.Http;
using System.Threading.Tasks;
2016-06-18 23:10:09 +03:00
using Bit.App.Abstractions;
using Bit.App.Models.Api;
2016-06-22 05:29:29 +03:00
using Newtonsoft.Json;
using Plugin.Connectivity.Abstractions;
2016-08-07 02:33:04 +03:00
using System.Net;
2016-06-18 23:10:09 +03:00
namespace Bit.App.Repositories
{
public class DeviceApiRepository : ApiRepository<DeviceRequest, DeviceResponse, string>, IDeviceApiRepository
{
public DeviceApiRepository(IConnectivity connectivity)
: base(connectivity)
{ }
2016-06-18 23:10:09 +03:00
protected override string ApiRoute => "devices";
2016-06-22 05:29:29 +03:00
public virtual async Task<ApiResult> PutTokenAsync(string identifier, DeviceTokenRequest request)
2016-06-22 05:29:29 +03:00
{
if(!Connectivity.IsConnected)
2016-06-22 05:29:29 +03:00
{
return HandledNotConnected();
}
2016-06-22 05:29:29 +03:00
using(var client = new ApiHttpClient())
2016-06-22 05:29:29 +03:00
{
var requestMessage = new TokenHttpRequestMessage(request)
{
Method = HttpMethod.Put,
RequestUri = new Uri(client.BaseAddress, string.Concat(ApiRoute, "/identifier/", identifier, "/token")),
};
2016-06-22 05:29:29 +03:00
2016-08-07 02:33:04 +03:00
try
{
var response = await client.SendAsync(requestMessage).ConfigureAwait(false);
2016-08-07 02:33:04 +03:00
if(!response.IsSuccessStatusCode)
{
return await HandleErrorAsync(response).ConfigureAwait(false);
2016-08-07 02:33:04 +03:00
}
2016-08-07 02:33:04 +03:00
return ApiResult.Success(response.StatusCode);
}
catch(WebException)
{
return HandledWebException();
}
}
2016-06-22 05:29:29 +03:00
}
2016-08-06 07:41:00 +03:00
2016-08-06 22:21:59 +03:00
public virtual async Task<ApiResult> PutClearTokenAsync(string identifier)
2016-08-06 07:41:00 +03:00
{
if(!Connectivity.IsConnected)
{
2016-08-06 22:21:59 +03:00
return HandledNotConnected();
2016-08-06 07:41:00 +03:00
}
using(var client = new ApiHttpClient())
{
var requestMessage = new TokenHttpRequestMessage
{
Method = HttpMethod.Put,
RequestUri = new Uri(client.BaseAddress,
string.Concat(ApiRoute, "/identifier/", identifier, "/clear-token"))
2016-08-06 07:41:00 +03:00
};
2016-08-07 02:33:04 +03:00
try
{
var response = await client.SendAsync(requestMessage).ConfigureAwait(false);
2016-08-07 02:33:04 +03:00
if(!response.IsSuccessStatusCode)
{
return await HandleErrorAsync(response).ConfigureAwait(false);
2016-08-07 02:33:04 +03:00
}
return ApiResult.Success(response.StatusCode);
}
catch(WebException)
{
return HandledWebException();
}
2016-08-06 07:41:00 +03:00
}
}
2016-06-18 23:10:09 +03:00
}
}