aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-05-09 13:32:44 +0200
committerChocobozzz <me@florianbigard.com>2018-05-09 13:32:44 +0200
commita10fc78bb0e00e98c8f59edc16cd323b9c8b0615 (patch)
tree4988ea8836d47321061c7f8c8a78ebd2b4eb35ef /server/initializers
parent360329cc029c062bfb145c90f7bf1c007c39af81 (diff)
downloadPeerTube-a10fc78bb0e00e98c8f59edc16cd323b9c8b0615.tar.gz
PeerTube-a10fc78bb0e00e98c8f59edc16cd323b9c8b0615.tar.zst
PeerTube-a10fc78bb0e00e98c8f59edc16cd323b9c8b0615.zip
Fix video channel description/support max length
Diffstat (limited to 'server/initializers')
-rw-r--r--server/initializers/constants.ts8
-rw-r--r--server/initializers/migrations/0215-video-support-length.ts44
2 files changed, 48 insertions, 4 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts
index 6556aa168..c52c27c78 100644
--- a/server/initializers/constants.ts
+++ b/server/initializers/constants.ts
@@ -13,7 +13,7 @@ let config: IConfig = require('config')
13 13
14// --------------------------------------------------------------------------- 14// ---------------------------------------------------------------------------
15 15
16const LAST_MIGRATION_VERSION = 210 16const LAST_MIGRATION_VERSION = 215
17 17
18// --------------------------------------------------------------------------- 18// ---------------------------------------------------------------------------
19 19
@@ -192,8 +192,8 @@ const CONSTRAINTS_FIELDS = {
192 }, 192 },
193 VIDEO_CHANNELS: { 193 VIDEO_CHANNELS: {
194 NAME: { min: 3, max: 120 }, // Length 194 NAME: { min: 3, max: 120 }, // Length
195 DESCRIPTION: { min: 3, max: 250 }, // Length 195 DESCRIPTION: { min: 3, max: 500 }, // Length
196 SUPPORT: { min: 3, max: 300 }, // Length 196 SUPPORT: { min: 3, max: 500 }, // Length
197 URL: { min: 3, max: 2000 } // Length 197 URL: { min: 3, max: 2000 } // Length
198 }, 198 },
199 VIDEOS: { 199 VIDEOS: {
@@ -201,7 +201,7 @@ const CONSTRAINTS_FIELDS = {
201 LANGUAGE: { min: 1, max: 10 }, // Length 201 LANGUAGE: { min: 1, max: 10 }, // Length
202 TRUNCATED_DESCRIPTION: { min: 3, max: 250 }, // Length 202 TRUNCATED_DESCRIPTION: { min: 3, max: 250 }, // Length
203 DESCRIPTION: { min: 3, max: 10000 }, // Length 203 DESCRIPTION: { min: 3, max: 10000 }, // Length
204 SUPPORT: { min: 3, max: 300 }, // Length 204 SUPPORT: { min: 3, max: 500 }, // Length
205 IMAGE: { 205 IMAGE: {
206 EXTNAME: [ '.jpg', '.jpeg' ], 206 EXTNAME: [ '.jpg', '.jpeg' ],
207 FILE_SIZE: { 207 FILE_SIZE: {
diff --git a/server/initializers/migrations/0215-video-support-length.ts b/server/initializers/migrations/0215-video-support-length.ts
new file mode 100644
index 000000000..994eda60d
--- /dev/null
+++ b/server/initializers/migrations/0215-video-support-length.ts
@@ -0,0 +1,44 @@
1import * as Sequelize from 'sequelize'
2import { CONSTRAINTS_FIELDS } from '../index'
3
4async function up (utils: {
5 transaction: Sequelize.Transaction,
6 queryInterface: Sequelize.QueryInterface,
7 sequelize: Sequelize.Sequelize
8}): Promise<void> {
9 {
10 const data = {
11 type: Sequelize.STRING(500),
12 allowNull: true,
13 defaultValue: null
14 }
15 await utils.queryInterface.changeColumn('video', 'support', data)
16 }
17
18 {
19 const data = {
20 type: Sequelize.STRING(500),
21 allowNull: true,
22 defaultValue: null
23 }
24 await utils.queryInterface.changeColumn('videoChannel', 'support', data)
25 }
26
27 {
28 const data = {
29 type: Sequelize.STRING(500),
30 allowNull: true,
31 defaultValue: null
32 }
33 await utils.queryInterface.changeColumn('videoChannel', 'description', data)
34 }
35}
36
37function down (options) {
38 throw new Error('Not implemented.')
39}
40
41export {
42 up,
43 down
44}