aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/video/tag.ts
blob: 0c0757fc809265152633e6e31da95aa3513e1bda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import * as Sequelize from 'sequelize'
import * as Promise from 'bluebird'

import { addMethodsToModel } from '../utils'
import {
  TagInstance,
  TagAttributes,

  TagMethods
} from './tag-interface'

let Tag: Sequelize.Model<TagInstance, TagAttributes>
let findOrCreateTags: TagMethods.FindOrCreateTags

export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.DataTypes) {
  Tag = sequelize.define<TagInstance, TagAttributes>('Tag',
    {
      name: {
        type: DataTypes.STRING,
        allowNull: false
      }
    },
    {
      timestamps: false,
      indexes: [
        {
          fields: [ 'name' ],
          unique: true
        }
      ]
    }
  )

  const classMethods = [
    associate,

    findOrCreateTags
  ]
  addMethodsToModel(Tag, classMethods)

  return Tag
}

// ---------------------------------------------------------------------------

function associate (models) {
  Tag.belongsToMany(models.Video, {
    foreignKey: 'tagId',
    through: models.VideoTag,
    onDelete: 'CASCADE'
  })
}

findOrCreateTags = function (tags: string[], transaction: Sequelize.Transaction) {
  const tasks: Promise<TagInstance>[] = []
  tags.forEach(tag => {
    const query: Sequelize.FindOrInitializeOptions<TagAttributes> = {
      where: {
        name: tag
      },
      defaults: {
        name: tag
      }
    }

    if (transaction) query.transaction = transaction

    const promise = Tag.findOrCreate(query).then(([ tagInstance ]) => tagInstance)
    tasks.push(promise)
  })

  return Promise.all(tasks)
}