欺骗IP地址以测试Sitecore 8的GEOIP查找

时间:2015-07-16 11:38:01

标签: sitecore sitecore-dms sitecore8

我是Sitecore的新手。我尝试实现以下流程类来覆盖 GeoIP 值以进行测试。

我无法找到Tracker类所在的名称空间。请注意,我使用的是localhost上托管的 Sitecore 8 Sitecore Blog: @sitecorejohn blog

有人可以帮我解决这个命名空间问题。

感谢。

namespace Sitecore.Sharedsource.Analytics.Pipelines.StartTracking
{
    using System.Net;

    using Sitecore.Analytics;
    using Sitecore.Analytics.Pipelines.StartTracking;

    public class OverrideIPAddress
    {
        public void Process(StartTrackingArgs args)
        {
            if (Tracker.CurrentVisit == null
              || Tracker.CurrentVisit.GeoIp == null
              || Tracker.CurrentVisit.Ip == null)
            {
                return;
            }

            string ip = new IPAddress(
              Tracker.CurrentVisit.GeoIp.Ip).ToString();

            if (ip != "0.0.0.0" && ip != "127.0.0.1")
            {
                return;
            }

            string html = Sitecore.Web.WebUtil.ExecuteWebPage(
              "http://www.whatismyip.com/automation/n09230945.asp");
            IPAddress address = IPAddress.Parse(html);
            Tracker.CurrentVisit.GeoIp =
              Tracker.Visitor.DataContext.GetGeoIp(address.GetAddressBytes());
        }
    }
}

1 个答案:

答案 0 :(得分:5)

Tracker类位于Sitecore.Analytics命名空间中。

确保您的项目引用Sitecore.Analytics.dll

Sitecore 8 中,您应使用Tracker.CurrentTracker.Current.Interaction代替Tracker.CurrentVisit

Tracker.Current.Interaction.Ip = address.GetAddressBytes();
Tracker.Current.Interaction.UpdateGeoIpData(optionalTimeout);

您可以考虑在CreateVisit处理器之后向XForwardedFor管道添加另一个处理器并致电:

args.Interaction.Ip = address.GetAddressBytes();

您不必致电UpdateGeoIpData - 它将在UpdateGeoIpData处理器中自动调用。