Exemplo n.º 1
0
        private static void OnBeginRequest(object sender, EventArgs e)
        {
            var    app           = (HttpApplication)sender;
            string strCurrentUrl = app.Request.RawUrl.ToLower().Trim();

            app.StaticFile304();
            // Debug go first
            if (UrlService.IsDebugUrl(strCurrentUrl))
            {
                // Nothing here
                // just return
                return;
            }

            // Check cn
            if (AppServiceStartAction.state != DataBaseService.PingDbState.NoError)
            {
                // Nothing here
                // just return
                return;
            }

            // Check original pictures
            if (strCurrentUrl.Contains("/pictures/product/original/"))
            {
                app.Context.RewritePath("~/err404.aspx");
                return;
            }

            // Check price_temp folder
            if (strCurrentUrl.Contains("/price_temp/"))
            {
                var actions = RoleActionService.GetCustomerRoleActionsByCustomerId(CustomerContext.CurrentCustomer.Id);

                if (!(CustomerContext.CurrentCustomer.IsAdmin || TrialService.IsTrialEnabled ||
                      CustomerContext.CurrentCustomer.IsVirtual ||
                      (CustomerContext.CurrentCustomer.IsModerator && actions.Any(item => item.Key == RoleActionKey.DisplayOrders || item.Key == RoleActionKey.DisplayImportExport)))
                    )
                {
                    app.Context.RewritePath("~/err404.aspx");
                    return;
                }
            }

            // Social
            string social = UrlService.Social.Find(strCurrentUrl.Contains);

            if (social != null)
            {
                app.Response.RedirectPermanent("~/social/catalogsocial.aspx?type=" + social.Split('-').Last());
            }

            // Check exportfeed
            //if (strCurrentUrl.Contains("exportfeed.aspx") || strCurrentUrl.Contains("exportfeeddet.aspx"))
            //    return;

            // Payment return url
            if (strCurrentUrl.Contains("/paymentreturnurl/"))
            {
                app.Context.RewritePath("~/PaymentReturnUrl.aspx?PaymentMethodID=" + app.Request.Path.Split(new[] { "/paymentreturnurl/" }, StringSplitOptions.None).LastOrDefault()
                                        + (string.IsNullOrWhiteSpace(app.Request.Url.Query) ? string.Empty : "&" + app.Request.Url.Query.Trim('?')));
                return;
            }
            if (strCurrentUrl.Contains("/paymentnotification/"))
            {
                app.Context.RewritePath("~/HttpHandlers/PaymentNotification.ashx?PaymentMethodID=" + app.Request.Path.Split(new[] { "/paymentnotification/" }, StringSplitOptions.None).LastOrDefault()
                                        + (string.IsNullOrWhiteSpace(app.Request.Url.Query) ? string.Empty : "&" + app.Request.Url.Query.Trim('?')));
                return;
            }

            // Seek in url table
            foreach (var key in UrlService.UrlTable.Keys.Where(strCurrentUrl.Split('?')[0].EndsWith))
            {
                app.Context.RewritePath(UrlService.UrlTable[key] + (string.IsNullOrWhiteSpace(app.Request.Url.Query)
                                                                            ? string.Empty
                                                                            : (UrlService.UrlTable[key].Contains("?") ? "&" : "?") + app.Request.Url.Query.Trim('?')));
                return;
            }

            //// Storage
            //string storage = UrlService.Storages.Find(strCurrentUrl.Contains);
            //if (storage != null)
            //{
            //    var index = strCurrentUrl.IndexOf(storage, StringComparison.Ordinal);
            //    string tail = app.Request.RawUrl.Substring(index + storage.Length);
            //    string pathNew = string.Format("~{0}{1}", storage, tail);
            //    app.Context.RewritePath(pathNew);
            //    return;
            //}

            string path = strCurrentUrl;

            if (app.Request.ApplicationPath != "/")
            {
                if (app.Request.ApplicationPath != null)
                {
                    path = path.Replace(app.Request.ApplicationPath.ToLower(), "");
                }
            }

            // sometimes Path.GetExtension thows exeption "Illegal characters in path"
            try
            {
                string extention = Path.GetExtension(path.Split('?')[0]);
                if (UrlService.ExtentionNotToRedirect.Contains(extention))
                {
                    return;
                }
            }
            catch (Exception ex)
            {
                Debug.LogError(ex, false);
            }

            //301 redirect if need
            if (SettingsSEO.Enabled301Redirects && !path.Contains("/admin/"))
            {
                string newUrl = UrlService.GetRedirect301(path.TrimStart('/').Trim('?'), app.Request.Url.AbsoluteUri);
                if (newUrl.IsNotEmpty())
                {
                    app.Response.RedirectPermanent(newUrl);
                    return;
                }
            }

            var modules = AttachedModules.GetModules <IModuleUrlRewrite>();

            foreach (var moduleType in modules)
            {
                var    moduleObject = (IModuleUrlRewrite)Activator.CreateInstance(moduleType, null);
                string newUrl       = path;
                if (moduleObject.RewritePath(path, ref newUrl))
                {
                    app.Context.RewritePath(newUrl);
                    return;
                }
            }

            var param = UrlService.ParseRequest(path);

            if (param != null)
            {
                UrlService.RedirectTo(app, param);
            }
            else if (path.IsNotEmpty() && path != "/" && !path.Contains(".") && !path.Contains("?"))
            {
                Debug.LogError(new HttpException(404, "Can't get url: " + app.Context.Request.RawUrl + "path: '" + path + "'"));
                app.Context.RewritePath("~/err404.aspx");
            }
        }
