mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-24 16:04:35 +00:00
7f079b7d4f
We have a wrapper around logInteraction() called logNotificationImpressions() that logs impressions uniquely (i.e. logs each notification impression only once), but in addition to calling that (from NotificationsWidget), we were also manually calling logInteraction() to log impressions from NotificationBadgeWidget and NotificationGroupItemWidget. This resulted in two impression events for every notification, each with different data, one of which is logged only once and one of which can be logged multiple times. Remove the manual logImpression() calls and route everything through logNotificationImpressions(), which is called from only one place: NotificationsWidget. Add support for logging foreign wikis to logNotificationImpressions(), as it was previously missing. This causes us to lose the notification type information in these events, but that can also be derived after the fact by looking up the event_id in the echo_event table. Whether impression logging is even useful is another question, but it certainly isn't useful if we log duplicate impression events with different data. Change-Id: I19b76a4ce796b21e9347dd9392af24918db82e18
155 lines
4.2 KiB
JavaScript
155 lines
4.2 KiB
JavaScript
( function ( $, mw ) {
|
|
mw.echo = mw.echo || {};
|
|
|
|
/**
|
|
* Echo logger
|
|
*
|
|
* @class
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration object
|
|
* @cfg {boolean} [clickThroughEnabled] Whether logging is enabled
|
|
*/
|
|
mw.echo.Logger = function MwEchoUiLogger( config ) {
|
|
config = config || {};
|
|
|
|
this.clickThroughEnabled = config.clickThroughEnabled || this.constructor.static.clickThroughEnabled;
|
|
this.notificationsIdCache = [];
|
|
if ( this.clickThroughEnabled ) {
|
|
// This should usually already be loaded, but not always
|
|
this.deferred = mw.loader.using( 'ext.eventLogging', function () {
|
|
mw.eventLog.setDefaults( 'EchoInteraction', {
|
|
version: mw.config.get( 'wgEchoConfig' ).version,
|
|
userId: +mw.config.get( 'wgUserId' ),
|
|
editCount: +mw.config.get( 'wgUserEditCount' )
|
|
} );
|
|
} );
|
|
} else {
|
|
this.deferred = $.Deferred().resolve();
|
|
}
|
|
};
|
|
|
|
OO.initClass( mw.echo.Logger );
|
|
|
|
/* Static methods */
|
|
|
|
/**
|
|
* Default behavior in MediaWiki for whether logging Echo interactions
|
|
* is enabled
|
|
*
|
|
* @static
|
|
* @property {[type]}
|
|
*/
|
|
mw.echo.Logger.static.clickThroughEnabled = OO.getProp(
|
|
mw.config.get( 'wgEchoConfig' ),
|
|
'eventlogging',
|
|
'EchoInteraction',
|
|
'enabled'
|
|
);
|
|
|
|
/**
|
|
* Context definitions.
|
|
*
|
|
* 'flyout': Interactions from the popup content
|
|
* 'archive': Interactions from the Special:Notifications page
|
|
* 'badge': Interactions from the badge button
|
|
*
|
|
* @static
|
|
* @property {Object}
|
|
*/
|
|
mw.echo.Logger.static.context = {
|
|
popup: 'flyout',
|
|
archive: 'archive',
|
|
badge: undefined
|
|
};
|
|
|
|
/**
|
|
* Logging action names for consistency.
|
|
*
|
|
* 'notificationClick': Click interaction
|
|
* 'notificationImpression': Impression interaction
|
|
*
|
|
* @static
|
|
* @property {Object}
|
|
*/
|
|
mw.echo.Logger.static.actions = {
|
|
notificationClick: 'notification-link-click',
|
|
notificationBundleExpand: 'notification-bundle-expand',
|
|
notificationImpression: 'notification-impression'
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Log all Echo interaction related events
|
|
*
|
|
* @param {string} action The interaction
|
|
* @param {string} [context] 'flyout'/'archive' or undefined for the badge
|
|
* @param {int} [eventId] Notification event id
|
|
* @param {string} [eventType] notification type
|
|
* @param {boolean} [mobile] True if interaction was on a mobile device
|
|
* @param {string} [notifWiki] Foreign wiki the notification came from
|
|
*/
|
|
mw.echo.Logger.prototype.logInteraction = function ( action, context, eventId, eventType, mobile, notifWiki ) {
|
|
var myEvt;
|
|
|
|
if ( !this.constructor.static.clickThroughEnabled ) {
|
|
return;
|
|
}
|
|
|
|
myEvt = {
|
|
action: action
|
|
};
|
|
|
|
// All the fields below are optional
|
|
if ( context ) {
|
|
myEvt.context = context;
|
|
}
|
|
if ( eventId ) {
|
|
myEvt.eventId = Number( eventId );
|
|
}
|
|
if ( eventType ) {
|
|
myEvt.notificationType = eventType;
|
|
}
|
|
if ( mobile ) {
|
|
myEvt.mobile = mobile;
|
|
}
|
|
|
|
if ( notifWiki && notifWiki !== mw.config.get( 'wgDBname' ) && notifWiki !== 'local' ) {
|
|
myEvt.notifWiki = notifWiki;
|
|
}
|
|
|
|
this.deferred.done( function () {
|
|
mw.eventLog.logEvent( 'EchoInteraction', myEvt );
|
|
} );
|
|
};
|
|
|
|
/**
|
|
* Log the impression of notifications. This will log each notification exactly once.
|
|
*
|
|
* @param {string} type Notification type; 'alert' or 'message'
|
|
* @param {number[]} notificationIds Array of notification ids
|
|
* @param {string} context 'flyout'/'archive' or undefined for the badge
|
|
* @param {string} [notifWiki='local'] Foreign wiki the notifications came from
|
|
* @param {boolean} [mobile=false] True if interaction was on a mobile device
|
|
*/
|
|
mw.echo.Logger.prototype.logNotificationImpressions = function ( type, notificationIds, context, notifWiki, mobile ) {
|
|
var i, len, key;
|
|
|
|
for ( i = 0, len = notificationIds.length; i < len; i++ ) {
|
|
key = notifWiki && notifWiki !== mw.config.get( 'wgDBname' ) && notifWiki !== 'local' ?
|
|
notificationIds[ i ] + '-' + notifWiki :
|
|
notificationIds[ i ];
|
|
|
|
if ( !this.notificationsIdCache[ key ] ) {
|
|
// Log notification impression
|
|
this.logInteraction( 'notification-impression', context, notificationIds[ i ], type, mobile, notifWiki );
|
|
// Cache
|
|
this.notificationsIdCache[ key ] = true;
|
|
}
|
|
}
|
|
};
|
|
|
|
mw.echo.logger = new mw.echo.Logger();
|
|
} )( jQuery, mediaWiki );
|