Follows-upc578db02andea671b1f, which I thought removed all code relating to the old async EventLogging method. I didn't notice this UI code at the time, because I only took a single pass over the code to find dead code. Now that that code is gone, it is clear that the UI code is also redundant. The mw.track() and logEvent() methods don't track the Beacon API's async fetches, which also isn't needed, since the loss of browser context upon navigation doesn't abort background beacons. The loading of the EL library itself is already ensured via a dependency so we already know there won't be an async fetch for that. What that leaves is some portion of older browsers in which a EventLogging falls back to 'new Image'. This is basically just IE 11 per <https://caniuse.com/beacon>, and for those some portion of events will have been lost since EventLogging removed support two+ years ago for tracking those fallback fetches via a Promise (because of the perf issues caused by what the removed code here was able to do). Change-Id: Idf4378f983b6ba0e755ebadb97aa6d87cf95f7a5
221 lines
5.2 KiB
JavaScript
221 lines
5.2 KiB
JavaScript
/*!
|
|
* ULS Event logger
|
|
*
|
|
* See https://meta.wikimedia.org/wiki/Schema:UniversalLanguageSelector
|
|
*
|
|
* @private
|
|
* @since 2013.08
|
|
*
|
|
* Copyright (C) 2012-2013 Alolita Sharma, Amir Aharoni, Arun Ganesh, Brandon Harris,
|
|
* Niklas Laxström, Pau Giner, Santhosh Thottingal, Siebrand Mazeland and other
|
|
* contributors. See CREDITS for a list.
|
|
*
|
|
* UniversalLanguageSelector is dual licensed GPLv2 or later and MIT. You don't
|
|
* have to do anything special to choose one license or the other and you don't
|
|
* have to notify anyone which license you are using. You are free to use
|
|
* UniversalLanguageSelector in commercial projects as long as the copyright
|
|
* header is left intact. See files GPL-LICENSE and MIT-LICENSE for details.
|
|
*
|
|
* @file
|
|
* @ingroup Extensions
|
|
* @licence GNU General Public Licence 2.0 or later
|
|
* @licence MIT License
|
|
*/
|
|
|
|
( function () {
|
|
'use strict';
|
|
|
|
/**
|
|
* Try to emit an EventLogging event with schema 'UniversalLanguageSelector'.
|
|
*
|
|
* If EventLogging is not installed, this simply does nothing.
|
|
*
|
|
* @param {Object} event Event action and optional fields
|
|
*/
|
|
function log( event ) {
|
|
event = $.extend( {
|
|
version: 1,
|
|
token: mw.user.id(),
|
|
contentLanguage: mw.config.get( 'wgContentLanguage' ),
|
|
interfaceLanguage: mw.config.get( 'wgUserLanguage' )
|
|
}, event );
|
|
|
|
mw.track( 'event.UniversalLanguageSelector', event );
|
|
}
|
|
|
|
/**
|
|
* Log language settings open
|
|
*
|
|
* @param {string} context Where it was opened from
|
|
*/
|
|
function ulsSettingsOpen( context ) {
|
|
log( {
|
|
action: 'settings-open',
|
|
context: context
|
|
} );
|
|
}
|
|
|
|
/**
|
|
* Log language revert
|
|
*/
|
|
function ulsLanguageRevert() {
|
|
log( { action: 'ui-lang-revert' } );
|
|
}
|
|
|
|
/**
|
|
* Log IME disabling
|
|
*
|
|
* @param {string} context Where the setting was changed.
|
|
*/
|
|
function disableIME( context ) {
|
|
log( { action: 'ime-disable', context: context } );
|
|
}
|
|
|
|
/**
|
|
* Log IME enabling
|
|
*
|
|
* @param {string} context Where the setting was changed.
|
|
*/
|
|
function enableIME( context ) {
|
|
log( { action: 'ime-enable', context: context } );
|
|
}
|
|
|
|
/**
|
|
* Log IME change
|
|
*
|
|
* @param {string} inputMethod
|
|
*/
|
|
function changeIME( inputMethod ) {
|
|
log( {
|
|
action: 'ime-change',
|
|
inputMethod: inputMethod
|
|
} );
|
|
}
|
|
|
|
/**
|
|
* Log login link click in display settings.
|
|
*/
|
|
function loginClick() {
|
|
log( { action: 'login-click' } );
|
|
}
|
|
|
|
/**
|
|
* Log when "More languages" item in IME menu is clicked.
|
|
*/
|
|
function imeMoreLanguages() {
|
|
log( {
|
|
action: 'more-languages-access',
|
|
context: 'ime'
|
|
} );
|
|
}
|
|
|
|
/**
|
|
* Log interface language change
|
|
*
|
|
* @param {string} language language code
|
|
*/
|
|
function interfaceLanguageChange( language ) {
|
|
var logParams = {
|
|
action: 'language-change',
|
|
context: 'interface',
|
|
interfaceLanguage: language
|
|
};
|
|
|
|
log( logParams );
|
|
}
|
|
|
|
/**
|
|
* More languages in display settings is clicked
|
|
*/
|
|
function interfaceMoreLanguages() {
|
|
log( {
|
|
action: 'more-languages-access',
|
|
context: 'interface'
|
|
} );
|
|
}
|
|
|
|
/**
|
|
* Log font preference changes
|
|
*
|
|
* @param {string} context Either 'interface' or 'content'
|
|
* @param {string} language
|
|
* @param {string} font
|
|
*/
|
|
function fontChange( context, language, font ) {
|
|
var logParams = {
|
|
action: 'font-change',
|
|
context: context
|
|
};
|
|
|
|
if ( context === 'interface' ) {
|
|
logParams.interfaceFont = font;
|
|
// Override in case the user changed the ui language but hasn't applied it yet
|
|
logParams.interfaceLanguage = language;
|
|
} else {
|
|
logParams.contentFont = font;
|
|
}
|
|
|
|
log( logParams );
|
|
}
|
|
|
|
/**
|
|
* Log webfonts disabling
|
|
*
|
|
* @param {string} context Where the setting was changed.
|
|
*/
|
|
function disableWebfonts( context ) {
|
|
log( { action: 'webfonts-disable', context: context } );
|
|
}
|
|
|
|
/**
|
|
* Log webfonts enabling
|
|
*
|
|
* @param {string} context Where the setting was changed.
|
|
*/
|
|
function enableWebfonts( context ) {
|
|
log( { action: 'webfonts-enable', context: context } );
|
|
}
|
|
|
|
/**
|
|
* Log search strings which produce no search results.
|
|
*
|
|
* @param {jQuery.event} event The original event
|
|
* @param {Object} data Information about the failed search
|
|
*/
|
|
function noSearchResults( event, data ) {
|
|
log( {
|
|
action: 'no-search-results',
|
|
context: data.query,
|
|
ulsPurpose: data.ulsPurpose,
|
|
title: mw.config.get( 'wgPageName' )
|
|
} );
|
|
}
|
|
|
|
/**
|
|
* Start listening for event logging
|
|
*/
|
|
function listen() {
|
|
// Register handlers for event logging triggers
|
|
mw.hook( 'mw.uls.settings.open' ).add( ulsSettingsOpen );
|
|
mw.hook( 'mw.uls.language.revert' ).add( ulsLanguageRevert );
|
|
mw.hook( 'mw.uls.ime.enable' ).add( enableIME );
|
|
mw.hook( 'mw.uls.ime.disable' ).add( disableIME );
|
|
mw.hook( 'mw.uls.ime.change' ).add( changeIME );
|
|
mw.hook( 'mw.uls.login.click' ).add( loginClick );
|
|
mw.hook( 'mw.uls.ime.morelanguages' ).add( imeMoreLanguages );
|
|
mw.hook( 'mw.uls.interface.morelanguages' ).add( interfaceMoreLanguages );
|
|
mw.hook( 'mw.uls.interface.language.change' ).add( interfaceLanguageChange );
|
|
mw.hook( 'mw.uls.font.change' ).add( fontChange );
|
|
mw.hook( 'mw.uls.webfonts.enable' ).add( enableWebfonts );
|
|
mw.hook( 'mw.uls.webfonts.disable' ).add( disableWebfonts );
|
|
|
|
$( document.body ).on(
|
|
'noresults.uls',
|
|
'.uls-menu .uls-languagefilter',
|
|
noSearchResults
|
|
);
|
|
}
|
|
|
|
listen();
|
|
}() );
|