diff options
Diffstat (limited to 'server/models/video/video.ts')
-rw-r--r-- | server/models/video/video.ts | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/server/models/video/video.ts b/server/models/video/video.ts index 80ca513bf..f6a21814c 100644 --- a/server/models/video/video.ts +++ b/server/models/video/video.ts | |||
@@ -761,6 +761,29 @@ export class VideoModel extends Model<VideoModel> { | |||
761 | .findOne(options) | 761 | .findOne(options) |
762 | } | 762 | } |
763 | 763 | ||
764 | static async getStats () { | ||
765 | const totalLocalVideos = await VideoModel.count({ | ||
766 | where: { | ||
767 | remote: false | ||
768 | } | ||
769 | }) | ||
770 | const totalVideos = await VideoModel.count() | ||
771 | |||
772 | let totalLocalVideoViews = await VideoModel.sum('views', { | ||
773 | where: { | ||
774 | remote: false | ||
775 | } | ||
776 | }) | ||
777 | // Sequelize could return null... | ||
778 | if (!totalLocalVideoViews) totalLocalVideoViews = 0 | ||
779 | |||
780 | return { | ||
781 | totalLocalVideos, | ||
782 | totalLocalVideoViews, | ||
783 | totalVideos | ||
784 | } | ||
785 | } | ||
786 | |||
764 | getOriginalFile () { | 787 | getOriginalFile () { |
765 | if (Array.isArray(this.VideoFiles) === false) return undefined | 788 | if (Array.isArray(this.VideoFiles) === false) return undefined |
766 | 789 | ||