diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-11-10 14:48:08 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-11-27 19:40:51 +0100 |
commit | 38fa2065831b5f55be0d7f30f19a62c967397208 (patch) | |
tree | 4a986465e3a88c85bc6a8b5fc992e0f2edd63ef0 /server/controllers/api/videos | |
parent | 0d0e8dd0904b380b70e19ebcb4763d65601c4632 (diff) | |
download | PeerTube-38fa2065831b5f55be0d7f30f19a62c967397208.tar.gz PeerTube-38fa2065831b5f55be0d7f30f19a62c967397208.tar.zst PeerTube-38fa2065831b5f55be0d7f30f19a62c967397208.zip |
Remove references to author
Diffstat (limited to 'server/controllers/api/videos')
-rw-r--r-- | server/controllers/api/videos/channel.ts | 20 | ||||
-rw-r--r-- | server/controllers/api/videos/index.ts | 2 |
2 files changed, 11 insertions, 11 deletions
diff --git a/server/controllers/api/videos/channel.ts b/server/controllers/api/videos/channel.ts index ab54eedee..4d1f03903 100644 --- a/server/controllers/api/videos/channel.ts +++ b/server/controllers/api/videos/channel.ts | |||
@@ -17,14 +17,14 @@ import { | |||
17 | videoChannelsRemoveValidator, | 17 | videoChannelsRemoveValidator, |
18 | videoChannelGetValidator, | 18 | videoChannelGetValidator, |
19 | videoChannelsUpdateValidator, | 19 | videoChannelsUpdateValidator, |
20 | listVideoAuthorChannelsValidator, | 20 | listVideoAccountChannelsValidator, |
21 | asyncMiddleware | 21 | asyncMiddleware |
22 | } from '../../../middlewares' | 22 | } from '../../../middlewares' |
23 | import { | 23 | import { |
24 | createVideoChannel, | 24 | createVideoChannel, |
25 | updateVideoChannelToFriends | 25 | updateVideoChannelToFriends |
26 | } from '../../../lib' | 26 | } from '../../../lib' |
27 | import { VideoChannelInstance, AuthorInstance } from '../../../models' | 27 | import { VideoChannelInstance, AccountInstance } from '../../../models' |
28 | import { VideoChannelCreate, VideoChannelUpdate } from '../../../../shared' | 28 | import { VideoChannelCreate, VideoChannelUpdate } from '../../../../shared' |
29 | 29 | ||
30 | const videoChannelRouter = express.Router() | 30 | const videoChannelRouter = express.Router() |
@@ -37,9 +37,9 @@ videoChannelRouter.get('/channels', | |||
37 | asyncMiddleware(listVideoChannels) | 37 | asyncMiddleware(listVideoChannels) |
38 | ) | 38 | ) |
39 | 39 | ||
40 | videoChannelRouter.get('/authors/:authorId/channels', | 40 | videoChannelRouter.get('/accounts/:accountId/channels', |
41 | listVideoAuthorChannelsValidator, | 41 | listVideoAccountChannelsValidator, |
42 | asyncMiddleware(listVideoAuthorChannels) | 42 | asyncMiddleware(listVideoAccountChannels) |
43 | ) | 43 | ) |
44 | 44 | ||
45 | videoChannelRouter.post('/channels', | 45 | videoChannelRouter.post('/channels', |
@@ -79,8 +79,8 @@ async function listVideoChannels (req: express.Request, res: express.Response, n | |||
79 | return res.json(getFormattedObjects(resultList.data, resultList.total)) | 79 | return res.json(getFormattedObjects(resultList.data, resultList.total)) |
80 | } | 80 | } |
81 | 81 | ||
82 | async function listVideoAuthorChannels (req: express.Request, res: express.Response, next: express.NextFunction) { | 82 | async function listVideoAccountChannels (req: express.Request, res: express.Response, next: express.NextFunction) { |
83 | const resultList = await db.VideoChannel.listByAuthor(res.locals.author.id) | 83 | const resultList = await db.VideoChannel.listByAccount(res.locals.account.id) |
84 | 84 | ||
85 | return res.json(getFormattedObjects(resultList.data, resultList.total)) | 85 | return res.json(getFormattedObjects(resultList.data, resultList.total)) |
86 | } | 86 | } |
@@ -101,11 +101,11 @@ async function addVideoChannelRetryWrapper (req: express.Request, res: express.R | |||
101 | 101 | ||
102 | async function addVideoChannel (req: express.Request, res: express.Response) { | 102 | async function addVideoChannel (req: express.Request, res: express.Response) { |
103 | const videoChannelInfo: VideoChannelCreate = req.body | 103 | const videoChannelInfo: VideoChannelCreate = req.body |
104 | const author: AuthorInstance = res.locals.oauth.token.User.Author | 104 | const account: AccountInstance = res.locals.oauth.token.User.Account |
105 | let videoChannelCreated: VideoChannelInstance | 105 | let videoChannelCreated: VideoChannelInstance |
106 | 106 | ||
107 | await db.sequelize.transaction(async t => { | 107 | await db.sequelize.transaction(async t => { |
108 | videoChannelCreated = await createVideoChannel(videoChannelInfo, author, t) | 108 | videoChannelCreated = await createVideoChannel(videoChannelInfo, account, t) |
109 | }) | 109 | }) |
110 | 110 | ||
111 | logger.info('Video channel with uuid %s created.', videoChannelCreated.uuid) | 111 | logger.info('Video channel with uuid %s created.', videoChannelCreated.uuid) |
@@ -179,7 +179,7 @@ async function removeVideoChannel (req: express.Request, res: express.Response) | |||
179 | } | 179 | } |
180 | 180 | ||
181 | async function getVideoChannel (req: express.Request, res: express.Response, next: express.NextFunction) { | 181 | async function getVideoChannel (req: express.Request, res: express.Response, next: express.NextFunction) { |
182 | const videoChannelWithVideos = await db.VideoChannel.loadAndPopulateAuthorAndVideos(res.locals.videoChannel.id) | 182 | const videoChannelWithVideos = await db.VideoChannel.loadAndPopulateAccountAndVideos(res.locals.videoChannel.id) |
183 | 183 | ||
184 | return res.json(videoChannelWithVideos.toFormattedJSON()) | 184 | return res.json(videoChannelWithVideos.toFormattedJSON()) |
185 | } | 185 | } |
diff --git a/server/controllers/api/videos/index.ts b/server/controllers/api/videos/index.ts index 964db151d..9ad84609f 100644 --- a/server/controllers/api/videos/index.ts +++ b/server/controllers/api/videos/index.ts | |||
@@ -395,7 +395,7 @@ async function removeVideo (req: express.Request, res: express.Response) { | |||
395 | } | 395 | } |
396 | 396 | ||
397 | async function searchVideos (req: express.Request, res: express.Response, next: express.NextFunction) { | 397 | async function searchVideos (req: express.Request, res: express.Response, next: express.NextFunction) { |
398 | const resultList = await db.Video.searchAndPopulateAuthorAndPodAndTags( | 398 | const resultList = await db.Video.searchAndPopulateAccountAndPodAndTags( |
399 | req.params.value, | 399 | req.params.value, |
400 | req.query.field, | 400 | req.query.field, |
401 | req.query.start, | 401 | req.query.start, |