Ejemplo n.º 1
0
 /// <summary>
 /// Converts between Model and DB Entity.
 /// </summary>
 UserIdentity Convert(CHXUser user, IList <Claim> claims)
 {
     if (user == null)
     {
         return(null);
     }
     return(new UserIdentity()
     {
         Id = user.Id,
         Name = user.Name,
         Claims = Convert(claims)
     });
 }
Ejemplo n.º 2
0
        public void Register(RegisterUserRequest register)
        {
            // Let's do this in a transaction, so we cannot register two users
            // with the same name. Seems to be a useful requirement.
            string hashBase64;
            string saltBase64;

            cryptoService.CreateHash(register.Password, out hashBase64, out saltBase64);

            CHXUser user = new CHXUser()
            {
                Name         = register.UserName,
                PasswordHash = hashBase64,
                PasswordSalt = saltBase64
            };
        }
Ejemplo n.º 3
0
        public bool TryAuthenticate(Credentials credentials, out UserIdentity identity)
        {
            identity = null;

            CHXUser user = new CHXUser()
            {
                Name = "netcad", PasswordSalt = "zTCzpgHUJKQQbE8hXg==", PasswordHash = "VErPokc5xJBc58FT4vVXcF+GA+tuO0Pbxfp3nsXcRv1IZGGTe8Ge4iOaMulzOr8hQ6AH2cUwGamXeBUSCQA+jA=="
            };

            // Check if there is a User:
            if (credentials.UserName != user.Name)
            {
                return(false);
            }

            // Make sure the Hashed Passwords match:
            if (user.PasswordHash != cryptoService.ComputeHash(credentials.Password, user.PasswordSalt))
            {
                return(false);
            }

            // We got a User, now obtain his claims from DB:
            IList <Claim> claims = new List <Claim>()
            {
            };


            claims.Add(new Claim()
            {
                Type = "basic", Value = "true", Id = 0
            });
            claims.Add(new Claim()
            {
                Type = "data", Value = "true", Id = 1
            });
            claims.Add(new Claim()
            {
                Type = "data.getalltables", Value = "true", Id = 2
            });
            claims.Add(new Claim()
            {
                Type = "data.getallviews", Value = "true", Id = 3
            });
            claims.Add(new Claim()
            {
                Type = "data.getallsequences", Value = "true", Id = 4
            });
            claims.Add(new Claim()
            {
                Type = "data.getallindexes", Value = "true", Id = 5
            });
            claims.Add(new Claim()
            {
                Type = "data.getallconstraints", Value = "true", Id = 6
            });
            claims.Add(new Claim()
            {
                Type = "data.gettable", Value = "true", Id = 7
            });
            claims.Add(new Claim()
            {
                Type = "data.getview", Value = "true", Id = 8
            });
            claims.Add(new Claim()
            {
                Type = "data.getconstraint", Value = "true", Id = 9
            });
            claims.Add(new Claim()
            {
                Type = "data.getindex", Value = "true", Id = 10
            });
            claims.Add(new Claim()
            {
                Type = "data.getsequence", Value = "true", Id = 11
            });

            claims.Add(new Claim()
            {
                Type = "settings", Value = "true", Id = 11
            });
            claims.Add(new Claim()
            {
                Type = "settings.adddatabase", Value = "true", Id = 11
            });
            claims.Add(new Claim()
            {
                Type = "settings.getalldatabase", Value = "true", Id = 12
            });
            claims.Add(new Claim()
            {
                Type = "settings.deletedatabase", Value = "true", Id = 13
            });

            claims.Add(new Claim()
            {
                Type = "model", Value = "true", Id = 14
            });
            claims.Add(new Claim()
            {
                Type = "model.query", Value = "true", Id = 15
            });
            claims.Add(new Claim()
            {
                Type = "model.add", Value = "true", Id = 16
            });
            claims.Add(new Claim()
            {
                Type = "model.delete", Value = "true", Id = 17
            });


            // And return the UserIdentity:
            identity = Convert(user, claims);

            return(true);
        }