diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-06-16 09:45:46 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-06-16 09:45:46 +0200 |
commit | 74889a71fe687dda74f2a687653122327807af36 (patch) | |
tree | e938e8b6401b74fbec80513a877d9967f2c0dbcd /server/models/video-blacklist.ts | |
parent | 15a302943d84bc0978b84fe33110c4daa451d311 (diff) | |
download | PeerTube-74889a71fe687dda74f2a687653122327807af36.tar.gz PeerTube-74889a71fe687dda74f2a687653122327807af36.tar.zst PeerTube-74889a71fe687dda74f2a687653122327807af36.zip |
Reorganize model files
Diffstat (limited to 'server/models/video-blacklist.ts')
-rw-r--r-- | server/models/video-blacklist.ts | 103 |
1 files changed, 0 insertions, 103 deletions
diff --git a/server/models/video-blacklist.ts b/server/models/video-blacklist.ts deleted file mode 100644 index 040ed03d7..000000000 --- a/server/models/video-blacklist.ts +++ /dev/null | |||
@@ -1,103 +0,0 @@ | |||
1 | import * as Sequelize from 'sequelize' | ||
2 | |||
3 | import { addMethodsToModel, getSort } from './utils' | ||
4 | import { | ||
5 | BlacklistedVideoClass, | ||
6 | BlacklistedVideoInstance, | ||
7 | BlacklistedVideoAttributes, | ||
8 | |||
9 | BlacklistedVideoMethods | ||
10 | } from './video-blacklist-interface' | ||
11 | |||
12 | let BlacklistedVideo: Sequelize.Model<BlacklistedVideoInstance, BlacklistedVideoAttributes> | ||
13 | let toFormatedJSON: BlacklistedVideoMethods.ToFormatedJSON | ||
14 | let countTotal: BlacklistedVideoMethods.CountTotal | ||
15 | let list: BlacklistedVideoMethods.List | ||
16 | let listForApi: BlacklistedVideoMethods.ListForApi | ||
17 | let loadById: BlacklistedVideoMethods.LoadById | ||
18 | let loadByVideoId: BlacklistedVideoMethods.LoadByVideoId | ||
19 | |||
20 | export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.DataTypes) { | ||
21 | BlacklistedVideo = sequelize.define<BlacklistedVideoInstance, BlacklistedVideoAttributes>('BlacklistedVideo', | ||
22 | {}, | ||
23 | { | ||
24 | indexes: [ | ||
25 | { | ||
26 | fields: [ 'videoId' ], | ||
27 | unique: true | ||
28 | } | ||
29 | ] | ||
30 | } | ||
31 | ) | ||
32 | |||
33 | const classMethods = [ | ||
34 | associate, | ||
35 | |||
36 | countTotal, | ||
37 | list, | ||
38 | listForApi, | ||
39 | loadById, | ||
40 | loadByVideoId | ||
41 | ] | ||
42 | const instanceMethods = [ | ||
43 | toFormatedJSON | ||
44 | ] | ||
45 | addMethodsToModel(BlacklistedVideo, classMethods, instanceMethods) | ||
46 | |||
47 | return BlacklistedVideo | ||
48 | } | ||
49 | |||
50 | // ------------------------------ METHODS ------------------------------ | ||
51 | |||
52 | toFormatedJSON = function () { | ||
53 | return { | ||
54 | id: this.id, | ||
55 | videoId: this.videoId, | ||
56 | createdAt: this.createdAt | ||
57 | } | ||
58 | } | ||
59 | |||
60 | // ------------------------------ STATICS ------------------------------ | ||
61 | |||
62 | function associate (models) { | ||
63 | BlacklistedVideo.belongsTo(models.Video, { | ||
64 | foreignKey: 'videoId', | ||
65 | onDelete: 'cascade' | ||
66 | }) | ||
67 | } | ||
68 | |||
69 | countTotal = function (callback: BlacklistedVideoMethods.CountTotalCallback) { | ||
70 | return BlacklistedVideo.count().asCallback(callback) | ||
71 | } | ||
72 | |||
73 | list = function (callback: BlacklistedVideoMethods.ListCallback) { | ||
74 | return BlacklistedVideo.findAll().asCallback(callback) | ||
75 | } | ||
76 | |||
77 | listForApi = function (start: number, count: number, sort: string, callback: BlacklistedVideoMethods.ListForApiCallback) { | ||
78 | const query = { | ||
79 | offset: start, | ||
80 | limit: count, | ||
81 | order: [ getSort(sort) ] | ||
82 | } | ||
83 | |||
84 | return BlacklistedVideo.findAndCountAll(query).asCallback(function (err, result) { | ||
85 | if (err) return callback(err) | ||
86 | |||
87 | return callback(null, result.rows, result.count) | ||
88 | }) | ||
89 | } | ||
90 | |||
91 | loadById = function (id: number, callback: BlacklistedVideoMethods.LoadByIdCallback) { | ||
92 | return BlacklistedVideo.findById(id).asCallback(callback) | ||
93 | } | ||
94 | |||
95 | loadByVideoId = function (id: string, callback: BlacklistedVideoMethods.LoadByIdCallback) { | ||
96 | const query = { | ||
97 | where: { | ||
98 | videoId: id | ||
99 | } | ||
100 | } | ||
101 | |||
102 | return BlacklistedVideo.find(query).asCallback(callback) | ||
103 | } | ||