mirror of https://github.com/Ombi-app/Ombi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
200 lines
6.6 KiB
200 lines
6.6 KiB
#region Copyright
|
|
// /************************************************************************
|
|
// Copyright (c) 2016 Jamie Rees
|
|
// File: UserMapper.cs
|
|
// Created By: Jamie Rees
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining
|
|
// a copy of this software and associated documentation files (the
|
|
// "Software"), to deal in the Software without restriction, including
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
// distribute, sublicense, and/or sell copies of the Software, and to
|
|
// permit persons to whom the Software is furnished to do so, subject to
|
|
// the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be
|
|
// included in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
// ************************************************************************/
|
|
#endregion
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security;
|
|
using System.Threading.Tasks;
|
|
using Nancy;
|
|
using Nancy.Authentication.Forms;
|
|
using Nancy.Security;
|
|
using Ombi.Core.Models;
|
|
using Ombi.Helpers;
|
|
using Ombi.Store;
|
|
using Ombi.Store.Repository;
|
|
|
|
namespace Ombi.Core
|
|
{
|
|
public class UserMapper : IUserMapper, ICustomUserMapper
|
|
{
|
|
public UserMapper(IRepository<UsersModel> repo)
|
|
{
|
|
Repo = repo;
|
|
}
|
|
private static IRepository<UsersModel> Repo { get; set; }
|
|
public IUserIdentity GetUserFromIdentifier(Guid identifier, NancyContext context)
|
|
{
|
|
var user = Repo.Get(identifier.ToString());
|
|
|
|
if (user == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return new UserIdentity
|
|
{
|
|
UserName = user.UserName,
|
|
};
|
|
}
|
|
|
|
public Guid? ValidateUser(string username, string password)
|
|
{
|
|
var users = Repo.GetAll();
|
|
|
|
foreach (var u in users)
|
|
{
|
|
if (username.Equals(u.UserName, StringComparison.CurrentCultureIgnoreCase))
|
|
{
|
|
var passwordMatch = PasswordHasher.VerifyPassword(password, u.Salt, u.Hash);
|
|
if (passwordMatch)
|
|
{
|
|
return new Guid(u.UserGuid);
|
|
}
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public UsersModel EditUser(UsersModel user)
|
|
{
|
|
var existingUser = Repo.Get(user.UserGuid);
|
|
|
|
user.Id = existingUser.Id;
|
|
user.UserGuid = existingUser.UserGuid;
|
|
Repo.Update(user);
|
|
return user;
|
|
}
|
|
|
|
public bool DoUsersExist()
|
|
{
|
|
var users = Repo.GetAll();
|
|
|
|
return users.Any();
|
|
}
|
|
|
|
public Guid? CreateUser(string username, string password, UserProperties properties = null)
|
|
{
|
|
var salt = PasswordHasher.GenerateSalt();
|
|
|
|
var userModel = new UsersModel
|
|
{
|
|
UserName = username,
|
|
UserGuid = Guid.NewGuid().ToString(),
|
|
Salt = salt,
|
|
Hash = PasswordHasher.ComputeHash(password, salt),
|
|
Claims = new byte[] {0},
|
|
UserProperties = ByteConverterHelper.ReturnBytes(properties ?? new UserProperties()),
|
|
};
|
|
Repo.Insert(userModel);
|
|
var userRecord = Repo.Get(userModel.UserGuid);
|
|
|
|
return new Guid(userRecord.UserGuid);
|
|
}
|
|
|
|
public Guid? CreateUser(string username, string password, int permissions, int features, UserProperties properties = null)
|
|
{
|
|
var salt = PasswordHasher.GenerateSalt();
|
|
|
|
var userModel = new UsersModel
|
|
{
|
|
UserName = username,
|
|
UserGuid = Guid.NewGuid().ToString(),
|
|
Salt = salt,
|
|
Hash = PasswordHasher.ComputeHash(password, salt),
|
|
UserProperties = ByteConverterHelper.ReturnBytes(properties ?? new UserProperties()),
|
|
Permissions = permissions,
|
|
Features = features,
|
|
Claims = new byte[] {0}
|
|
};
|
|
Repo.Insert(userModel);
|
|
var userRecord = Repo.Get(userModel.UserGuid);
|
|
|
|
return new Guid(userRecord.UserGuid);
|
|
}
|
|
|
|
public void DeleteUser(string userId)
|
|
{
|
|
var user = Repo.Get(userId);
|
|
Repo.Delete(user);
|
|
}
|
|
|
|
|
|
public bool UpdatePassword(string username, string oldPassword, string newPassword)
|
|
{
|
|
var users = Repo.GetAll();
|
|
var userToChange = users.FirstOrDefault(x => x.UserName == username);
|
|
if (userToChange == null)
|
|
return false;
|
|
|
|
var passwordMatch = PasswordHasher.VerifyPassword(oldPassword, userToChange.Salt, userToChange.Hash);
|
|
if (!passwordMatch)
|
|
{
|
|
throw new SecurityException("Incorrect password.");
|
|
}
|
|
|
|
var newSalt = PasswordHasher.GenerateSalt();
|
|
var newHash = PasswordHasher.ComputeHash(newPassword, newSalt);
|
|
|
|
userToChange.Hash = newHash;
|
|
userToChange.Salt = newSalt;
|
|
|
|
return Repo.Update(userToChange);
|
|
}
|
|
|
|
public async Task<IEnumerable<UsersModel>> GetUsersAsync()
|
|
{
|
|
return await Repo.GetAllAsync();
|
|
}
|
|
|
|
public IEnumerable<UsersModel> GetUsers()
|
|
{
|
|
return Repo.GetAll();
|
|
}
|
|
|
|
public UsersModel GetUser(Guid userId)
|
|
{
|
|
var user = Repo.Get(userId.ToString());
|
|
return user;
|
|
}
|
|
}
|
|
|
|
public interface ICustomUserMapper
|
|
{
|
|
Guid? CreateUser(string username, string password, int permissions, int features,
|
|
UserProperties properties = null);
|
|
IEnumerable<UsersModel> GetUsers();
|
|
Task<IEnumerable<UsersModel>> GetUsersAsync();
|
|
UsersModel GetUser(Guid userId);
|
|
UsersModel EditUser(UsersModel user);
|
|
bool DoUsersExist();
|
|
Guid? ValidateUser(string username, string password);
|
|
bool UpdatePassword(string username, string oldPassword, string newPassword);
|
|
void DeleteUser(string userId);
|
|
}
|
|
}
|