2019-11-20 21:57:38 +01:00
|
|
|
const { URL } = require('../../config.js');
|
2020-04-02 23:47:16 +02:00
|
|
|
const { generateEmbedUrl, generateStreamUrl } = require('../../ui/util/lbrytv');
|
2020-01-23 21:41:14 +01:00
|
|
|
const PAGES = require('../../ui/constants/pages');
|
2019-11-07 20:39:22 +01:00
|
|
|
const { getClaim } = require('./chainquery');
|
|
|
|
const { parseURI } = require('lbry-redux');
|
|
|
|
const fs = require('fs');
|
|
|
|
const path = require('path');
|
|
|
|
|
|
|
|
let html = fs.readFileSync(path.join(__dirname, '/../dist/index.html'), 'utf8');
|
|
|
|
|
2020-01-23 21:41:14 +01:00
|
|
|
function insertToHead(fullHtml, htmlToInsert) {
|
|
|
|
return fullHtml.replace(
|
|
|
|
/<!-- VARIABLE_HEAD_BEGIN -->.*<!-- VARIABLE_HEAD_END -->/s,
|
|
|
|
htmlToInsert || buildOgMetadata()
|
|
|
|
);
|
2019-11-07 20:39:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function truncateDescription(description) {
|
|
|
|
return description.length > 200 ? description.substr(0, 200) + '...' : description;
|
|
|
|
}
|
|
|
|
|
|
|
|
function escapeHtmlProperty(property) {
|
|
|
|
return property
|
|
|
|
? String(property)
|
|
|
|
.replace(/&/g, '&')
|
|
|
|
.replace(/</g, '<')
|
|
|
|
.replace(/>/g, '>')
|
|
|
|
.replace(/"/g, '"')
|
|
|
|
.replace(/'/g, ''')
|
|
|
|
: '';
|
|
|
|
}
|
|
|
|
|
2020-01-23 21:41:14 +01:00
|
|
|
//
|
|
|
|
// Normal metadata with option to override certain values
|
2020-01-28 19:00:45 +01:00
|
|
|
//
|
2020-01-23 21:41:14 +01:00
|
|
|
function buildOgMetadata(overrideOptions = {}) {
|
|
|
|
const { title, description } = overrideOptions;
|
|
|
|
const head =
|
|
|
|
'<title>lbry.tv</title>\n' +
|
|
|
|
`<meta property="og:url" content="${URL}" />\n` +
|
|
|
|
`<meta property="og:title" content="${title || 'lbry.tv'}" />\n` +
|
|
|
|
'<meta property="og:site_name" content="lbry.tv | Content Freedom"/>\n' +
|
|
|
|
`<meta property="og:description" content="${description ||
|
|
|
|
'Meet LBRY, an open, free, and community-controlled content wonderland.'}" />\n` +
|
2020-01-31 20:01:11 +01:00
|
|
|
`<meta property="og:image" content="${URL}/v1-og.png" />\n` +
|
2020-01-23 21:41:14 +01:00
|
|
|
'<meta name="twitter:card" content="summary_large_image"/>\n' +
|
2020-01-31 20:01:11 +01:00
|
|
|
`<meta name="twitter:image" content="${URL}/v1-og.png"/>\n` +
|
2020-01-23 21:41:14 +01:00
|
|
|
'<meta property="fb:app_id" content="1673146449633983" />';
|
|
|
|
|
|
|
|
return head;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Metadata used for urls that need claim information
|
|
|
|
// Also has option to override defaults
|
2020-01-28 19:00:45 +01:00
|
|
|
//
|
2020-01-23 21:41:14 +01:00
|
|
|
function buildClaimOgMetadata(uri, claim, overrideOptions = {}) {
|
|
|
|
// Initial setup for claim based og metadata
|
2020-01-28 19:00:45 +01:00
|
|
|
const { claimName } = parseURI(uri);
|
2020-01-23 21:41:14 +01:00
|
|
|
const claimTitle = escapeHtmlProperty(claim.title ? claim.title : claimName);
|
2019-11-07 20:39:22 +01:00
|
|
|
const claimDescription =
|
|
|
|
claim.description && claim.description.length > 0
|
|
|
|
? escapeHtmlProperty(truncateDescription(claim.description))
|
2020-04-02 23:47:16 +02:00
|
|
|
: `View ${claimTitle} on lbry.tv`;
|
2019-11-07 20:39:22 +01:00
|
|
|
const claimLanguage = escapeHtmlProperty(claim.language) || 'en_US';
|
2020-04-02 23:47:16 +02:00
|
|
|
const isImage = claim && claim.value && claim.value.stream_type === 'image';
|
|
|
|
const isFree = claim && claim.value && (!claim.value.fee || Number(claim.value.fee.amount) <= 0);
|
|
|
|
let imageThumbnail;
|
|
|
|
|
|
|
|
if (claim && isImage && isFree) {
|
|
|
|
imageThumbnail = generateStreamUrl(claimName, claim.claim_id);
|
|
|
|
}
|
|
|
|
const claimThumbnail = escapeHtmlProperty(claim.thumbnail_url) || imageThumbnail || `${URL}/v1-og.png`;
|
2020-01-23 21:41:14 +01:00
|
|
|
|
|
|
|
// Allow for ovverriding default claim based og metadata
|
|
|
|
const title = overrideOptions.title || claimTitle;
|
|
|
|
const description = overrideOptions.description || claimDescription;
|
2019-11-07 20:39:22 +01:00
|
|
|
|
|
|
|
let head = '';
|
|
|
|
|
|
|
|
head += '<meta charset="utf8"/>';
|
2020-01-23 21:41:14 +01:00
|
|
|
head += `<title>${title}</title>`;
|
|
|
|
head += `<meta name="description" content="${description}"/>`;
|
2019-11-07 20:39:22 +01:00
|
|
|
if (claim.tags) {
|
|
|
|
head += `<meta name="keywords" content="${claim.tags.toString()}"/>`;
|
|
|
|
}
|
2020-01-28 20:43:02 +01:00
|
|
|
|
2019-11-07 20:39:22 +01:00
|
|
|
head += `<meta name="twitter:image" content="${claimThumbnail}"/>`;
|
2020-01-23 21:41:14 +01:00
|
|
|
head += `<meta property="og:description" content="${description}"/>`;
|
2019-11-07 20:39:22 +01:00
|
|
|
head += `<meta property="og:image" content="${claimThumbnail}"/>`;
|
|
|
|
head += `<meta property="og:locale" content="${claimLanguage}"/>`;
|
2020-04-02 23:47:16 +02:00
|
|
|
head += `<meta property="og:site_name" content="lbry.tv"/>`;
|
2019-11-07 20:39:22 +01:00
|
|
|
head += `<meta property="og:type" content="website"/>`;
|
2020-01-23 21:41:14 +01:00
|
|
|
head += `<meta property="og:title" content="${title}"/>`;
|
2019-11-07 20:39:22 +01:00
|
|
|
// below should be canonical_url, but not provided by chainquery yet
|
2019-11-20 21:57:38 +01:00
|
|
|
head += `<meta property="og:url" content="${URL}/${claim.name}:${claim.claim_id}"/>`;
|
2019-11-07 20:39:22 +01:00
|
|
|
|
2020-02-04 22:14:08 +01:00
|
|
|
if (
|
|
|
|
claim.source_media_type &&
|
|
|
|
(claim.source_media_type.startsWith('video/') || claim.source_media_type.startsWith('audio/'))
|
|
|
|
) {
|
2020-01-28 20:45:47 +01:00
|
|
|
const videoUrl = generateEmbedUrl(claim.name, claim.claim_id);
|
2019-11-07 20:39:22 +01:00
|
|
|
head += `<meta property="og:video" content="${videoUrl}" />`;
|
|
|
|
head += `<meta property="og:video:secure_url" content="${videoUrl}" />`;
|
|
|
|
head += `<meta property="og:video:type" content="${claim.source_media_type}" />`;
|
2020-01-28 20:37:03 +01:00
|
|
|
head += `<meta name="twitter:card" content="player"/>`;
|
2020-01-28 20:45:47 +01:00
|
|
|
head += `<meta name="twitter:player" content="${videoUrl}" />`;
|
2019-11-07 20:39:22 +01:00
|
|
|
if (claim.frame_width && claim.frame_height) {
|
|
|
|
head += `<meta property="og:video:width" content="${claim.frame_width}"/>`;
|
|
|
|
head += `<meta property="og:video:height" content="${claim.frame_height}"/>`;
|
2020-01-28 19:00:45 +01:00
|
|
|
head += `<meta name="twitter:player:width" content="${claim.frame_width}">`;
|
|
|
|
head += `<meta name="twitter:player:height" content="${claim.frame_height}">`;
|
2019-11-07 20:39:22 +01:00
|
|
|
}
|
2020-01-28 20:43:02 +01:00
|
|
|
} else {
|
|
|
|
head += `<meta name="twitter:card" content="summary_large_image"/>`;
|
2019-11-07 20:39:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return head;
|
|
|
|
}
|
|
|
|
|
2020-01-23 21:41:14 +01:00
|
|
|
async function getClaimFromChainquery(url) {
|
|
|
|
const { isChannel, streamName, channelName, channelClaimId, streamClaimId } = parseURI(url);
|
|
|
|
const claimName = isChannel ? '@' + channelName : streamName;
|
|
|
|
const claimId = isChannel ? channelClaimId : streamClaimId;
|
|
|
|
|
|
|
|
const rows = await getClaim(claimName, claimId, channelName, channelClaimId);
|
|
|
|
if (rows && rows.length) {
|
|
|
|
const claim = rows[0];
|
|
|
|
return claim;
|
|
|
|
}
|
|
|
|
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
2019-11-07 20:39:22 +01:00
|
|
|
module.exports.getHtml = async function getHtml(ctx) {
|
2020-01-29 20:45:47 +01:00
|
|
|
const path = decodeURIComponent(ctx.path);
|
2019-11-07 20:39:22 +01:00
|
|
|
|
2020-01-23 21:41:14 +01:00
|
|
|
if (path.length === 0) {
|
2019-11-07 20:39:22 +01:00
|
|
|
return insertToHead(html);
|
|
|
|
}
|
|
|
|
|
2020-01-23 21:41:14 +01:00
|
|
|
const invitePath = `/$/${PAGES.INVITE}/`;
|
2020-01-28 19:00:45 +01:00
|
|
|
const embedPath = `/$/${PAGES.EMBED}/`;
|
2019-11-07 20:39:22 +01:00
|
|
|
|
2020-01-23 21:41:14 +01:00
|
|
|
if (path.includes(invitePath)) {
|
|
|
|
const inviteChannel = path.slice(invitePath.length).replace(/:/g, '#');
|
|
|
|
const inviteChannelUrl = `lbry://${inviteChannel}`;
|
|
|
|
|
|
|
|
try {
|
|
|
|
parseURI(inviteChannelUrl);
|
|
|
|
const claim = await getClaimFromChainquery(inviteChannelUrl);
|
|
|
|
const invitePageMetadata = buildClaimOgMetadata(inviteChannelUrl, claim, {
|
|
|
|
title: `Join ${claim.name} on LBRY`,
|
|
|
|
description: `Join ${claim.name} on LBRY, a content wonderland owned by everyone (and no one).`,
|
|
|
|
});
|
|
|
|
|
|
|
|
return insertToHead(html, invitePageMetadata);
|
|
|
|
} catch (e) {
|
|
|
|
// Something about the invite channel is messed up
|
|
|
|
// Enter generic invite metadata
|
|
|
|
const invitePageMetadata = buildOgMetadata({
|
|
|
|
title: `Join a friend on LBRY`,
|
|
|
|
description: `Join a friend on LBRY, a content wonderland owned by everyone (and no one).`,
|
|
|
|
});
|
|
|
|
return insertToHead(html, invitePageMetadata);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-28 19:00:45 +01:00
|
|
|
if (path.includes(embedPath)) {
|
|
|
|
const claimUri = path.replace(embedPath, '').replace(/:/g, '#');
|
|
|
|
const claim = await getClaimFromChainquery(claimUri);
|
|
|
|
|
|
|
|
if (claim) {
|
2020-01-28 20:45:47 +01:00
|
|
|
const ogMetadata = buildClaimOgMetadata(claimUri, claim);
|
2020-01-28 19:00:45 +01:00
|
|
|
return insertToHead(html, ogMetadata);
|
|
|
|
}
|
|
|
|
|
|
|
|
return insertToHead(html);
|
|
|
|
}
|
|
|
|
|
2020-01-23 21:41:14 +01:00
|
|
|
if (!path.includes('$')) {
|
|
|
|
const claimUri = path.slice(1).replace(/:/g, '#');
|
|
|
|
const claim = await getClaimFromChainquery(claimUri);
|
|
|
|
|
|
|
|
if (claim) {
|
|
|
|
const ogMetadata = buildClaimOgMetadata(claimUri, claim);
|
|
|
|
return insertToHead(html, ogMetadata);
|
|
|
|
}
|
2019-11-07 20:39:22 +01:00
|
|
|
}
|
|
|
|
|
2020-01-23 21:41:14 +01:00
|
|
|
return insertToHead(html);
|
2019-11-07 20:39:22 +01:00
|
|
|
};
|