diff options
-rw-r--r-- | package.json | 1 | ||||
-rw-r--r-- | server/controllers/api/users.ts | 18 | ||||
-rw-r--r-- | server/initializers/constants.ts | 2 | ||||
-rw-r--r-- | server/initializers/migrations/0080-video-channels.ts | 111 |
4 files changed, 121 insertions, 11 deletions
diff --git a/package.json b/package.json index ce8b77dbf..3a617e5e0 100644 --- a/package.json +++ b/package.json | |||
@@ -80,6 +80,7 @@ | |||
80 | "sequelize": "^4.7.5", | 80 | "sequelize": "^4.7.5", |
81 | "ts-node": "^3.3.0", | 81 | "ts-node": "^3.3.0", |
82 | "typescript": "^2.5.2", | 82 | "typescript": "^2.5.2", |
83 | "uuid": "^3.1.0", | ||
83 | "validator": "^9.0.0", | 84 | "validator": "^9.0.0", |
84 | "winston": "^2.1.1", | 85 | "winston": "^2.1.1", |
85 | "ws": "^3.1.0" | 86 | "ws": "^3.1.0" |
diff --git a/server/controllers/api/users.ts b/server/controllers/api/users.ts index b49d37d4e..18a094f03 100644 --- a/server/controllers/api/users.ts +++ b/server/controllers/api/users.ts | |||
@@ -158,16 +158,14 @@ async function getUserVideoRating (req: express.Request, res: express.Response, | |||
158 | const videoId = +req.params.videoId | 158 | const videoId = +req.params.videoId |
159 | const userId = +res.locals.oauth.token.User.id | 159 | const userId = +res.locals.oauth.token.User.id |
160 | 160 | ||
161 | db.UserVideoRate.load(userId, videoId, null) | 161 | const ratingObj = await db.UserVideoRate.load(userId, videoId, null) |
162 | .then(ratingObj => { | 162 | const rating = ratingObj ? ratingObj.type : 'none' |
163 | const rating = ratingObj ? ratingObj.type : 'none' | 163 | |
164 | const json: FormattedUserVideoRate = { | 164 | const json: FormattedUserVideoRate = { |
165 | videoId, | 165 | videoId, |
166 | rating | 166 | rating |
167 | } | 167 | } |
168 | res.json(json) | 168 | res.json(json) |
169 | }) | ||
170 | .catch(err => next(err)) | ||
171 | } | 169 | } |
172 | 170 | ||
173 | async function listUsers (req: express.Request, res: express.Response, next: express.NextFunction) { | 171 | async function listUsers (req: express.Request, res: express.Response, next: express.NextFunction) { |
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index 54dce980f..71012f3a3 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -16,7 +16,7 @@ import { | |||
16 | 16 | ||
17 | // --------------------------------------------------------------------------- | 17 | // --------------------------------------------------------------------------- |
18 | 18 | ||
19 | const LAST_MIGRATION_VERSION = 75 | 19 | const LAST_MIGRATION_VERSION = 80 |
20 | 20 | ||
21 | // --------------------------------------------------------------------------- | 21 | // --------------------------------------------------------------------------- |
22 | 22 | ||
diff --git a/server/initializers/migrations/0080-video-channels.ts b/server/initializers/migrations/0080-video-channels.ts new file mode 100644 index 000000000..fc55ef3a2 --- /dev/null +++ b/server/initializers/migrations/0080-video-channels.ts | |||
@@ -0,0 +1,111 @@ | |||
1 | import * as Sequelize from 'sequelize' | ||
2 | import * as uuidv4 from 'uuid/v4' | ||
3 | |||
4 | async function up (utils: { | ||
5 | transaction: Sequelize.Transaction, | ||
6 | queryInterface: Sequelize.QueryInterface, | ||
7 | sequelize: Sequelize.Sequelize, | ||
8 | db: any | ||
9 | }): Promise<void> { | ||
10 | const q = utils.queryInterface | ||
11 | |||
12 | // Assert not friends | ||
13 | |||
14 | // Create uuid column for author | ||
15 | const dataAuthorUUID = { | ||
16 | type: Sequelize.UUID, | ||
17 | defaultValue: Sequelize.UUIDV4, | ||
18 | allowNull: true | ||
19 | } | ||
20 | await q.addColumn('Authors', 'uuid', dataAuthorUUID) | ||
21 | |||
22 | // Set UUID to previous authors | ||
23 | { | ||
24 | const authors = await utils.db.Author.findAll() | ||
25 | for (const author of authors) { | ||
26 | author.uuid = uuidv4() | ||
27 | await author.save() | ||
28 | } | ||
29 | } | ||
30 | |||
31 | dataAuthorUUID.allowNull = false | ||
32 | await q.changeColumn('Authors', 'uuid', dataAuthorUUID) | ||
33 | |||
34 | // Create one author per user that does not already exist | ||
35 | const users = await utils.db.User.findAll() | ||
36 | for (const user of users) { | ||
37 | const author = await utils.db.Author.find({ where: { userId: user.id }}) | ||
38 | if (!author) { | ||
39 | await utils.db.Author.create({ | ||
40 | name: user.username, | ||
41 | podId: null, // It is our pod | ||
42 | userId: user.id | ||
43 | }) | ||
44 | } | ||
45 | } | ||
46 | |||
47 | // Create video channels table | ||
48 | await utils.db.VideoChannel.sync() | ||
49 | |||
50 | // For each author, create its default video channel | ||
51 | const authors = await utils.db.Author.findAll() | ||
52 | for (const author of authors) { | ||
53 | await utils.db.VideoChannel.create({ | ||
54 | name: `Default ${author.name} channel`, | ||
55 | remote: false, | ||
56 | authorId: author.id | ||
57 | }) | ||
58 | } | ||
59 | |||
60 | // Create channelId column for videos | ||
61 | const dataChannelId = { | ||
62 | type: Sequelize.INTEGER, | ||
63 | defaultValue: null, | ||
64 | allowNull: true | ||
65 | } | ||
66 | await q.addColumn('Videos', 'channelId', dataChannelId) | ||
67 | |||
68 | const query = 'SELECT "id", "authorId" FROM "Videos"' | ||
69 | const options = { | ||
70 | type: Sequelize.QueryTypes.SELECT | ||
71 | } | ||
72 | const rawVideos = await utils.sequelize.query(query, options) | ||
73 | |||
74 | for (const rawVideo of rawVideos) { | ||
75 | const videoChannel = await utils.db.VideoChannel.findOne({ where: { authorId: rawVideo.authorId }}) | ||
76 | |||
77 | const video = await utils.db.Video.findById(rawVideo.id) | ||
78 | video.channelId = videoChannel.id | ||
79 | await video.save() | ||
80 | } | ||
81 | |||
82 | dataChannelId.allowNull = false | ||
83 | await q.changeColumn('Videos', 'channelId', dataChannelId) | ||
84 | |||
85 | const constraintName = 'Videos_channelId_fkey' | ||
86 | const queryForeignKey = 'ALTER TABLE "Videos" ' + | ||
87 | ' ADD CONSTRAINT "' + constraintName + '"' + | ||
88 | ' FOREIGN KEY ("channelId") REFERENCES "VideoChannels" ON UPDATE CASCADE ON DELETE CASCADE' | ||
89 | |||
90 | await utils.sequelize.query(queryForeignKey) | ||
91 | |||
92 | await q.removeColumn('Videos', 'authorId') | ||
93 | } | ||
94 | |||
95 | function down (options) { | ||
96 | // update "Applications" SET "migrationVersion" = 75; | ||
97 | // delete from "Authors"; | ||
98 | // alter table "Authors" drop column "uuid"; | ||
99 | // ALTER SEQUENCE "Authors_id_seq" RESTART WITH 1 | ||
100 | // INSERT INTO "Authors" ("name", "createdAt", "updatedAt", "userId") VALUES ('root', NOW(), NOW(), 1); | ||
101 | // alter table "Videos" drop column "channelId"; | ||
102 | // drop table "VideoChannels"; | ||
103 | // alter table "Videos" add column "authorId" INTEGER DEFAULT 1; | ||
104 | // alter table "Videos" ADD CONSTRAINT "coucou" FOREIGN KEY ("authorId") REFERENCES "Authors" | ||
105 | throw new Error('Not implemented.') | ||
106 | } | ||
107 | |||
108 | export { | ||
109 | up, | ||
110 | down | ||
111 | } | ||