[1624] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Text;
|
---|
| 4 | using System.Threading;
|
---|
| 5 | using HeuristicLab.Security.Contracts.Interfaces;
|
---|
| 6 | using HeuristicLab.Security.Contracts.BusinessObjects;
|
---|
| 7 | using HeuristicLab.Security.DataAccess;
|
---|
| 8 | using HeuristicLab.DataAccess.Interfaces;
|
---|
| 9 | using HeuristicLab.PluginInfrastructure;
|
---|
[1737] | 10 | using System.Security.Cryptography;
|
---|
[1738] | 11 | using System.ServiceModel;
|
---|
[1624] | 12 |
|
---|
| 13 | namespace HeuristicLab.Security.Core {
|
---|
| 14 | public class PermissionManager : IPermissionManager{
|
---|
| 15 |
|
---|
[1724] | 16 | private static ISessionFactory factory = ServiceLocator.GetSessionFactory();
|
---|
[1624] | 17 |
|
---|
| 18 | private static ISession session;
|
---|
| 19 |
|
---|
| 20 | private static IDictionary<Guid,string> currentSessions = new Dictionary<Guid, string>();
|
---|
| 21 | Object locker = new Object();
|
---|
| 22 |
|
---|
[1737] | 23 | private static string getMd5Hash(string input) {
|
---|
| 24 | // Create a new instance of the MD5CryptoServiceProvider object.
|
---|
| 25 | MD5 md5Hasher = MD5.Create();
|
---|
| 26 |
|
---|
| 27 | // Convert the input string to a byte array and compute the hash.
|
---|
| 28 | byte[] data = md5Hasher.ComputeHash(Encoding.Default.GetBytes(input));
|
---|
| 29 |
|
---|
| 30 | // Create a new Stringbuilder to collect the bytes
|
---|
| 31 | // and create a string.
|
---|
| 32 | StringBuilder sBuilder = new StringBuilder();
|
---|
| 33 |
|
---|
| 34 | // Loop through each byte of the hashed data
|
---|
| 35 | // and format each one as a hexadecimal string.
|
---|
| 36 | for (int i = 0; i < data.Length; i++) {
|
---|
| 37 | sBuilder.Append(data[i].ToString("x2"));
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | // Return the hexadecimal string.
|
---|
| 41 | return sBuilder.ToString();
|
---|
| 42 | }
|
---|
| 43 |
|
---|
[1624] | 44 | /// <summary>
|
---|
| 45 | /// If a session exists for this userName then it is returned, otherwise the given password
|
---|
| 46 | /// is checked and a new session is created.
|
---|
| 47 | /// </summary>
|
---|
| 48 | /// <param name="userName"></param>
|
---|
| 49 | /// <param name="password"></param>
|
---|
| 50 | /// <returns></returns>
|
---|
| 51 | public Guid Authenticate(String userName, String password) {
|
---|
| 52 | try {
|
---|
| 53 | session = factory.GetSessionForCurrentThread();
|
---|
| 54 |
|
---|
[1737] | 55 | password = getMd5Hash(password);
|
---|
| 56 |
|
---|
[1624] | 57 | IUserAdapter userAdapter = session.GetDataAdapter<User, IUserAdapter>();
|
---|
[1729] | 58 | User user = userAdapter.GetByLogin(userName);
|
---|
[1624] | 59 |
|
---|
[1738] | 60 | if (user != null &&
|
---|
[1737] | 61 | user.Password.Equals(password)) {
|
---|
[1750] | 62 | Guid sessionId;
|
---|
| 63 |
|
---|
| 64 | lock (locker) {
|
---|
| 65 | if (currentSessions.Values.Contains(userName)) {
|
---|
[1751] | 66 | sessionId = GetGuid(userName);
|
---|
| 67 | } else {
|
---|
[1750] | 68 | sessionId = Guid.NewGuid();
|
---|
| 69 | currentSessions.Add(sessionId, userName);
|
---|
| 70 | }
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | return sessionId;
|
---|
| 74 | } else
|
---|
| 75 | return Guid.Empty;
|
---|
[1624] | 76 | }
|
---|
[1738] | 77 | catch (Exception ex) { throw new FaultException("Server: " + ex.Message); }
|
---|
[1624] | 78 | finally {
|
---|
| 79 | if (session != null)
|
---|
| 80 | session.EndSession();
|
---|
| 81 | }
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 | /// <summary>
|
---|
| 85 | /// Checks if the owner of the given session has the given permission.
|
---|
| 86 | /// </summary>
|
---|
| 87 | /// <param name="sessionId"></param>
|
---|
| 88 | /// <param name="permissionId"></param>
|
---|
| 89 | /// <param name="entityId"></param>
|
---|
| 90 | /// <returns></returns>
|
---|
| 91 | public bool CheckPermission(Guid sessionId, Guid permissionId, Guid entityId) {
|
---|
| 92 | string userName;
|
---|
| 93 | bool existsSession;
|
---|
| 94 | lock (locker)
|
---|
| 95 | existsSession = currentSessions.TryGetValue(sessionId, out userName);
|
---|
| 96 | if (existsSession) {
|
---|
| 97 | try {
|
---|
| 98 | session = factory.GetSessionForCurrentThread();
|
---|
| 99 |
|
---|
| 100 | IPermissionOwnerAdapter permOwnerAdapter = session.GetDataAdapter<PermissionOwner, IPermissionOwnerAdapter>();
|
---|
| 101 | PermissionOwner permOwner = permOwnerAdapter.GetByName(userName);
|
---|
| 102 |
|
---|
| 103 | IPermissionAdapter permissionAdapter = session.GetDataAdapter<Permission, IPermissionAdapter>();
|
---|
| 104 | Permission permission = permissionAdapter.GetById(permissionId);
|
---|
| 105 |
|
---|
| 106 | if ((permission != null) && (permOwner != null))
|
---|
[1720] | 107 | return (permissionAdapter.getPermission(permOwner.Id, permission.Id, entityId) != null);
|
---|
[1624] | 108 | else return false;
|
---|
| 109 | }
|
---|
[1738] | 110 | catch (Exception ex) { throw new FaultException("Server: " + ex.Message); }
|
---|
[1624] | 111 | finally {
|
---|
| 112 | if (session != null)
|
---|
| 113 | session.EndSession();
|
---|
| 114 | }
|
---|
| 115 | } else return false;
|
---|
| 116 | }
|
---|
| 117 |
|
---|
| 118 | /// <summary>
|
---|
| 119 | /// Removes the given session.
|
---|
| 120 | /// </summary>
|
---|
| 121 | /// <param name="sessionId"></param>
|
---|
| 122 | public void EndSession(Guid sessionId) {
|
---|
| 123 | lock (locker) {
|
---|
| 124 | if (currentSessions.Keys.Contains(sessionId))
|
---|
| 125 | currentSessions.Remove(sessionId);
|
---|
| 126 | }
|
---|
| 127 | }
|
---|
| 128 |
|
---|
| 129 | /// <summary>
|
---|
| 130 | /// Gets the sessionId for a user.
|
---|
| 131 | /// </summary>
|
---|
| 132 | /// <param name="userName"></param>
|
---|
| 133 | /// <returns></returns>
|
---|
| 134 | public Guid GetGuid(string userName) {
|
---|
| 135 | foreach (Guid guid in currentSessions.Keys)
|
---|
| 136 | if (currentSessions[guid].CompareTo(userName) == 0)
|
---|
| 137 | return guid;
|
---|
| 138 | return Guid.Empty;
|
---|
| 139 | }
|
---|
| 140 | }
|
---|
| 141 | }
|
---|