2014-10-20 03:04:45 +00:00
|
|
|
|
using MediaBrowser.Model.Connect;
|
2014-10-15 00:05:09 +00:00
|
|
|
|
using MediaBrowser.Model.Dto;
|
2014-10-03 03:48:59 +00:00
|
|
|
|
using MediaBrowser.Model.Events;
|
2015-03-14 17:28:32 +00:00
|
|
|
|
using MediaBrowser.Model.Session;
|
2014-10-03 03:48:59 +00:00
|
|
|
|
using System;
|
2014-10-20 03:04:45 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-10-03 03:48:59 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.ApiClient
|
|
|
|
|
{
|
|
|
|
|
public interface IConnectionManager
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Occurs when [connected].
|
|
|
|
|
/// </summary>
|
|
|
|
|
event EventHandler<GenericEventArgs<ConnectionResult>> Connected;
|
2014-10-20 03:04:45 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Occurs when [local user sign in].
|
|
|
|
|
/// </summary>
|
|
|
|
|
event EventHandler<GenericEventArgs<UserDto>> LocalUserSignIn;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Occurs when [connect user sign in].
|
|
|
|
|
/// </summary>
|
|
|
|
|
event EventHandler<GenericEventArgs<ConnectUser>> ConnectUserSignIn;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Occurs when [local user sign out].
|
|
|
|
|
/// </summary>
|
2014-11-21 14:28:30 +00:00
|
|
|
|
event EventHandler<GenericEventArgs<IApiClient>> LocalUserSignOut;
|
2014-10-20 03:04:45 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Occurs when [connect user sign out].
|
|
|
|
|
/// </summary>
|
|
|
|
|
event EventHandler<EventArgs> ConnectUserSignOut;
|
2014-10-29 00:13:12 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Occurs when [remote logged out].
|
|
|
|
|
/// </summary>
|
2014-10-20 20:23:40 +00:00
|
|
|
|
event EventHandler<EventArgs> RemoteLoggedOut;
|
2015-03-23 20:06:06 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the device.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The device.</value>
|
|
|
|
|
IDevice Device { get; }
|
|
|
|
|
|
2014-10-04 03:18:57 +00:00
|
|
|
|
/// <summary>
|
2014-10-20 03:04:45 +00:00
|
|
|
|
/// Gets the connect user.
|
2014-10-04 03:18:57 +00:00
|
|
|
|
/// </summary>
|
2014-10-20 03:04:45 +00:00
|
|
|
|
/// <value>The connect user.</value>
|
|
|
|
|
ConnectUser ConnectUser { get; }
|
|
|
|
|
|
2014-10-27 03:06:01 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether [save local credentials].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [save local credentials]; otherwise, <c>false</c>.</value>
|
|
|
|
|
bool SaveLocalCredentials { get; set; }
|
|
|
|
|
|
2015-03-14 17:28:32 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the client capabilities.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The client capabilities.</value>
|
|
|
|
|
ClientCapabilities ClientCapabilities { get; }
|
|
|
|
|
|
2014-10-03 03:48:59 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the API client.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
2014-10-24 04:54:35 +00:00
|
|
|
|
/// <returns>IApiClient.</returns>
|
|
|
|
|
IApiClient GetApiClient(IHasServerId item);
|
2014-10-03 03:48:59 +00:00
|
|
|
|
|
2015-02-18 05:01:13 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the API client.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="serverId">The server identifier.</param>
|
|
|
|
|
/// <returns>IApiClient.</returns>
|
|
|
|
|
IApiClient GetApiClient(string serverId);
|
|
|
|
|
|
2014-10-03 03:48:59 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Connects the specified cancellation token.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task<ConnectionResult>.</returns>
|
2015-03-14 16:54:47 +00:00
|
|
|
|
Task<ConnectionResult> Connect(CancellationToken cancellationToken = default(CancellationToken));
|
2014-11-11 03:41:55 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Connects the specified API client.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="apiClient">The API client.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task<ConnectionResult>.</returns>
|
2015-03-14 16:54:47 +00:00
|
|
|
|
Task<ConnectionResult> Connect(IApiClient apiClient, CancellationToken cancellationToken = default(CancellationToken));
|
2014-10-03 03:48:59 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Connects the specified server.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="server">The server.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task<ConnectionResult>.</returns>
|
2015-03-14 16:54:47 +00:00
|
|
|
|
Task<ConnectionResult> Connect(ServerInfo server, CancellationToken cancellationToken = default(CancellationToken));
|
2014-10-03 03:48:59 +00:00
|
|
|
|
|
2014-12-16 05:01:57 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Connects the specified server.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="server">The server.</param>
|
|
|
|
|
/// <param name="options">The options.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task<ConnectionResult>.</returns>
|
2015-03-14 16:54:47 +00:00
|
|
|
|
Task<ConnectionResult> Connect(ServerInfo server, ConnectionOptions options, CancellationToken cancellationToken = default(CancellationToken));
|
2014-12-16 05:01:57 +00:00
|
|
|
|
|
2014-10-03 03:48:59 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Connects the specified server.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="address">The address.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task<ConnectionResult>.</returns>
|
2015-03-14 16:54:47 +00:00
|
|
|
|
Task<ConnectionResult> Connect(string address, CancellationToken cancellationToken = default(CancellationToken));
|
2014-10-03 03:48:59 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Logouts this instance.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Task<ConnectionResult>.</returns>
|
2014-11-03 03:38:43 +00:00
|
|
|
|
Task Logout();
|
2014-10-13 20:14:53 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Logins to connect.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task LoginToConnect(string username, string password);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the active api client instance
|
|
|
|
|
/// </summary>
|
|
|
|
|
IApiClient CurrentApiClient { get; }
|
2014-10-15 00:05:09 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates the pin.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Task<PinCreationResult>.</returns>
|
|
|
|
|
Task<PinCreationResult> CreatePin();
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the pin status.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="pin">The pin.</param>
|
|
|
|
|
/// <returns>Task<PinStatusResult>.</returns>
|
|
|
|
|
Task<PinStatusResult> GetPinStatus(PinCreationResult pin);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Exchanges the pin.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="pin">The pin.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task ExchangePin(PinCreationResult pin);
|
2014-10-17 21:49:55 +00:00
|
|
|
|
|
2015-03-16 18:48:52 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the server information.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="id">The identifier.</param>
|
|
|
|
|
/// <returns>Task<ServerInfo>.</returns>
|
|
|
|
|
Task<ServerInfo> GetServerInfo(string id);
|
|
|
|
|
|
2014-10-17 21:49:55 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the available servers.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
2015-03-14 16:54:47 +00:00
|
|
|
|
Task<List<ServerInfo>> GetAvailableServers(CancellationToken cancellationToken = default(CancellationToken));
|
2015-01-30 05:18:32 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Authenticates an offline user with their password
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="user">The user.</param>
|
|
|
|
|
/// <param name="password">The password.</param>
|
|
|
|
|
/// <param name="rememberCredentials">if set to <c>true</c> [remember credentials].</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task AuthenticateOffline(UserDto user, string password, bool rememberCredentials);
|
2015-03-29 16:45:16 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the offline users.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Task<List<UserDto>>.</returns>
|
|
|
|
|
Task<List<UserDto>> GetOfflineUsers();
|
2015-06-10 13:37:07 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Signups for connect.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="email">The email.</param>
|
|
|
|
|
/// <param name="username">The username.</param>
|
|
|
|
|
/// <param name="password">The password.</param>
|
2015-06-10 17:58:34 +00:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
2015-06-10 13:37:07 +00:00
|
|
|
|
/// <returns>Task.</returns>
|
2015-06-10 17:58:34 +00:00
|
|
|
|
Task<ConnectSignupResponse> SignupForConnect(string email, string username, string password, CancellationToken cancellationToken = default(CancellationToken));
|
2014-10-03 03:48:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|