X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fcontrollers%2Fservices.ts;h=1f82db9c40a7a7c6a71ddee1978251f391eb2b09;hb=77540346413259e4ec62ee8302e503bcd2a01047;hp=3ac78a5df7c0149e2d2de68d9f0ed2ff8a771bf3;hpb=3fd3ab2d34d512b160a5e6084d7609be7b4f4452;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/controllers/services.ts b/server/controllers/services.ts index 3ac78a5df..1f82db9c4 100644 --- a/server/controllers/services.ts +++ b/server/controllers/services.ts @@ -1,6 +1,7 @@ import * as express from 'express' import { CONFIG, EMBED_SIZE, PREVIEWS_SIZE } from '../initializers' import { asyncMiddleware, oembedValidator } from '../middlewares' +import { accountsNameWithHostGetValidator } from '../middlewares/validators' import { VideoModel } from '../models/video/video' const servicesRouter = express.Router() @@ -9,6 +10,10 @@ servicesRouter.use('/oembed', asyncMiddleware(oembedValidator), generateOEmbed ) +servicesRouter.use('/redirect/accounts/:accountName', + asyncMiddleware(accountsNameWithHostGetValidator), + redirectToAccountUrl +) // --------------------------------------------------------------------------- @@ -40,7 +45,7 @@ function generateOEmbed (req: express.Request, res: express.Response, next: expr thumbnailUrl = undefined } - const html = `` + const html = `` const json: any = { type: 'video', @@ -62,3 +67,7 @@ function generateOEmbed (req: express.Request, res: express.Response, next: expr return res.json(json) } + +function redirectToAccountUrl (req: express.Request, res: express.Response, next: express.NextFunction) { + return res.redirect(res.locals.account.Actor.url) +}