mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
94 lines
3 KiB
C#
94 lines
3 KiB
C#
using System;
|
|
using System.Net.Http;
|
|
using System.Threading.Tasks;
|
|
using Bit.App.Abstractions;
|
|
using Bit.App.Models.Api;
|
|
using Newtonsoft.Json;
|
|
using Plugin.Connectivity.Abstractions;
|
|
using System.Net;
|
|
|
|
namespace Bit.App.Repositories
|
|
{
|
|
public class DeviceApiRepository : ApiRepository<DeviceRequest, DeviceResponse, string>, IDeviceApiRepository
|
|
{
|
|
public DeviceApiRepository(
|
|
IConnectivity connectivity,
|
|
IHttpService httpService,
|
|
ITokenService tokenService)
|
|
: base(connectivity, httpService, tokenService)
|
|
{ }
|
|
|
|
protected override string ApiRoute => "/devices";
|
|
|
|
public virtual async Task<ApiResult> PutTokenAsync(string identifier, DeviceTokenRequest request)
|
|
{
|
|
if(!Connectivity.IsConnected)
|
|
{
|
|
return HandledNotConnected();
|
|
}
|
|
|
|
var tokenStateResponse = await HandleTokenStateAsync();
|
|
if(!tokenStateResponse.Succeeded)
|
|
{
|
|
return tokenStateResponse;
|
|
}
|
|
|
|
using(var client = HttpService.ApiClient)
|
|
{
|
|
var requestMessage = new TokenHttpRequestMessage(request)
|
|
{
|
|
Method = HttpMethod.Put,
|
|
RequestUri = new Uri(string.Concat(client.BaseAddress, ApiRoute, "/identifier/", identifier, "/token")),
|
|
};
|
|
|
|
try
|
|
{
|
|
var response = await client.SendAsync(requestMessage).ConfigureAwait(false);
|
|
if(!response.IsSuccessStatusCode)
|
|
{
|
|
return await HandleErrorAsync(response).ConfigureAwait(false);
|
|
}
|
|
|
|
return ApiResult.Success(response.StatusCode);
|
|
}
|
|
catch
|
|
{
|
|
return HandledWebException();
|
|
}
|
|
}
|
|
}
|
|
|
|
public virtual async Task<ApiResult> PutClearTokenAsync(string identifier)
|
|
{
|
|
if(!Connectivity.IsConnected)
|
|
{
|
|
return HandledNotConnected();
|
|
}
|
|
|
|
using(var client = HttpService.ApiClient)
|
|
{
|
|
var requestMessage = new TokenHttpRequestMessage
|
|
{
|
|
Method = HttpMethod.Put,
|
|
RequestUri = new Uri(
|
|
string.Concat(client.BaseAddress, ApiRoute, "/identifier/", identifier, "/clear-token"))
|
|
};
|
|
|
|
try
|
|
{
|
|
var response = await client.SendAsync(requestMessage).ConfigureAwait(false);
|
|
if(!response.IsSuccessStatusCode)
|
|
{
|
|
return await HandleErrorAsync(response).ConfigureAwait(false);
|
|
}
|
|
|
|
return ApiResult.Success(response.StatusCode);
|
|
}
|
|
catch
|
|
{
|
|
return HandledWebException();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|