X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fcontrollers%2Fservices.ts;h=ec057235fbb3f6958694dc31330b10f23026e39f;hb=baab47ca81742deae15acd671e8c332a4e1d6eb7;hp=a58a5b8cf2b49a068de56f2480b2e39271198c4c;hpb=ad9e39fb815d85e5e718c40540fa75471474fa17;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/controllers/services.ts b/server/controllers/services.ts index a58a5b8cf..ec057235f 100644 --- a/server/controllers/services.ts +++ b/server/controllers/services.ts @@ -1,8 +1,7 @@ import * as express from 'express' -import { CONFIG, EMBED_SIZE, PREVIEWS_SIZE } from '../initializers' +import { EMBED_SIZE, PREVIEWS_SIZE, WEBSERVER } from '../initializers/constants' import { asyncMiddleware, oembedValidator } from '../middlewares' -import { accountsNameWithHostGetValidator } from '../middlewares/validators' -import { VideoModel } from '../models/video/video' +import { accountNameWithHostGetValidator } from '../middlewares/validators' const servicesRouter = express.Router() @@ -11,7 +10,7 @@ servicesRouter.use('/oembed', generateOEmbed ) servicesRouter.use('/redirect/accounts/:accountName', - asyncMiddleware(accountsNameWithHostGetValidator), + asyncMiddleware(accountNameWithHostGetValidator), redirectToAccountUrl ) @@ -23,14 +22,14 @@ export { // --------------------------------------------------------------------------- -function generateOEmbed (req: express.Request, res: express.Response, next: express.NextFunction) { - const video = res.locals.video as VideoModel - const webserverUrl = CONFIG.WEBSERVER.URL +function generateOEmbed (req: express.Request, res: express.Response) { + const video = res.locals.videoAll + const webserverUrl = WEBSERVER.URL 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 +44,8 @@ function generateOEmbed (req: express.Request, res: express.Response, next: expr thumbnailUrl = undefined } - const html = `` + const html = `` const json: any = { type: 'video', @@ -55,6 +55,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 }