From 63dc589865fa1882d38f1d9e0050d2341869d487 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 21 May 2019 13:14:27 +0200 Subject: [PATCH] Fix video views --- server/initializers/constants.ts | 2 +- .../migrations/0380-cleanup-timestamps.ts | 29 +++++++++++++++++++ server/lib/job-queue/handlers/video-views.ts | 11 +++++-- 3 files changed, 38 insertions(+), 4 deletions(-) create mode 100644 server/initializers/migrations/0380-cleanup-timestamps.ts diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index 62778ae58..b5f8fc0bc 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts @@ -14,7 +14,7 @@ import { CONFIG, registerConfigChangedHandler } from './config' // --------------------------------------------------------------------------- -const LAST_MIGRATION_VERSION = 375 +const LAST_MIGRATION_VERSION = 380 // --------------------------------------------------------------------------- diff --git a/server/initializers/migrations/0380-cleanup-timestamps.ts b/server/initializers/migrations/0380-cleanup-timestamps.ts new file mode 100644 index 000000000..2a9fd6f02 --- /dev/null +++ b/server/initializers/migrations/0380-cleanup-timestamps.ts @@ -0,0 +1,29 @@ +import * as Sequelize from 'sequelize' + +async function up (utils: { + transaction: Sequelize.Transaction, + queryInterface: Sequelize.QueryInterface, + sequelize: Sequelize.Sequelize, + db: any +}): Promise { + try { + await utils.queryInterface.removeColumn('application', 'createdAt') + } catch { /* the column could not exist */ } + + try { + await utils.queryInterface.removeColumn('application', 'updatedAt') + } catch { /* the column could not exist */ } + + try { + await utils.queryInterface.removeColumn('videoView', 'updatedAt') + } catch { /* the column could not exist */ } +} + +function down (options) { + throw new Error('Not implemented.') +} + +export { + up, + down +} diff --git a/server/lib/job-queue/handlers/video-views.ts b/server/lib/job-queue/handlers/video-views.ts index fa1fd13b3..73fa5ed04 100644 --- a/server/lib/job-queue/handlers/video-views.ts +++ b/server/lib/job-queue/handlers/video-views.ts @@ -27,6 +27,12 @@ async function processVideosViews () { logger.debug('Adding %d views to video %d in hour %d.', views, videoId, hour) try { + const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(videoId) + if (!video) { + logger.debug('Video %d does not exist anymore, skipping videos view addition.', videoId) + continue + } + await VideoViewModel.create({ startDate, endDate, @@ -34,7 +40,6 @@ async function processVideosViews () { videoId }) - const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(videoId) if (video.isOwned()) { // If this is a remote video, the origin instance will send us an update await VideoModel.incrementViews(videoId, views) @@ -44,13 +49,13 @@ async function processVideosViews () { await federateVideoIfNeeded(video, false) } } catch (err) { - logger.debug('Cannot create video views for video %d in hour %d. Maybe the video does not exist anymore?', videoId, hour) + logger.error('Cannot create video views for video %d in hour %d.', videoId, hour, { err }) } } await Redis.Instance.deleteVideoViews(videoId, hour) } catch (err) { - logger.error('Cannot update video views of video %d in hour %d.', videoId, hour) + logger.error('Cannot update video views of video %d in hour %d.', videoId, hour, { err }) } } } -- 2.41.0