commit
e46533046f
13 changed files with 158 additions and 80 deletions
|
@ -1,9 +1,11 @@
|
|||
import React from 'react';
|
||||
import { Link } from 'react-router-dom';
|
||||
import createCanonicalLink from '../../../../utils/createCanonicalLink';
|
||||
|
||||
const AssetPreview = ({ defaultThumbnail, claimData: { name, claimId, fileExt, contentType, thumbnail, title } }) => {
|
||||
const embedUrl = `/${claimId}/${name}.${fileExt}`;
|
||||
const showUrl = `/${claimId}/${name}`;
|
||||
const AssetPreview = ({ defaultThumbnail, claimData }) => {
|
||||
const { name, fileExt, contentType, thumbnail, title } = claimData;
|
||||
const showUrl = createCanonicalLink({ asset: { ...claimData }});
|
||||
const embedUrl = `${showUrl}.${fileExt}`;
|
||||
return (
|
||||
<Link to={showUrl} className='asset-preview'>
|
||||
{(() => {
|
||||
|
|
|
@ -1,48 +1,48 @@
|
|||
import React from 'react';
|
||||
import SocialShareLink from '@components/SocialShareLink';
|
||||
|
||||
const AssetShareButtons = ({ host, name, shortId }) => {
|
||||
const AssetShareButtons = ({ assetUrl, name }) => {
|
||||
return (
|
||||
<SocialShareLink >
|
||||
<a
|
||||
className='link--primary'
|
||||
target='_blank'
|
||||
href={`https://twitter.com/intent/tweet?text=${host}/${shortId}/${name}`}
|
||||
href={`https://twitter.com/intent/tweet?text=${assetUrl}`}
|
||||
>
|
||||
twitter
|
||||
</a>
|
||||
<a
|
||||
className='link--primary'
|
||||
target='_blank'
|
||||
href={`https://www.facebook.com/sharer/sharer.php?u=${host}/${shortId}/${name}`}
|
||||
href={`https://www.facebook.com/sharer/sharer.php?u=${assetUrl}`}
|
||||
>
|
||||
facebook
|
||||
</a>
|
||||
<a
|
||||
className='link--primary'
|
||||
target='_blank'
|
||||
href={`https://tumblr.com/widgets/share/tool?canonicalUrl=${host}/${shortId}/${name}`}
|
||||
href={`https://tumblr.com/widgets/share/tool?canonicalUrl=${assetUrl}`}
|
||||
>
|
||||
tumblr
|
||||
</a>
|
||||
<a
|
||||
className='link--primary'
|
||||
target='_blank'
|
||||
href={`https://www.reddit.com/submit?url=${host}/${shortId}/${name}&title=${name}`}
|
||||
href={`https://www.reddit.com/submit?url=${assetUrl}&title=${name}`}
|
||||
>
|
||||
reddit
|
||||
</a>
|
||||
<a
|
||||
className='link--primary'
|
||||
target='_blank'
|
||||
href={`https://sharetomastodon.github.io/?title=${name}&url=${host}/${shortId}/${name}`}
|
||||
href={`https://sharetomastodon.github.io/?title=${name}&url=${assetUrl}`}
|
||||
>
|
||||
mastodon
|
||||
</a>
|
||||
<a
|
||||
className='link--primary'
|
||||
target='_blank'
|
||||
href={`https://share.diasporafoundation.org/?title=${name}&url=${host}/${shortId}/${name}`}
|
||||
href={`https://share.diasporafoundation.org/?title=${name}&url=${assetUrl}`}
|
||||
>
|
||||
diaspora
|
||||
</a>
|
||||
|
|
|
@ -7,18 +7,26 @@ import SpaceBetween from '@components/SpaceBetween';
|
|||
import AssetShareButtons from '@components/AssetShareButtons';
|
||||
import ClickToCopy from '@components/ClickToCopy';
|
||||
|
||||
import siteConfig from '@config/siteConfig.json';
|
||||
const { details: { host } } = siteConfig;
|
||||
import createCanonicalLink from '../../../../utils/createCanonicalLink';
|
||||
|
||||
class AssetInfo extends React.Component {
|
||||
render () {
|
||||
const {
|
||||
asset: {
|
||||
shortId,
|
||||
claimData : {
|
||||
channelName, certificateId, description, name, claimId, fileExt, contentType, thumbnail, host
|
||||
},
|
||||
claimViews,
|
||||
}
|
||||
} = this.props;
|
||||
const { asset } = this.props;
|
||||
const { claimViews, claimData: { channelName, channelShortId, description, name, fileExt, contentType, thumbnail, host } } = asset;
|
||||
|
||||
const canonicalUrl = createCanonicalLink({ asset: { ...asset.claimData, shortId: asset.shortId }});
|
||||
const assetCanonicalUrl = `${host}${canonicalUrl}`;
|
||||
|
||||
let channelCanonicalUrl;
|
||||
if (channelName) {
|
||||
const channel = {
|
||||
name: channelName,
|
||||
shortId: channelShortId,
|
||||
};
|
||||
channelCanonicalUrl = `${createCanonicalLink({channel})}`;
|
||||
}
|
||||
return (
|
||||
<div>
|
||||
{channelName && (
|
||||
|
@ -29,7 +37,7 @@ class AssetInfo extends React.Component {
|
|||
}
|
||||
content={
|
||||
<span className='text'>
|
||||
<Link to={`/${channelName}:${certificateId}`}>{channelName}</Link>
|
||||
<Link to={channelCanonicalUrl}>{channelName}</Link>
|
||||
</span>
|
||||
}
|
||||
/>
|
||||
|
@ -58,9 +66,8 @@ class AssetInfo extends React.Component {
|
|||
}
|
||||
content={
|
||||
<AssetShareButtons
|
||||
host={host}
|
||||
name={name}
|
||||
shortId={shortId}
|
||||
assetUrl={assetCanonicalUrl}
|
||||
/>
|
||||
}
|
||||
/>
|
||||
|
@ -74,7 +81,7 @@ class AssetInfo extends React.Component {
|
|||
content={
|
||||
<ClickToCopy
|
||||
id={'short-link'}
|
||||
value={`${host}/${shortId}/${name}`}
|
||||
value={assetCanonicalUrl}
|
||||
/>
|
||||
}
|
||||
/>
|
||||
|
@ -90,12 +97,12 @@ class AssetInfo extends React.Component {
|
|||
{(contentType === 'video/mp4') ? (
|
||||
<ClickToCopy
|
||||
id={'embed-text-video'}
|
||||
value={`<iframe src="${host}/video-embed/${name}/${claimId}" allowfullscreen="true" style="border:0" /></iframe>`}
|
||||
value={`<iframe src="${host}/video-embed${canonicalUrl}" allowfullscreen="true" style="border:0" /></iframe>`}
|
||||
/>
|
||||
) : (
|
||||
<ClickToCopy
|
||||
id={'embed-text-image'}
|
||||
value={`<img src="${host}/${claimId}/${name}.${fileExt}"/>`}
|
||||
value={`<img src="${assetCanonicalUrl}.${fileExt}"/>`}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
|
@ -107,13 +114,13 @@ class AssetInfo extends React.Component {
|
|||
<SpaceBetween>
|
||||
<a
|
||||
className='link--primary'
|
||||
href={`${host}/${claimId}/${name}.${fileExt}`}
|
||||
href={`${assetCanonicalUrl}.${fileExt}`}
|
||||
>
|
||||
Direct Link
|
||||
</a>
|
||||
<a
|
||||
className={'link--primary'}
|
||||
href={`${host}/${claimId}/${name}.${fileExt}`}
|
||||
href={`${assetCanonicalUrl}.${fileExt}`}
|
||||
download={name}
|
||||
>
|
||||
Download
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import React from 'react';
|
||||
import { NavLink, withRouter } from 'react-router-dom';
|
||||
import NavBarChannelOptionsDropdown from '@components/NavBarChannelOptionsDropdown';
|
||||
import createCanonicalLink from '../../../../utils/createCanonicalLink';
|
||||
|
||||
const VIEW = 'VIEW';
|
||||
const LOGOUT = 'LOGOUT';
|
||||
|
@ -14,6 +15,7 @@ class NavigationLinks extends React.Component {
|
|||
this.props.checkForLoggedInChannel();
|
||||
}
|
||||
handleSelection (event) {
|
||||
const { history, channelName: name, channelShortId: shortId } = this.props;
|
||||
const value = event.target.selectedOptions[0].value;
|
||||
switch (value) {
|
||||
case LOGOUT:
|
||||
|
@ -21,7 +23,7 @@ class NavigationLinks extends React.Component {
|
|||
break;
|
||||
case VIEW:
|
||||
// redirect to channel page
|
||||
this.props.history.push(`/${this.props.channelName}:${this.props.channelLongId}`);
|
||||
history.push(createCanonicalLink({ channel: { name, shortId } }));
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
|
|
@ -2,12 +2,12 @@ import React from 'react';
|
|||
import Helmet from 'react-helmet';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
import siteConfig from '@config/siteConfig.json';
|
||||
import createPageTitle from '../../utils/createPageTitle';
|
||||
import createMetaTags from '../../utils/createMetaTags';
|
||||
import oEmbed from '../../utils/oEmbed.js';
|
||||
import createCanonicalLink from '../../utils/createCanonicalLink';
|
||||
import createCanonicalLink from '../../../../utils/createCanonicalLink';
|
||||
|
||||
import siteConfig from '@config/siteConfig.json';
|
||||
const { details: { host } } = siteConfig;
|
||||
|
||||
class SEO extends React.Component {
|
||||
|
@ -21,7 +21,11 @@ class SEO extends React.Component {
|
|||
asset,
|
||||
channel,
|
||||
});
|
||||
const cannonicalLink = createCanonicalLink(asset, channel, pageUri);
|
||||
const canonicalLink = `${host}${createCanonicalLink({
|
||||
asset: asset ? { ...asset.claimData, shortId: asset.shortId } : undefined,
|
||||
channel,
|
||||
page: pageUri,
|
||||
})}`;
|
||||
// render results
|
||||
return (
|
||||
<Helmet
|
||||
|
@ -30,9 +34,9 @@ class SEO extends React.Component {
|
|||
link={[
|
||||
{
|
||||
rel : 'canonical',
|
||||
href: cannonicalLink,
|
||||
href: canonicalLink,
|
||||
},
|
||||
oEmbed.json(host, cannonicalLink),
|
||||
oEmbed.json(host, canonicalLink),
|
||||
]}
|
||||
/>
|
||||
);
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import siteConfig from '@config/siteConfig.json';
|
||||
import determineContentTypeFromExtension from './determineContentTypeFromExtension';
|
||||
import createMetaTagsArray from './createMetaTagsArray';
|
||||
import createCanonicalLink from '../../../utils/createCanonicalLink';
|
||||
|
||||
const {
|
||||
details: {
|
||||
|
@ -37,8 +38,10 @@ const determineMediaType = (contentType) => {
|
|||
const createAssetMetaTags = (asset) => {
|
||||
const { claimData } = asset;
|
||||
const { contentType } = claimData;
|
||||
const showUrl = `${host}/${claimData.claimId}/${claimData.name}`;
|
||||
const serveUrl = `${host}/${claimData.claimId}/${claimData.name}.${claimData.fileExt}`;
|
||||
const canonicalLink = createCanonicalLink({ asset: { ...asset.claimData, shortId: asset.shortId }});
|
||||
const showUrl = `${host}${canonicalLink}`;
|
||||
const serveUrl = `${showUrl}.${claimData.fileExt}`;
|
||||
|
||||
const ogTitle = claimData.title || claimData.name;
|
||||
const ogDescription = claimData.description || defaultDescription;
|
||||
const ogThumbnailContentType = determineContentTypeFromExtension(claimData.thumbnail);
|
||||
|
@ -55,7 +58,7 @@ const createAssetMetaTags = (asset) => {
|
|||
'fb:app_id' : '1371961932852223',
|
||||
};
|
||||
if (determineMediaType(contentType) === VIDEO) {
|
||||
const videoEmbedUrl = `${host}/video-embed/${claimData.name}/${claimData.claimId}`;
|
||||
const videoEmbedUrl = `${host}/video-embed${canonicalLink}`;
|
||||
// card type tags
|
||||
metaTags['og:type'] = 'video.other';
|
||||
metaTags['twitter:card'] = 'player';
|
||||
|
|
|
@ -1,39 +0,0 @@
|
|||
import siteConfig from '@config/siteConfig.json';
|
||||
|
||||
const {
|
||||
details: {
|
||||
host,
|
||||
},
|
||||
} = siteConfig;
|
||||
|
||||
const createBasicCanonicalLink = (page) => {
|
||||
return `${host}/${page}`;
|
||||
};
|
||||
|
||||
const createAssetCanonicalLink = (asset) => {
|
||||
let channelName, certificateId, name, claimId;
|
||||
if (asset.claimData) {
|
||||
({ channelName, certificateId, name, claimId } = asset.claimData);
|
||||
}
|
||||
if (channelName) {
|
||||
return `${host}/${channelName}:${certificateId}/${name}`;
|
||||
}
|
||||
return `${host}/${claimId}/${name}`;
|
||||
};
|
||||
|
||||
const createChannelCanonicalLink = (channel) => {
|
||||
const { name, longId } = channel;
|
||||
return `${host}/${name}:${longId}`;
|
||||
};
|
||||
|
||||
const createCanonicalLink = (asset, channel, page) => {
|
||||
if (asset) {
|
||||
return createAssetCanonicalLink(asset);
|
||||
}
|
||||
if (channel) {
|
||||
return createChannelCanonicalLink(channel);
|
||||
}
|
||||
return createBasicCanonicalLink(page);
|
||||
};
|
||||
|
||||
export default createCanonicalLink;
|
|
@ -1,6 +1,7 @@
|
|||
import siteConfig from '@config/siteConfig.json';
|
||||
import determineContentTypeFromExtension from './determineContentTypeFromExtension';
|
||||
import createMetaTagsArray from './createMetaTagsArray';
|
||||
import createCanonicalLink from '../../../utils/createCanonicalLink';
|
||||
|
||||
const {
|
||||
details: {
|
||||
|
@ -14,7 +15,7 @@ const {
|
|||
} = siteConfig;
|
||||
|
||||
export const createChannelMetaTags = (channel) => {
|
||||
const { name, longId } = channel;
|
||||
const { name, shortId } = channel;
|
||||
const metaTags = {
|
||||
// page detail tags
|
||||
'og:title' : `${name} on ${siteTitle}`,
|
||||
|
@ -22,7 +23,7 @@ export const createChannelMetaTags = (channel) => {
|
|||
'og:description' : `${name}, a channel on ${siteTitle}`,
|
||||
'twitter:description': `${name}, a channel on ${siteTitle}`,
|
||||
// url
|
||||
'og:url' : `${host}/${name}:${longId}`,
|
||||
'og:url' : `${host}/${createCanonicalLink({ channel })}`,
|
||||
// site info
|
||||
'og:site_name' : siteTitle,
|
||||
'twitter:site' : twitter,
|
||||
|
|
|
@ -69,12 +69,19 @@ const parseLogoConfigParam = async (rawConfig) => {
|
|||
}
|
||||
|
||||
const sendVideoEmbedPage = async ({ params }, res) => {
|
||||
const {
|
||||
let {
|
||||
claimId,
|
||||
config,
|
||||
name,
|
||||
} = params;
|
||||
|
||||
// if channel then swap name and claimId for order
|
||||
if (name[0] === '@' && name.includes(':')) {
|
||||
const temp = name;
|
||||
name = claimId;
|
||||
claimId = temp;
|
||||
}
|
||||
|
||||
const logoConfig = await parseLogoConfigParam(config);
|
||||
|
||||
// test setting response headers
|
||||
|
|
|
@ -34,6 +34,35 @@ function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj;
|
|||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty(target, key, source[key]); }); } return target; }
|
||||
|
||||
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
||||
|
||||
var createCanonicalLink = require('../../../utils/createCanonicalLink');
|
||||
|
||||
var getCanonicalUrlFromShow = function getCanonicalUrlFromShow(show) {
|
||||
var requestId = show.requestList[show.request.id];
|
||||
var requestType = show.request.type;
|
||||
|
||||
switch (requestType) {
|
||||
case 'ASSET_DETAILS':
|
||||
var asset = show.assetList[requestId.key];
|
||||
return createCanonicalLink({
|
||||
asset: _objectSpread({}, asset.claimData, {
|
||||
shortId: asset.shortId
|
||||
})
|
||||
});
|
||||
|
||||
case 'CHANNEL':
|
||||
return createCanonicalLink({
|
||||
channel: show.channelList[requestId.key]
|
||||
});
|
||||
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
};
|
||||
|
||||
var returnSagaWithParams = function returnSagaWithParams(saga, params) {
|
||||
return (
|
||||
/*#__PURE__*/
|
||||
|
@ -115,6 +144,14 @@ module.exports = function (req, res) {
|
|||
var boundSaga = returnSagaWithParams(saga, boundAction); // run the saga middleware with the saga call
|
||||
|
||||
sagaMiddleware.run(boundSaga).done.then(function () {
|
||||
// redirect if request does not use canonical url
|
||||
var canonicalUrl = getCanonicalUrlFromShow(store.getState().show);
|
||||
|
||||
if (canonicalUrl && canonicalUrl !== req.originalUrl) {
|
||||
console.log("redirecting ".concat(req.originalUrl, " to ").concat(canonicalUrl));
|
||||
res.redirect(canonicalUrl);
|
||||
}
|
||||
|
||||
return renderPage(store);
|
||||
});
|
||||
} else {
|
||||
|
|
|
@ -15,12 +15,27 @@ import App from '@app';
|
|||
import Sagas from '@sagas';
|
||||
import Actions from '@actions';
|
||||
|
||||
const createCanonicalLink = require('../../../utils/createCanonicalLink');
|
||||
|
||||
const getCanonicalUrlFromShow = show => {
|
||||
const requestId = show.requestList[show.request.id];
|
||||
const requestType = show.request.type;
|
||||
switch (requestType) {
|
||||
case 'ASSET_DETAILS':
|
||||
const asset = show.assetList[requestId.key];
|
||||
return createCanonicalLink({ asset: { ...asset.claimData, shortId: asset.shortId }});
|
||||
case 'CHANNEL':
|
||||
return createCanonicalLink({ channel: show.channelList[requestId.key] });
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
};
|
||||
|
||||
const returnSagaWithParams = (saga, params) => {
|
||||
return function * () {
|
||||
yield call(saga, params);
|
||||
};
|
||||
};
|
||||
|
||||
module.exports = (req, res) => {
|
||||
let context = {};
|
||||
|
||||
|
@ -90,7 +105,15 @@ module.exports = (req, res) => {
|
|||
sagaMiddleware
|
||||
.run(boundSaga)
|
||||
.done
|
||||
.then(() => renderPage(store) );
|
||||
.then(() => {
|
||||
// redirect if request does not use canonical url
|
||||
const canonicalUrl = getCanonicalUrlFromShow(store.getState().show);
|
||||
if (canonicalUrl && canonicalUrl !== req.originalUrl) {
|
||||
console.log(`redirecting ${req.originalUrl} to ${canonicalUrl}`);
|
||||
res.redirect(canonicalUrl);
|
||||
}
|
||||
return renderPage(store)
|
||||
});
|
||||
} else {
|
||||
const store = createStore(Reducers);
|
||||
renderPage(store);
|
||||
|
|
|
@ -10,11 +10,17 @@ module.exports = async (data) => {
|
|||
channelName = await chainquery.claim.queries.getClaimChannelName(certificateId).catch(()=>{});
|
||||
}
|
||||
|
||||
let channelShortId = null;
|
||||
if (certificateId && channelName) {
|
||||
channelShortId = await chainquery.claim.queries.getShortClaimIdFromLongClaimId(certificateId, channelName).catch(() => null);
|
||||
}
|
||||
|
||||
return ({
|
||||
name: data.name,
|
||||
title: data.title,
|
||||
certificateId,
|
||||
channelName,
|
||||
channelShortId,
|
||||
contentType: data.content_type || data.contentType,
|
||||
claimId: data.claim_id || data.claimId,
|
||||
fileExt: data.generated_extension || data.fileExt,
|
||||
|
|
25
utils/createCanonicalLink.js
Normal file
25
utils/createCanonicalLink.js
Normal file
|
@ -0,0 +1,25 @@
|
|||
const createBasicCanonicalLink = (page) => {
|
||||
return `/${page}`;
|
||||
};
|
||||
|
||||
const createAssetCanonicalLink = (asset) => {
|
||||
const { channelName, channelShortId, name, claimId, shortId } = asset;
|
||||
return channelName ? `/${channelName}:${channelShortId}/${name}` : `/${shortId || claimId}/${name}`;
|
||||
};
|
||||
|
||||
const createChannelCanonicalLink = (channel) => {
|
||||
const { name, shortId } = channel;
|
||||
return `/${name}:${shortId}`;
|
||||
};
|
||||
|
||||
const createCanonicalLink = ({asset, channel, page}) => {
|
||||
if (asset) {
|
||||
return createAssetCanonicalLink(asset);
|
||||
}
|
||||
if (channel) {
|
||||
return createChannelCanonicalLink(channel);
|
||||
}
|
||||
return createBasicCanonicalLink(page);
|
||||
};
|
||||
|
||||
module.exports = createCanonicalLink;
|
Loading…
Reference in a new issue