Exemplo n.º 2
0
        private static void OnBeginRequest(object sender, EventArgs e)
        {
            var    app           = (HttpApplication)sender;
            string strCurrentUrl = app.Request.RawUrl.ToLower().Trim();

            // Debug go first
            if (UrlService.CheckDebugAddress(strCurrentUrl))
            {
                // Nothing here
                // just return
                return;
            }

            // Check original pictures
            if (strCurrentUrl.Contains("/pictures/product/original/"))
            {
                app.Context.RewritePath("~/err404.aspx");
                return;
            }

            // Social
            string social = UrlService.Social.Find(strCurrentUrl.Contains);

            if (social != null)
            {
                app.Response.RedirectPermanent("~/social/catalogsocial.aspx?type=" + social.Split('-').Last());
            }

            // Check exportfeed
            if (strCurrentUrl.Contains("exportfeed.aspx") || strCurrentUrl.Contains("exportfeeddet.aspx"))
            {
                return;
            }

            // Payment return url
            if (strCurrentUrl.Contains("/paymentreturnurl/"))
            {
                app.Context.RewritePath("~/PaymentReturnUrl.aspx?PaymentMethodID=" + app.Request.Path.Split(new[] { "/paymentreturnurl/" }, StringSplitOptions.None).LastOrDefault()
                                        + (string.IsNullOrWhiteSpace(app.Request.Url.Query) ? string.Empty : "&" + app.Request.Url.Query.Trim('?')));
                return;
            }
            if (strCurrentUrl.Contains("/paymentnotification/"))
            {
                app.Context.RewritePath("~/HttpHandlers/PaymentNotification.ashx?PaymentMethodID=" + app.Request.Path.Split(new[] { "/paymentnotification/" }, StringSplitOptions.None).LastOrDefault()
                                        + (string.IsNullOrWhiteSpace(app.Request.Url.Query) ? string.Empty : "&" + app.Request.Url.Query.Trim('?')));
                return;
            }

            // Seek in url table
            foreach (var key in UrlService.UrlTable.Keys.Where(strCurrentUrl.Split('?')[0].EndsWith))
            {
                app.Context.RewritePath(UrlService.UrlTable[key]);
                return;
            }

            // Storage
            string storage = UrlService.Storages.Find(strCurrentUrl.Contains);

            if (storage != null)
            {
                var    index   = strCurrentUrl.IndexOf(storage, StringComparison.Ordinal);
                string tail    = app.Request.RawUrl.Substring(index + storage.Length);
                string pathNew = string.Format("~{0}{1}", storage, tail);
                app.Context.RewritePath(pathNew);
                return;
            }

            if (UrlService.HasExtention(strCurrentUrl))
            {
                return;
            }


            string path = app.Request.Path;

            if (app.Request.ApplicationPath != "/")
            {
                if (app.Request.ApplicationPath != null)
                {
                    path = app.Request.Path.ToLower().Replace(app.Request.ApplicationPath.ToLower(), "");
                }
            }

            //301 redirect if need
            if (SettingsSEO.Enabled301Redirects && !path.Contains("/admin/"))
            {
                string newUrl = UrlService.GetRedirect301(path.Trim('/'), app.Request.Url.AbsoluteUri.Trim('/'));
                if (newUrl.IsNotEmpty())
                {
                    app.Response.RedirectPermanent(newUrl);
                    return;
                }
            }

            if (path.Contains("/module/"))
            {
                var moduleStringId =
                    Modules.ModulesService.GetModuleStringIdByUrlPath(path.Split('/').LastOrDefault());
                if (moduleStringId.IsNotEmpty())
                {
                    app.Context.RewritePath("~/modulepage.aspx?moduleid=" + moduleStringId);
                    return;
                }
            }

            var param = UrlService.ParseRequest(path);

            if (param != null)
            {
                UrlService.RedirectTo(app, param);
            }
            else if (path.IsNotEmpty() && path != "/" && path != "/default.aspx")
            {
                Debug.LogError(new HttpException(404, "Can't get url: " + app.Context.Request.RawUrl));
                app.Context.RewritePath("~/err404.aspx");
            }
        }
Exemplo n.º 3
0
        private static void OnBeginRequest(object sender, EventArgs e)
        {
            // Check cn
            if (AppServiceStartAction.state != DataBaseService.PingDbState.NoError)
            {
                // Nothing here
                // just return
                return;
            }

            var    app           = (HttpApplication)sender;
            string strCurrentUrl = app.Request.RawUrl.ToLower().Trim();

            // Debug go first
            if (UrlService.IsDebugUrl(strCurrentUrl))
            {
                return;
            }

            if (strCurrentUrl.Contains("/admin/"))
            {
                return;
            }

            if (MobileHelper.IsMobileEnabled())
            {
                SettingsDesign.Template = "Mobile";
            }
            else if (UrlService.IsSocialUrl(app.Request.Url.AbsoluteUri) != AdvantShop.Core.UrlRewriter.UrlService.eSocialType.None)
            {
                SettingsDesign.Template = "Social";
            }

            if (SettingsDesign.Template == TemplateService.DefaultTemplateId)
            {
                return;
            }

            MobileHelper.RedirectToMobile(app.Context);

            var path = app.Request.Path;

            if (!path.Contains(".aspx") && !path.Contains(".txt") && !path.Contains(".xml") && !path.Contains(".html"))
            {
                return;
            }

            path = path.ToLower();
            if (app.Request.ApplicationPath != "/")
            {
                if (app.Request.ApplicationPath != null)
                {
                    path = path.Replace(app.Request.ApplicationPath.ToLower(), "");
                }
            }

            path = path.TrimStart('/').Split('?')[0];
            var strFilePath = string.Format("~/Templates/{0}/{1}", SettingsDesign.Template, path);

            if (File.Exists(HttpContext.Current.Server.MapPath(strFilePath)))
            {
                app.Context.RewritePath(strFilePath + app.Request.Url.Query);
            }
        }