mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 02:51:57 +02:00
Add message with analytics event debug log (and log for all events) GitOrigin-RevId: 7ece70cc8ddafd806885d5012b1fdf7fdf6a003b
331 lines
8.2 KiB
JavaScript
331 lines
8.2 KiB
JavaScript
const SessionManager = require('../Authentication/SessionManager')
|
|
const UserAnalyticsIdCache = require('./UserAnalyticsIdCache')
|
|
const Settings = require('@overleaf/settings')
|
|
const Metrics = require('../../infrastructure/Metrics')
|
|
const Queues = require('../../infrastructure/Queues')
|
|
const crypto = require('crypto')
|
|
const _ = require('lodash')
|
|
const { expressify } = require('@overleaf/promise-utils')
|
|
const logger = require('@overleaf/logger')
|
|
const { getAnalyticsIdFromMongoUser } = require('./AnalyticsHelper')
|
|
|
|
const analyticsEventsQueue = Queues.getQueue('analytics-events')
|
|
const analyticsEditingSessionsQueue = Queues.getQueue(
|
|
'analytics-editing-sessions'
|
|
)
|
|
const analyticsUserPropertiesQueue = Queues.getQueue(
|
|
'analytics-user-properties'
|
|
)
|
|
|
|
const ONE_MINUTE_MS = 60 * 1000
|
|
|
|
const UUID_REGEXP = /^[\w]{8}(-[\w]{4}){3}-[\w]{12}$/
|
|
|
|
function identifyUser(userId, analyticsId, isNewUser) {
|
|
if (!userId || !analyticsId || !analyticsId.toString().match(UUID_REGEXP)) {
|
|
return
|
|
}
|
|
if (_isAnalyticsDisabled() || _isSmokeTestUser(userId)) {
|
|
return
|
|
}
|
|
Metrics.analyticsQueue.inc({ status: 'adding', event_type: 'identify' })
|
|
Queues.createScheduledJob(
|
|
'analytics-events',
|
|
{
|
|
name: 'identify',
|
|
data: { userId, analyticsId, isNewUser, createdAt: new Date() },
|
|
},
|
|
ONE_MINUTE_MS
|
|
)
|
|
.then(() => {
|
|
Metrics.analyticsQueue.inc({ status: 'added', event_type: 'identify' })
|
|
})
|
|
.catch(() => {
|
|
Metrics.analyticsQueue.inc({ status: 'error', event_type: 'identify' })
|
|
})
|
|
}
|
|
|
|
async function recordEventForUser(userId, event, segmentation) {
|
|
if (!userId) {
|
|
return
|
|
}
|
|
if (_isAnalyticsDisabled() || _isSmokeTestUser(userId)) {
|
|
return
|
|
}
|
|
const analyticsId = await UserAnalyticsIdCache.get(userId)
|
|
if (analyticsId) {
|
|
_recordEvent({ analyticsId, userId, event, segmentation, isLoggedIn: true })
|
|
}
|
|
}
|
|
|
|
function recordEventForSession(session, event, segmentation) {
|
|
const { analyticsId, userId } = getIdsFromSession(session)
|
|
if (!analyticsId) {
|
|
return
|
|
}
|
|
if (_isAnalyticsDisabled() || _isSmokeTestUser(userId)) {
|
|
return
|
|
}
|
|
_recordEvent({
|
|
analyticsId,
|
|
userId,
|
|
event,
|
|
segmentation,
|
|
isLoggedIn: !!userId,
|
|
createdAt: new Date(),
|
|
})
|
|
}
|
|
|
|
async function setUserPropertyForUser(userId, propertyName, propertyValue) {
|
|
if (_isAnalyticsDisabled() || _isSmokeTestUser(userId)) {
|
|
return
|
|
}
|
|
|
|
_checkPropertyValue(propertyValue)
|
|
|
|
const analyticsId = await UserAnalyticsIdCache.get(userId)
|
|
if (analyticsId) {
|
|
_setUserProperty({ analyticsId, propertyName, propertyValue })
|
|
}
|
|
}
|
|
|
|
async function setUserPropertyForAnalyticsId(
|
|
analyticsId,
|
|
propertyName,
|
|
propertyValue
|
|
) {
|
|
if (_isAnalyticsDisabled()) {
|
|
return
|
|
}
|
|
|
|
_checkPropertyValue(propertyValue)
|
|
|
|
_setUserProperty({ analyticsId, propertyName, propertyValue })
|
|
}
|
|
|
|
async function setUserPropertyForSession(session, propertyName, propertyValue) {
|
|
const { analyticsId, userId } = getIdsFromSession(session)
|
|
if (_isAnalyticsDisabled() || _isSmokeTestUser(userId)) {
|
|
return
|
|
}
|
|
|
|
_checkPropertyValue(propertyValue)
|
|
|
|
if (analyticsId) {
|
|
_setUserProperty({ analyticsId, propertyName, propertyValue })
|
|
}
|
|
}
|
|
|
|
function updateEditingSession(userId, projectId, countryCode, segmentation) {
|
|
if (!userId) {
|
|
return
|
|
}
|
|
if (_isAnalyticsDisabled() || _isSmokeTestUser(userId)) {
|
|
return
|
|
}
|
|
if (!_isSegmentationValid(segmentation)) {
|
|
logger.info(
|
|
{ userId, projectId, segmentation },
|
|
'rejecting analytics editing session due to bad segmentation'
|
|
)
|
|
return
|
|
}
|
|
Metrics.analyticsQueue.inc({
|
|
status: 'adding',
|
|
event_type: 'editing-session',
|
|
})
|
|
analyticsEditingSessionsQueue
|
|
.add('editing-session', {
|
|
userId,
|
|
projectId,
|
|
countryCode,
|
|
segmentation,
|
|
createdAt: new Date(),
|
|
})
|
|
.then(() => {
|
|
Metrics.analyticsQueue.inc({
|
|
status: 'added',
|
|
event_type: 'editing-session',
|
|
})
|
|
})
|
|
.catch(() => {
|
|
Metrics.analyticsQueue.inc({
|
|
status: 'error',
|
|
event_type: 'editing-session',
|
|
})
|
|
})
|
|
}
|
|
|
|
function _recordEvent(
|
|
{ analyticsId, userId, event, segmentation, isLoggedIn },
|
|
{ delay } = {}
|
|
) {
|
|
if (!_isAttributeValid(event)) {
|
|
logger.info(
|
|
{ analyticsId, event, segmentation },
|
|
'rejecting analytics event due to bad event name'
|
|
)
|
|
return
|
|
}
|
|
if (!_isSegmentationValid(segmentation)) {
|
|
logger.info(
|
|
{ analyticsId, event, segmentation },
|
|
'rejecting analytics event due to bad segmentation'
|
|
)
|
|
return
|
|
}
|
|
logger.debug(
|
|
{
|
|
analyticsId,
|
|
userId,
|
|
event,
|
|
segmentation,
|
|
isLoggedIn: !!userId,
|
|
createdAt: new Date(),
|
|
},
|
|
'queueing analytics event'
|
|
)
|
|
Metrics.analyticsQueue.inc({ status: 'adding', event_type: 'event' })
|
|
analyticsEventsQueue
|
|
.add(
|
|
'event',
|
|
{
|
|
analyticsId,
|
|
userId,
|
|
event,
|
|
segmentation,
|
|
isLoggedIn,
|
|
createdAt: new Date(),
|
|
},
|
|
{ delay }
|
|
)
|
|
.then(() => {
|
|
Metrics.analyticsQueue.inc({ status: 'added', event_type: 'event' })
|
|
})
|
|
.catch(() => {
|
|
Metrics.analyticsQueue.inc({ status: 'error', event_type: 'event' })
|
|
})
|
|
}
|
|
|
|
function _setUserProperty({ analyticsId, propertyName, propertyValue }) {
|
|
if (!_isAttributeValid(propertyName)) {
|
|
logger.info(
|
|
{ analyticsId, propertyName, propertyValue },
|
|
'rejecting analytics user property due to bad name'
|
|
)
|
|
return
|
|
}
|
|
if (!_isAttributeValueValid(propertyValue)) {
|
|
logger.info(
|
|
{ analyticsId, propertyName, propertyValue },
|
|
'rejecting analytics user property due to bad value'
|
|
)
|
|
return
|
|
}
|
|
Metrics.analyticsQueue.inc({
|
|
status: 'adding',
|
|
event_type: 'user-property',
|
|
})
|
|
analyticsUserPropertiesQueue
|
|
.add('user-property', {
|
|
analyticsId,
|
|
propertyName,
|
|
propertyValue,
|
|
createdAt: new Date(),
|
|
})
|
|
.then(() => {
|
|
Metrics.analyticsQueue.inc({
|
|
status: 'added',
|
|
event_type: 'user-property',
|
|
})
|
|
})
|
|
.catch(() => {
|
|
Metrics.analyticsQueue.inc({
|
|
status: 'error',
|
|
event_type: 'user-property',
|
|
})
|
|
})
|
|
}
|
|
|
|
function _isSmokeTestUser(userId) {
|
|
const smokeTestUserId = Settings.smokeTest && Settings.smokeTest.userId
|
|
return (
|
|
smokeTestUserId != null &&
|
|
userId != null &&
|
|
userId.toString() === smokeTestUserId
|
|
)
|
|
}
|
|
|
|
function _isAnalyticsDisabled() {
|
|
return !(Settings.analytics && Settings.analytics.enabled)
|
|
}
|
|
|
|
function _checkPropertyValue(propertyValue) {
|
|
if (propertyValue === undefined) {
|
|
throw new Error(
|
|
'propertyValue cannot be undefined, use null to unset a property'
|
|
)
|
|
}
|
|
}
|
|
|
|
function _isAttributeValid(attribute) {
|
|
return !attribute || /^[a-zA-Z0-9-_.:;,/]+$/.test(attribute)
|
|
}
|
|
|
|
function _isAttributeValueValid(attributeValue) {
|
|
return _isAttributeValid(attributeValue) || attributeValue instanceof Date
|
|
}
|
|
|
|
function _isSegmentationValueValid(attributeValue) {
|
|
// spaces and %-escaped values are allowed for segmentation values
|
|
return !attributeValue || /^[a-zA-Z0-9-_.:;,/ %]+$/.test(attributeValue)
|
|
}
|
|
|
|
function _isSegmentationValid(segmentation) {
|
|
if (!segmentation) {
|
|
return true
|
|
}
|
|
|
|
const hasAnyInvalidKey = [...Object.keys(segmentation)].some(
|
|
key => !_isAttributeValid(key)
|
|
)
|
|
|
|
const hasAnyInvalidValue = [...Object.values(segmentation)].some(
|
|
value => !_isSegmentationValueValid(value)
|
|
)
|
|
|
|
return !hasAnyInvalidKey && !hasAnyInvalidValue
|
|
}
|
|
|
|
function getIdsFromSession(session) {
|
|
const analyticsId = _.get(session, ['analyticsId'])
|
|
const userId = SessionManager.getLoggedInUserId(session)
|
|
return { analyticsId, userId }
|
|
}
|
|
|
|
async function analyticsIdMiddleware(req, res, next) {
|
|
const session = req.session
|
|
const sessionUser = SessionManager.getSessionUser(session)
|
|
|
|
if (sessionUser) {
|
|
session.analyticsId = getAnalyticsIdFromMongoUser(sessionUser)
|
|
} else if (!session.analyticsId) {
|
|
// generate an `analyticsId` if needed
|
|
session.analyticsId = crypto.randomUUID()
|
|
}
|
|
|
|
next()
|
|
}
|
|
|
|
module.exports = {
|
|
identifyUser,
|
|
recordEventForSession,
|
|
recordEventForUser,
|
|
setUserPropertyForUser,
|
|
setUserPropertyForSession,
|
|
setUserPropertyForAnalyticsId,
|
|
updateEditingSession,
|
|
getIdsFromSession,
|
|
analyticsIdMiddleware: expressify(analyticsIdMiddleware),
|
|
}
|