X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fcontrollers%2Fservices.ts;h=352d0b19a8bb096c7e26d800fe5be499c4044573;hb=745778256ced65415b04a9817fc49db70d4b6681;hp=c272edccd5196256d93089544d7388e2f11cfd90;hpb=e8cb44090e654fda339506dccfcec7fea8722723;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/controllers/services.ts b/server/controllers/services.ts index c272edccd..352d0b19a 100644 --- a/server/controllers/services.ts +++ b/server/controllers/services.ts @@ -10,7 +10,7 @@ servicesRouter.use('/oembed', asyncMiddleware(oembedValidator), generateOEmbed ) -servicesRouter.use('/redirect/accounts/:nameWithHost', +servicesRouter.use('/redirect/accounts/:accountName', asyncMiddleware(accountsNameWithHostGetValidator), redirectToAccountUrl ) @@ -29,8 +29,8 @@ function generateOEmbed (req: express.Request, res: express.Response, next: expr const maxHeight = parseInt(req.query.maxheight, 10) const maxWidth = parseInt(req.query.maxwidth, 10) - const embedUrl = webserverUrl + video.getEmbedPath() - let thumbnailUrl = webserverUrl + video.getPreviewPath() + const embedUrl = webserverUrl + video.getEmbedStaticPath() + let thumbnailUrl = webserverUrl + video.getPreviewStaticPath() let embedWidth = EMBED_SIZE.width let embedHeight = EMBED_SIZE.height @@ -45,7 +45,8 @@ function generateOEmbed (req: express.Request, res: express.Response, next: expr thumbnailUrl = undefined } - const html = `` + const html = `` const json: any = { type: 'video', @@ -55,6 +56,7 @@ function generateOEmbed (req: express.Request, res: express.Response, next: expr height: embedHeight, title: video.name, author_name: video.VideoChannel.Account.name, + author_url: video.VideoChannel.Account.Actor.url, provider_name: 'PeerTube', provider_url: webserverUrl }