2014-11-02 20:38:43 -07:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Model.Connect;
|
2014-10-13 13:14:53 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading.Tasks;
|
2014-09-14 08:10:51 -07:00
|
|
|
|
|
2014-08-24 20:54:45 -07:00
|
|
|
|
namespace MediaBrowser.Controller.Connect
|
|
|
|
|
{
|
|
|
|
|
public interface IConnectManager
|
|
|
|
|
{
|
2014-09-14 08:10:51 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the wan API address.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The wan API address.</value>
|
2014-08-24 20:54:45 -07:00
|
|
|
|
string WanApiAddress { get; }
|
2014-09-14 08:10:51 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Links the user.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user identifier.</param>
|
|
|
|
|
/// <param name="connectUsername">The connect username.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
2014-09-14 16:39:06 -07:00
|
|
|
|
Task<UserLinkResult> LinkUser(string userId, string connectUsername);
|
2014-09-14 08:10:51 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Removes the link.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user identifier.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
2014-10-13 21:22:17 -07:00
|
|
|
|
Task RemoveConnect(string userId);
|
2014-10-13 13:14:53 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Invites the user.
|
|
|
|
|
/// </summary>
|
2014-10-30 21:57:24 -07:00
|
|
|
|
/// <param name="request">The request.</param>
|
2014-10-13 13:14:53 -07:00
|
|
|
|
/// <returns>Task<UserLinkResult>.</returns>
|
2014-10-30 21:57:24 -07:00
|
|
|
|
Task<UserLinkResult> InviteUser(ConnectAuthorizationRequest request);
|
2014-10-13 13:14:53 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the pending guests.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Task<List<ConnectAuthorization>>.</returns>
|
|
|
|
|
Task<List<ConnectAuthorization>> GetPendingGuests();
|
|
|
|
|
|
2015-04-03 17:41:16 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the user from exchange token.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="token">The token.</param>
|
|
|
|
|
/// <returns>User.</returns>
|
|
|
|
|
User GetUserFromExchangeToken(string token);
|
|
|
|
|
|
2014-10-13 13:14:53 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Cancels the authorization.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The identifier.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task CancelAuthorization(string id);
|
2014-10-16 21:52:41 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Authenticates the specified username.
|
|
|
|
|
/// </summary>
|
2017-09-17 09:45:23 -07:00
|
|
|
|
Task<ConnectAuthenticationResult> Authenticate(string username, string password, string passwordMd5);
|
2014-11-02 20:38:43 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the local user.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="connectUserId">The connect user identifier.</param>
|
|
|
|
|
/// <returns>Task<User>.</returns>
|
|
|
|
|
Task<User> GetLocalUser(string connectUserId);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether [is authorization token valid] [the specified token].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="token">The token.</param>
|
|
|
|
|
/// <returns><c>true</c> if [is authorization token valid] [the specified token]; otherwise, <c>false</c>.</returns>
|
|
|
|
|
bool IsAuthorizationTokenValid(string token);
|
2014-08-24 20:54:45 -07:00
|
|
|
|
}
|
|
|
|
|
}
|