2017-09-17 02:50:22 +02:00
|
|
|
const Handlebars = require('handlebars');
|
2017-11-07 00:18:45 +01:00
|
|
|
const config = require('../config/speechConfig.js');
|
2017-09-17 02:50:22 +02:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
googleAnalytics () {
|
2017-11-07 00:18:45 +01:00
|
|
|
const googleApiKey = config.analytics.googleId;
|
2017-11-14 21:32:14 +01:00
|
|
|
const gaCode = `<script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
2017-09-17 02:50:22 +02:00
|
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
|
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
|
|
ga('create', '${googleApiKey}', 'auto');
|
2017-11-14 21:32:14 +01:00
|
|
|
ga('send', 'pageview');</script>`;
|
|
|
|
return new Handlebars.SafeString(gaCode);
|
2017-09-17 02:50:22 +02:00
|
|
|
},
|
|
|
|
addOpenGraph (title, mimeType, showUrl, source, description, thumbnail) {
|
2017-11-14 21:32:14 +01:00
|
|
|
if (title === null || title.trim() === '') {
|
|
|
|
title = 'Spee.ch';
|
|
|
|
}
|
|
|
|
if (description === null || description.trim() === '') {
|
|
|
|
description = 'Open-source, decentralized image and video sharing.';
|
|
|
|
}
|
|
|
|
const ogTitle = `<meta property="og:title" content="${title}" >`;
|
|
|
|
const ogUrl = `<meta property="og:url" content="${showUrl}" >`;
|
|
|
|
const ogSiteName = `<meta property="og:site_name" content="Spee.ch" >`;
|
|
|
|
const ogDescription = `<meta property="og:description" content="${description}" >`;
|
|
|
|
const ogImageWidth = '<meta property="og:image:width" content="600" >';
|
|
|
|
const ogImageHeight = '<meta property="og:image:height" content="315" >';
|
|
|
|
const basicTags = `${ogTitle} ${ogUrl} ${ogSiteName} ${ogDescription} ${ogImageWidth} ${ogImageHeight}`;
|
2017-11-09 23:20:25 +01:00
|
|
|
let ogImage = `<meta property="og:image" content="${source}" >`;
|
|
|
|
let ogImageType = `<meta property="og:image:type" content="${mimeType}" >`;
|
|
|
|
let ogType = `<meta property="og:type" content="article" >`;
|
2017-09-17 02:50:22 +02:00
|
|
|
if (mimeType === 'video/mp4') {
|
2017-11-14 21:32:14 +01:00
|
|
|
const ogVideo = `<meta property="og:video" content="${source}" >`;
|
|
|
|
const ogVideoSecureUrl = `<meta property="og:video:secure_url" content="${source}" >`;
|
|
|
|
const ogVideoType = `<meta property="og:video:type" content="${mimeType}" >`;
|
2017-11-09 23:20:25 +01:00
|
|
|
ogImage = `<meta property="og:image" content="${thumbnail}" >`;
|
|
|
|
ogImageType = `<meta property="og:image:type" content="image/png" >`;
|
|
|
|
ogType = `<meta property="og:type" content="video" >`;
|
|
|
|
return new Handlebars.SafeString(`${basicTags} ${ogImage} ${ogImageType} ${ogType} ${ogVideo} ${ogVideoSecureUrl} ${ogVideoType}`);
|
2017-09-17 02:50:22 +02:00
|
|
|
} else {
|
2017-11-09 23:20:25 +01:00
|
|
|
if (mimeType === 'image/gif') {
|
|
|
|
ogType = `<meta property="og:type" content="video.other" >`;
|
|
|
|
};
|
|
|
|
return new Handlebars.SafeString(`${basicTags} ${ogImage} ${ogImageType} ${ogType}`);
|
2017-09-17 02:50:22 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
addTwitterCard (mimeType, source, embedUrl, directFileUrl) {
|
2017-11-14 21:32:14 +01:00
|
|
|
const basicTwitterTags = `<meta name="twitter:site" content="@spee_ch" >`;
|
2017-09-17 02:50:22 +02:00
|
|
|
if (mimeType === 'video/mp4') {
|
2017-11-14 21:32:14 +01:00
|
|
|
const twitterName = '<meta name="twitter:card" content="player" >';
|
|
|
|
const twitterPlayer = `<meta name="twitter:player" content="${embedUrl}" >`;
|
|
|
|
const twitterPlayerWidth = '<meta name="twitter:player:width" content="600" >';
|
|
|
|
const twitterTextPlayerWidth = '<meta name="twitter:text:player_width" content="600" >';
|
|
|
|
const twitterPlayerHeight = '<meta name="twitter:player:height" content="337" >';
|
|
|
|
const twitterPlayerStream = `<meta name="twitter:player:stream" content="${directFileUrl}" >`;
|
|
|
|
const twitterPlayerStreamContentType = '<meta name="twitter:player:stream:content_type" content="video/mp4" >';
|
2017-11-09 23:30:13 +01:00
|
|
|
return new Handlebars.SafeString(`${basicTwitterTags} ${twitterName} ${twitterPlayer} ${twitterPlayerWidth} ${twitterTextPlayerWidth} ${twitterPlayerHeight} ${twitterPlayerStream} ${twitterPlayerStreamContentType}`);
|
2017-09-17 02:50:22 +02:00
|
|
|
} else {
|
2017-11-14 21:32:14 +01:00
|
|
|
const twitterCard = '<meta name="twitter:card" content="summary_large_image" >';
|
2017-11-09 23:30:13 +01:00
|
|
|
return new Handlebars.SafeString(`${basicTwitterTags} ${twitterCard}`);
|
2017-09-17 02:50:22 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
ifConditional (varOne, operator, varTwo, options) {
|
|
|
|
switch (operator) {
|
|
|
|
case '===':
|
|
|
|
return (varOne === varTwo) ? options.fn(this) : options.inverse(this);
|
|
|
|
case '!==':
|
|
|
|
return (varOne !== varTwo) ? options.fn(this) : options.inverse(this);
|
|
|
|
case '<':
|
|
|
|
return (varOne < varTwo) ? options.fn(this) : options.inverse(this);
|
|
|
|
case '<=':
|
|
|
|
return (varOne <= varTwo) ? options.fn(this) : options.inverse(this);
|
|
|
|
case '>':
|
|
|
|
return (varOne > varTwo) ? options.fn(this) : options.inverse(this);
|
|
|
|
case '>=':
|
|
|
|
return (varOne >= varTwo) ? options.fn(this) : options.inverse(this);
|
|
|
|
case '&&':
|
|
|
|
return (varOne && varTwo) ? options.fn(this) : options.inverse(this);
|
|
|
|
case '||':
|
|
|
|
return (varOne || varTwo) ? options.fn(this) : options.inverse(this);
|
|
|
|
case 'mod3':
|
|
|
|
return ((parseInt(varOne) % 3) === 0) ? options.fn(this) : options.inverse(this);
|
|
|
|
default:
|
|
|
|
return options.inverse(this);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|