Exemple #1
0
        public ActionResult Index()
        {
            int.TryParse(_configService.CachingDuration, out cachingHours);
            if (HttpContext != null)
            {
                _cachingService.SetCacheObject(HttpContext.Cache);
            }
            var authObject = new AuthenticationTo
            {
                DurationOfAuthorization = cachingHours,
                Username = _configService.UserName,
                Password = _configService.Password,
                TimeSpanValidForUnits = AnteeoTimeUnits.Hours
            };

            var resultTokenContent = _cachingService.GetFromCache(cacheTokenKey);

            if (resultTokenContent == null || DateTime.Now <= _authService.ComputeExpirationTime())
            {
                resultTokenContent = GetAuthToken(authObject, cacheTokenKey, cachingHours);
            }
            var tokenUnit = resultTokenContent.Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);

            if (tokenUnit.Length > 1)
            {
                //Errored: MESSEGE in content
                ViewBag.Exception = "Exception: Failed Token Acquisition: " + resultTokenContent;
                return(View());
            }
            else if (tokenUnit.Length == 1)
            {
                var queryParams = new Dictionary <string, string>();

                //var pingResponse = _hotelService.Ping(ConfigHelper.HotelServiceEndpointUrl, new RequestMessage { Content = null, Token = resultTokenContent, QueryString = null}, ModeType.Ping);
                dynamic[] listOfRegions = null;
                //if (pingResponse.Content.GetType().IsAssignableFrom(typeof (bool[])))
                //{
                //if (pingResponse.Content[0])
                //{
                listOfRegions = _hotelService.GetAllHotelAndLocationData(_configService.HotelServiceEndpointUrl,
                                                                         queryParams, resultTokenContent);
                if (listOfRegions.GetType().IsAssignableFrom(typeof(string[])))
                {
                    ViewBag.Exception = "Exception: Failed Authorization: " + (string)listOfRegions[0];
                    return(View());
                }
                else if (listOfRegions.GetType().IsAssignableFrom(typeof(Region[])))
                {
                    return(View((Region[])listOfRegions));
                }
                //}
                //}
                //else if (pingResponse.Content.GetType().IsAssignableFrom(typeof(string[])))
                //{
                //ViewBag.Exception = "An exception occured!! " + pingResponse.Content[0] + ", Stack Trace " + Environment.NewLine + pingResponse.Content[1];
                //}
            }
            return(View());
        }
Exemple #2
0
        private string GetAuthToken(AuthenticationTo authObject, string cacheTokenKey, int cachingHours)
        {
            var resultTokenContent = _authService.GetToken(_configService.AuthUrl, authObject.Username, authObject.Password);

            _cachingService.StoreIntoCache(cacheTokenKey, resultTokenContent, cachingHours);
            authObject.StartTime = DateTime.Now;
            authObject.Token     = resultTokenContent;
            return(resultTokenContent);
        }
Exemple #3
0
 public AnteeoHotelLocatorAuth(IHotelAndLocation authService, AuthenticationTo authenticationTo)
 {
     _authService      = authService;
     _authenticationTo = authenticationTo;
 }