add connect error handling

pull/702/head
Luke Pulverenti 10 years ago
parent 31ed30d584
commit b12215b3f9

@ -23,7 +23,7 @@ namespace MediaBrowser.Api
} }
[Route("/Users/{Id}/Connect/Link", "DELETE", Summary = "Removes a Connect link for a user")] [Route("/Users/{Id}/Connect/Link", "DELETE", Summary = "Removes a Connect link for a user")]
public class DeleteConnectLink : IReturn<ConnectUserLink> public class DeleteConnectLink : IReturnVoid
{ {
[ApiMember(Name = "Id", Description = "User Id", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "DELETE")] [ApiMember(Name = "Id", Description = "User Id", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "DELETE")]
public string Id { get; set; } public string Id { get; set; }

@ -295,7 +295,7 @@ namespace MediaBrowser.Server.Implementations.Connect
if (!string.IsNullOrWhiteSpace(user.ConnectUserId)) if (!string.IsNullOrWhiteSpace(user.ConnectUserId))
{ {
await RemoveLink(user, connectUser).ConfigureAwait(false); await RemoveLink(user, connectUser.Id).ConfigureAwait(false);
} }
var url = GetConnectUrl("ServerAuthorizations"); var url = GetConnectUrl("ServerAuthorizations");
@ -323,6 +323,7 @@ namespace MediaBrowser.Server.Implementations.Connect
// No need to examine the response // No need to examine the response
using (var stream = (await _httpClient.Post(options).ConfigureAwait(false)).Content) using (var stream = (await _httpClient.Post(options).ConfigureAwait(false)).Content)
{ {
var response = _json.DeserializeFromStream<ServerUserAuthorizationResponse>(stream);
} }
user.ConnectAccessKey = accessToken; user.ConnectAccessKey = accessToken;
@ -332,20 +333,16 @@ namespace MediaBrowser.Server.Implementations.Connect
await user.UpdateToRepository(ItemUpdateType.MetadataEdit, CancellationToken.None).ConfigureAwait(false); await user.UpdateToRepository(ItemUpdateType.MetadataEdit, CancellationToken.None).ConfigureAwait(false);
} }
public async Task RemoveLink(string userId) public Task RemoveLink(string userId)
{ {
var user = GetUser(userId); var user = GetUser(userId);
var connectUser = await GetConnectUser(new ConnectUserQuery return RemoveLink(user, user.ConnectUserId);
{
Name = user.ConnectUserId
}, CancellationToken.None).ConfigureAwait(false);
await RemoveLink(user, connectUser).ConfigureAwait(false);
} }
public async Task RemoveLink(User user, ConnectUser connectUser) private async Task RemoveLink(User user, string connectUserId)
{
if (!string.IsNullOrWhiteSpace(connectUserId))
{ {
var url = GetConnectUrl("ServerAuthorizations"); var url = GetConnectUrl("ServerAuthorizations");
@ -358,17 +355,32 @@ namespace MediaBrowser.Server.Implementations.Connect
var postData = new Dictionary<string, string> var postData = new Dictionary<string, string>
{ {
{"serverId", ConnectServerId}, {"serverId", ConnectServerId},
{"userId", connectUser.Id} {"userId", connectUserId}
}; };
options.SetPostData(postData); options.SetPostData(postData);
SetServerAccessToken(options); SetServerAccessToken(options);
try
{
// No need to examine the response // No need to examine the response
using (var stream = (await _httpClient.SendAsync(options, "DELETE").ConfigureAwait(false)).Content) using (var stream = (await _httpClient.SendAsync(options, "DELETE").ConfigureAwait(false)).Content)
{ {
} }
}
catch (HttpException ex)
{
// If connect says the auth doesn't exist, we can handle that gracefully since this is a remove operation
if (!ex.StatusCode.HasValue || ex.StatusCode.Value != HttpStatusCode.NotFound)
{
throw;
}
_logger.Debug("Connect returned a 404 when removing a user auth link. Handling it.");
}
}
user.ConnectAccessKey = null; user.ConnectAccessKey = null;
user.ConnectUserName = null; user.ConnectUserName = null;

@ -25,4 +25,9 @@ namespace MediaBrowser.Server.Implementations.Connect
public string IsActive { get; set; } public string IsActive { get; set; }
public string ImageUrl { get; set; } public string ImageUrl { get; set; }
} }
public class ServerUserAuthorizationResponse
{
}
} }

@ -453,5 +453,7 @@
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.", "MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Delete", "ButtonDelete": "Delete",
"HeaderMediaBrowserAccountAdded": "Media Browser Account Added", "HeaderMediaBrowserAccountAdded": "Media Browser Account Added",
"MessageMediaBrowserAccontAdded": "A Media Browser account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email." "MessageMediaBrowserAccontAdded": "A Media Browser account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
"HeaderMediaBrowserAccountRemoved": "Media Browser Account Removed",
"MessageMediaBrowserAccontRemoved": "The Media Browser account has been removed from this user."
} }

@ -1160,5 +1160,6 @@
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
"LabelConnectUserName": "Media Browser username/email:", "LabelConnectUserName": "Media Browser username/email:",
"LabelConnectUserNameHelp": "Connect this user to a Media Browser account to enable easy sign-in access from any app without having to know the server ip address." "LabelConnectUserNameHelp": "Connect this user to a Media Browser account to enable easy sign-in access from any app without having to know the server ip address.",
"ButtonLearnMoreAboutMediaBrowserConnect": "Learn more about Media Browser Connect"
} }

Loading…
Cancel
Save