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

Spoof an IP address to test GEOIP lookups with Sitecore 8

我是 Sitecore 的新手。我正在尝试实施以下过程 class 以覆盖 GeoIP 值以用于测试目的。

我找不到 命名空间 class Tracker 所在的位置。请注意,我使用的是托管在本地主机上的 Sitecore 8Sitecore 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());
        }
    }
}

Tracker class 在 Sitecore.Analytics 命名空间中。

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

Sitecore 8 中,您应该使用 Tracker.CurrentTracker.Current.Interaction 而不是 Tracker.CurrentVisit:

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

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

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

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