123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- using MediaBrowser.Controller.Entities;
- using MediaBrowser.Model.Configuration;
- using MediaBrowser.Model.Dto;
- using MediaBrowser.Model.Events;
- using System;
- using System.Collections.Generic;
- using System.Threading;
- using System.Threading.Tasks;
- using MediaBrowser.Model.Users;
- namespace MediaBrowser.Controller.Library
- {
- /// <summary>
- /// Interface IUserManager
- /// </summary>
- public interface IUserManager
- {
- /// <summary>
- /// Gets the users.
- /// </summary>
- /// <value>The users.</value>
- IEnumerable<User> Users { get; }
- /// <summary>
- /// Occurs when [user updated].
- /// </summary>
- event EventHandler<GenericEventArgs<User>> UserUpdated;
- /// <summary>
- /// Occurs when [user deleted].
- /// </summary>
- event EventHandler<GenericEventArgs<User>> UserDeleted;
- event EventHandler<GenericEventArgs<User>> UserCreated;
- event EventHandler<GenericEventArgs<User>> UserConfigurationUpdated;
- event EventHandler<GenericEventArgs<User>> UserPasswordChanged;
- /// <summary>
- /// Gets a User by Id
- /// </summary>
- /// <param name="id">The id.</param>
- /// <returns>User.</returns>
- /// <exception cref="System.ArgumentNullException"></exception>
- User GetUserById(Guid id);
- /// <summary>
- /// Gets the user by identifier.
- /// </summary>
- /// <param name="id">The identifier.</param>
- /// <returns>User.</returns>
- User GetUserById(string id);
- /// <summary>
- /// Gets the name of the user by.
- /// </summary>
- /// <param name="name">The name.</param>
- /// <returns>User.</returns>
- User GetUserByName(string name);
- /// <summary>
- /// Authenticates a User and returns a result indicating whether or not it succeeded
- /// </summary>
- /// <param name="username">The username.</param>
- /// <param name="passwordSha1">The password sha1.</param>
- /// <param name="remoteEndPoint">The remote end point.</param>
- /// <returns>Task{System.Boolean}.</returns>
- /// <exception cref="System.ArgumentNullException">user</exception>
- Task<bool> AuthenticateUser(string username, string passwordSha1, string remoteEndPoint);
-
- /// <summary>
- /// Refreshes metadata for each user
- /// </summary>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>Task.</returns>
- Task RefreshUsersMetadata(CancellationToken cancellationToken);
- /// <summary>
- /// Renames the user.
- /// </summary>
- /// <param name="user">The user.</param>
- /// <param name="newName">The new name.</param>
- /// <returns>Task.</returns>
- /// <exception cref="System.ArgumentNullException">user</exception>
- /// <exception cref="System.ArgumentException"></exception>
- Task RenameUser(User user, string newName);
- /// <summary>
- /// Updates the user.
- /// </summary>
- /// <param name="user">The user.</param>
- /// <exception cref="System.ArgumentNullException">user</exception>
- /// <exception cref="System.ArgumentException"></exception>
- Task UpdateUser(User user);
- /// <summary>
- /// Creates the user.
- /// </summary>
- /// <param name="name">The name.</param>
- /// <returns>User.</returns>
- /// <exception cref="System.ArgumentNullException">name</exception>
- /// <exception cref="System.ArgumentException"></exception>
- Task<User> CreateUser(string name);
- /// <summary>
- /// Deletes the user.
- /// </summary>
- /// <param name="user">The user.</param>
- /// <returns>Task.</returns>
- /// <exception cref="System.ArgumentNullException">user</exception>
- /// <exception cref="System.ArgumentException"></exception>
- Task DeleteUser(User user);
- /// <summary>
- /// Resets the password.
- /// </summary>
- /// <param name="user">The user.</param>
- /// <returns>Task.</returns>
- Task ResetPassword(User user);
- /// <summary>
- /// Changes the password.
- /// </summary>
- /// <param name="user">The user.</param>
- /// <param name="newPasswordSha1">The new password sha1.</param>
- /// <returns>Task.</returns>
- Task ChangePassword(User user, string newPasswordSha1);
- /// <summary>
- /// Gets the user dto.
- /// </summary>
- /// <param name="user">The user.</param>
- /// <param name="remoteEndPoint">The remote end point.</param>
- /// <returns>UserDto.</returns>
- UserDto GetUserDto(User user, string remoteEndPoint = null);
- /// <summary>
- /// Authenticates the user.
- /// </summary>
- /// <param name="username">The username.</param>
- /// <param name="passwordSha1">The password sha1.</param>
- /// <param name="passwordMd5">The password MD5.</param>
- /// <param name="remoteEndPoint">The remote end point.</param>
- /// <returns>Task<System.Boolean>.</returns>
- Task<bool> AuthenticateUser(string username, string passwordSha1, string passwordMd5, string remoteEndPoint);
- /// <summary>
- /// Starts the forgot password process.
- /// </summary>
- /// <param name="enteredUsername">The entered username.</param>
- /// <param name="isInNetwork">if set to <c>true</c> [is in network].</param>
- /// <returns>ForgotPasswordResult.</returns>
- ForgotPasswordResult StartForgotPasswordProcess(string enteredUsername, bool isInNetwork);
- /// <summary>
- /// Redeems the password reset pin.
- /// </summary>
- /// <param name="pin">The pin.</param>
- /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
- Task<PinRedeemResult> RedeemPasswordResetPin(string pin);
- /// <summary>
- /// Gets the user policy.
- /// </summary>
- /// <param name="user">The user.</param>
- /// <returns>UserPolicy.</returns>
- UserPolicy GetUserPolicy(User user);
- /// <summary>
- /// Gets the user configuration.
- /// </summary>
- /// <param name="user">The user.</param>
- /// <returns>UserConfiguration.</returns>
- UserConfiguration GetUserConfiguration(User user);
- /// <summary>
- /// Updates the configuration.
- /// </summary>
- /// <param name="userId">The user identifier.</param>
- /// <param name="newConfiguration">The new configuration.</param>
- /// <returns>Task.</returns>
- Task UpdateConfiguration(string userId, UserConfiguration newConfiguration);
- /// <summary>
- /// Updates the user policy.
- /// </summary>
- /// <param name="userId">The user identifier.</param>
- /// <param name="userPolicy">The user policy.</param>
- Task UpdateUserPolicy(string userId, UserPolicy userPolicy);
- /// <summary>
- /// Makes the valid username.
- /// </summary>
- /// <param name="username">The username.</param>
- /// <returns>System.String.</returns>
- string MakeValidUsername(string username);
- }
- }
|