]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/client.ts
First typescript iteration
[github/Chocobozzz/PeerTube.git] / server / controllers / client.ts
CommitLineData
65fcc311
C
1import { parallel } from 'async'
2import express = require('express')
3import fs = require('fs')
4import { join } from 'path'
5import expressValidator = require('express-validator')
6// TODO: use .validator when express-validator typing will have validator field
7const validator = expressValidator['validator']
830bcd0f 8
feb4bdfd 9const db = require('../initializers/database')
65fcc311
C
10import {
11 CONFIG,
12 REMOTE_SCHEME,
13 STATIC_PATHS,
14 STATIC_MAX_AGE
15} from '../initializers'
830bcd0f 16
65fcc311 17const clientsRouter = express.Router()
830bcd0f 18
65fcc311 19// TODO: move to constants
830bcd0f 20const opengraphComment = '<!-- opengraph tags -->'
65fcc311
C
21const distPath = join(__dirname, '..', '..', 'client/dist')
22const embedPath = join(distPath, 'standalone/videos/embed.html')
23const indexPath = join(distPath, 'index.html')
830bcd0f
C
24
25// Special route that add OpenGraph tags
26// Do not use a template engine for a so little thing
65fcc311 27clientsRouter.use('/videos/watch/:id', generateWatchHtmlPage)
830bcd0f 28
65fcc311 29clientsRouter.use('/videos/embed', function (req, res, next) {
830bcd0f
C
30 res.sendFile(embedPath)
31})
32
79530164 33// Static HTML/CSS/JS client files
65fcc311 34clientsRouter.use('/client', express.static(distPath, { maxAge: STATIC_MAX_AGE }))
79530164
C
35
36// 404 for static files not found
65fcc311 37clientsRouter.use('/client/*', function (req, res, next) {
79530164
C
38 res.sendStatus(404)
39})
40
830bcd0f
C
41// ---------------------------------------------------------------------------
42
65fcc311
C
43export {
44 clientsRouter
45}
830bcd0f
C
46
47// ---------------------------------------------------------------------------
48
49function addOpenGraphTags (htmlStringPage, video) {
40e3f5e1 50 let basePreviewUrlHttp
41b5da1d
C
51
52 if (video.isOwned()) {
65fcc311 53 basePreviewUrlHttp = CONFIG.WEBSERVER.URL
41b5da1d 54 } else {
65fcc311 55 basePreviewUrlHttp = REMOTE_SCHEME.HTTP + '://' + video.Author.Pod.host
41b5da1d
C
56 }
57
58 // We fetch the remote preview (bigger than the thumbnail)
59 // This should not overhead the remote server since social websites put in a cache the OpenGraph tags
60 // We can't use the thumbnail because these social websites want bigger images (> 200x200 for Facebook for example)
65fcc311
C
61 const previewUrl = basePreviewUrlHttp + STATIC_PATHS.PREVIEWS + video.getPreviewName()
62 const videoUrl = CONFIG.WEBSERVER.URL + '/videos/watch/' + video.id
830bcd0f
C
63
64 const metaTags = {
65 'og:type': 'video',
66 'og:title': video.name,
41b5da1d 67 'og:image': previewUrl,
830bcd0f
C
68 'og:url': videoUrl,
69 'og:description': video.description,
70
71 'name': video.name,
72 'description': video.description,
41b5da1d 73 'image': previewUrl,
830bcd0f
C
74
75 'twitter:card': 'summary_large_image',
76 'twitter:site': '@Chocobozzz',
77 'twitter:title': video.name,
78 'twitter:description': video.description,
41b5da1d 79 'twitter:image': previewUrl
830bcd0f
C
80 }
81
82 let tagsString = ''
83 Object.keys(metaTags).forEach(function (tagName) {
84 const tagValue = metaTags[tagName]
85
86 tagsString += '<meta property="' + tagName + '" content="' + tagValue + '" />'
87 })
88
89 return htmlStringPage.replace(opengraphComment, tagsString)
90}
91
92function generateWatchHtmlPage (req, res, next) {
73ce7f96
C
93 const videoId = req.params.id
94
95 // Let Angular application handle errors
feb4bdfd 96 if (!validator.isUUID(videoId, 4)) return res.sendFile(indexPath)
73ce7f96 97
830bcd0f
C
98 parallel({
99 file: function (callback) {
100 fs.readFile(indexPath, callback)
101 },
102
103 video: function (callback) {
7920c273 104 db.Video.loadAndPopulateAuthorAndPodAndTags(videoId, callback)
830bcd0f 105 }
65fcc311 106 }, function (err, result: any) {
830bcd0f
C
107 if (err) return next(err)
108
65fcc311
C
109 const html = result.file.toString()
110 const video = result.video
830bcd0f 111
73ce7f96
C
112 // Let Angular application handle errors
113 if (!video) return res.sendFile(indexPath)
114
830bcd0f
C
115 const htmlStringPageWithTags = addOpenGraphTags(html, video)
116 res.set('Content-Type', 'text/html; charset=UTF-8').send(htmlStringPageWithTags)
117 })
118}