]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/video/tag.ts
Put config redundancy strategies in "strategies" subkey
[github/Chocobozzz/PeerTube.git] / server / models / video / tag.ts
CommitLineData
3fd3ab2d 1import * as Bluebird from 'bluebird'
2d3741d6 2import * as Sequelize from 'sequelize'
3fd3ab2d
C
3import { AllowNull, BelongsToMany, Column, CreatedAt, Is, Model, Table, UpdatedAt } from 'sequelize-typescript'
4import { isVideoTagValid } from '../../helpers/custom-validators/videos'
5import { throwIfNotValid } from '../utils'
6import { VideoModel } from './video'
7import { VideoTagModel } from './video-tag'
2d3741d6 8import { VideoPrivacy, VideoState } from '../../../shared/models/videos'
3fd3ab2d
C
9
10@Table({
11 tableName: 'tag',
12 timestamps: false,
13 indexes: [
7920c273 14 {
3fd3ab2d
C
15 fields: [ 'name' ],
16 unique: true
7920c273 17 }
e02643f3 18 ]
3fd3ab2d
C
19})
20export class TagModel extends Model<TagModel> {
e02643f3 21
3fd3ab2d
C
22 @AllowNull(false)
23 @Is('VideoTag', value => throwIfNotValid(value, isVideoTagValid, 'tag'))
24 @Column
25 name: string
7920c273 26
3fd3ab2d
C
27 @CreatedAt
28 createdAt: Date
7920c273 29
3fd3ab2d
C
30 @UpdatedAt
31 updatedAt: Date
32
33 @BelongsToMany(() => VideoModel, {
7920c273 34 foreignKey: 'tagId',
3fd3ab2d 35 through: () => VideoTagModel,
0a6658fd 36 onDelete: 'CASCADE'
7920c273 37 })
3fd3ab2d
C
38 Videos: VideoModel[]
39
2d3741d6 40 static findOrCreateTags (tags: string[], transaction: Sequelize.Transaction) {
2efd32f6
C
41 if (tags === null) return []
42
3fd3ab2d
C
43 const tasks: Bluebird<TagModel>[] = []
44 tags.forEach(tag => {
45 const query = {
46 where: {
47 name: tag
48 },
49 defaults: {
50 name: tag
d9bdd007
C
51 },
52 transaction
4ff0d862 53 }
4ff0d862 54
3fd3ab2d
C
55 const promise = TagModel.findOrCreate(query)
56 .then(([ tagInstance ]) => tagInstance)
57 tasks.push(promise)
58 })
6fcd19ba 59
3fd3ab2d
C
60 return Promise.all(tasks)
61 }
2d3741d6
C
62
63 // threshold corresponds to how many video the field should have to be returned
64 static getRandomSamples (threshold: number, count: number): Bluebird<string[]> {
65 const query = 'SELECT tag.name FROM tag ' +
66 'INNER JOIN "videoTag" ON "videoTag"."tagId" = tag.id ' +
67 'INNER JOIN video ON video.id = "videoTag"."videoId" ' +
68 'WHERE video.privacy = $videoPrivacy AND video.state = $videoState ' +
69 'GROUP BY tag.name HAVING COUNT(tag.name) >= $threshold ' +
70 'ORDER BY random() ' +
71 'LIMIT $count'
72
73 const options = {
74 bind: { threshold, count, videoPrivacy: VideoPrivacy.PUBLIC, videoState: VideoState.PUBLISHED },
75 type: Sequelize.QueryTypes.SELECT
76 }
77
78 return TagModel.sequelize.query(query, options)
79 .then(data => data.map(d => d.name))
80 }
4ff0d862 81}