mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-11-04 02:09:05 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			74 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* This Source Code Form is subject to the terms of the Mozilla Public
 | 
						|
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 | 
						|
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 | 
						|
 | 
						|
const lazy = {};
 | 
						|
 | 
						|
ChromeUtils.defineESModuleGetters(lazy, {
 | 
						|
  Region: "resource://gre/modules/Region.sys.mjs",
 | 
						|
});
 | 
						|
 | 
						|
export const CONTEXTUAL_SERVICES_PING_TYPES = {
 | 
						|
  TOPSITES_IMPRESSION: "topsites-impression",
 | 
						|
  TOPSITES_SELECTION: "topsites-click",
 | 
						|
  QS_BLOCK: "quicksuggest-block",
 | 
						|
  QS_IMPRESSION: "quicksuggest-impression",
 | 
						|
  QS_SELECTION: "quicksuggest-click",
 | 
						|
};
 | 
						|
 | 
						|
export var PartnerLinkAttribution = {
 | 
						|
  /**
 | 
						|
   * Sends an attribution request to an anonymizing proxy.
 | 
						|
   *
 | 
						|
   * @param {string} targetURL
 | 
						|
   *   The URL we are routing through the anonmyzing proxy.
 | 
						|
   * @param {string} source
 | 
						|
   *   The source of the anonmized request ("newtab" or "urlbar").
 | 
						|
   * @param {string} [campaignID]
 | 
						|
   *   The campaign ID for attribution. This should be a valid path on the
 | 
						|
   *   anonymizing proxy. For example, if `campaignID` was `foo`, we'd send an
 | 
						|
   *   attribution request to https://topsites.mozilla.com/cid/foo.
 | 
						|
   *   Optional. If it's not provided, we default to the topsites campaign.
 | 
						|
   */
 | 
						|
  async makeRequest({ targetURL, source, campaignID }) {
 | 
						|
    let partner = targetURL.match(/^https?:\/\/(?:www.)?([^.]*)/)[1];
 | 
						|
 | 
						|
    let extra = { value: partner };
 | 
						|
    if (source == "newtab") {
 | 
						|
      Glean.partnerLink.clickNewtab.record(extra);
 | 
						|
    } else if (source == "urlbar") {
 | 
						|
      Glean.partnerLink.clickUrlbar.record(extra);
 | 
						|
    }
 | 
						|
 | 
						|
    let attributionUrl = Services.prefs.getStringPref(
 | 
						|
      "browser.partnerlink.attributionURL"
 | 
						|
    );
 | 
						|
    if (!attributionUrl) {
 | 
						|
      Glean.partnerLink.attributionAbort.record(extra);
 | 
						|
      return;
 | 
						|
    }
 | 
						|
 | 
						|
    // The default campaign is topsites.
 | 
						|
    if (!campaignID) {
 | 
						|
      campaignID = Services.prefs.getStringPref(
 | 
						|
        "browser.partnerlink.campaign.topsites"
 | 
						|
      );
 | 
						|
    }
 | 
						|
    attributionUrl = attributionUrl + campaignID;
 | 
						|
    let result = await sendRequest(attributionUrl, source, targetURL);
 | 
						|
    if (result) {
 | 
						|
      Glean.partnerLink.attributionSuccess.record(extra);
 | 
						|
    } else {
 | 
						|
      Glean.partnerLink.attributionFailure.record(extra);
 | 
						|
    }
 | 
						|
  },
 | 
						|
};
 | 
						|
 | 
						|
async function sendRequest(attributionUrl, source, targetURL) {
 | 
						|
  const request = new Request(attributionUrl);
 | 
						|
  request.headers.set("X-Region", lazy.Region.home);
 | 
						|
  request.headers.set("X-Source", source);
 | 
						|
  request.headers.set("X-Target-URL", targetURL);
 | 
						|
  const response = await fetch(request);
 | 
						|
  return response.ok;
 | 
						|
}
 |