Example #1
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="verifyInfo"></param>
        /// <returns></returns>
        public string CreateAuthorization(VerifyInfo verifyInfo)
        {
            if (verifyInfo == null)
            {
                throw new ArgumentNullException(nameof(verifyInfo));
            }
            var cacheData = JsonConvert.SerializeObject(verifyInfo);
            var data      = $"{verifyInfo.Id}|{verifyInfo.Key}|{DateTime.Now.ToString("yyyy-MM-DDTHH:mm:ss")}";
            var token     = encryptor.Encrypt(data);

            cacheAgent.SetCache($"{USER_PREFIX}_{verifyInfo.Id}", cacheData, expiry);
            return(token);
        }
Example #2
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="token"></param>
        /// <returns></returns>
        public VerifyInfo VerifyToken(string token)
        {
            if (string.IsNullOrEmpty(token))
            {
                if (testMode)
                {
                    var info = new VerifyInfo()
                    {
                        Id         = "0",
                        Account    = "test",
                        CreateTime = DateTime.Now,
                        Key        = string.Empty,
                        Name       = "test",
                        Roles      = new string[] { "admin" }
                    };
                    return(info);
                }
                else
                {
                    throw new AuthorizeException(AuthorizeErrorType.TokenNotExists, SR.TokenNotExists);
                }
            }

            string data;
            string id;
            string key;

            try {
                data = encryptor.Decrypt(token);
                string[] values = data.Split('|');
                id  = values[0];
                key = values[1];
            }
            catch (Exception ex) {
                throw new AuthorizeException(AuthorizeErrorType.TokenError, SR.TokenError, ex);
            }

            var result = cacheAgent.GetCache($"{USER_PREFIX}_{id}");

            if (result == null)
            {
                throw new AuthorizeException(AuthorizeErrorType.AccountNotLogin, SR.AccountNotLogin);
            }
            var verifyInfo = JsonConvert.DeserializeObject <VerifyInfo>(result);

            if (verifyInfo.Key != key)
            {
                throw new AuthorizeException(AuthorizeErrorType.AccountHasLoginElsewhere, SR.AccountHasLoginElsewhere);
            }
            return(verifyInfo);
        }