2018-03-26 23:32:43 +02:00
|
|
|
// @flow
|
2017-12-21 22:08:54 +01:00
|
|
|
import React from 'react';
|
2019-08-27 00:42:16 +02:00
|
|
|
import { parseURI } from 'lbry-redux';
|
|
|
|
import { Redirect } from 'react-router';
|
2018-03-26 23:32:43 +02:00
|
|
|
import BusyIndicator from 'component/common/busy-indicator';
|
2017-12-21 22:08:54 +01:00
|
|
|
import ChannelPage from 'page/channel';
|
|
|
|
import FilePage from 'page/file';
|
2018-03-26 23:32:43 +02:00
|
|
|
import Page from 'component/page';
|
2018-04-24 20:17:11 +02:00
|
|
|
import Button from 'component/button';
|
2017-05-05 08:13:06 +02:00
|
|
|
|
2018-03-26 23:32:43 +02:00
|
|
|
type Props = {
|
|
|
|
isResolvingUri: boolean,
|
|
|
|
resolveUri: string => void,
|
|
|
|
uri: string,
|
2019-04-24 16:02:08 +02:00
|
|
|
claim: StreamClaim,
|
2019-03-28 17:53:13 +01:00
|
|
|
location: UrlLocation,
|
2018-04-24 20:17:11 +02:00
|
|
|
blackListedOutpoints: Array<{
|
|
|
|
txid: string,
|
|
|
|
nout: number,
|
|
|
|
}>,
|
2018-03-26 23:32:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class ShowPage extends React.PureComponent<Props> {
|
|
|
|
componentDidMount() {
|
2017-10-12 16:05:18 +02:00
|
|
|
const { isResolvingUri, resolveUri, uri } = this.props;
|
2017-05-12 01:28:43 +02:00
|
|
|
|
2017-10-12 16:05:18 +02:00
|
|
|
if (!isResolvingUri) resolveUri(uri);
|
2017-05-12 01:28:43 +02:00
|
|
|
}
|
|
|
|
|
2019-05-08 03:29:30 +02:00
|
|
|
componentDidUpdate() {
|
2019-10-03 20:59:40 +02:00
|
|
|
const { isResolvingUri, resolveUri, claim, uri } = this.props;
|
|
|
|
if (!isResolvingUri && uri && claim === undefined) {
|
2017-10-12 16:05:18 +02:00
|
|
|
resolveUri(uri);
|
|
|
|
}
|
2017-05-10 05:06:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2019-03-28 17:53:13 +01:00
|
|
|
const { claim, isResolvingUri, uri, blackListedOutpoints, location } = this.props;
|
2019-08-27 00:42:16 +02:00
|
|
|
const { channelName, channelClaimId, streamName, streamClaimId } = parseURI(uri);
|
2019-08-29 03:39:21 +02:00
|
|
|
const signingChannel = claim && claim.signing_channel;
|
2019-08-27 00:42:16 +02:00
|
|
|
|
|
|
|
// @routinghax
|
|
|
|
if (channelName && !channelClaimId && streamName && !streamClaimId && !isResolvingUri && !claim) {
|
|
|
|
// Kinda hacky, but this is probably an old url
|
|
|
|
// Just redirect to the vanity channel
|
|
|
|
return <Redirect to={`/@${channelName}`} />;
|
|
|
|
}
|
|
|
|
|
2017-12-21 22:08:54 +01:00
|
|
|
let innerContent = '';
|
2017-05-05 08:13:06 +02:00
|
|
|
|
2019-03-13 06:59:07 +01:00
|
|
|
if (!claim || (claim && !claim.name)) {
|
2019-03-04 17:57:07 +01:00
|
|
|
if (claim && !claim.name) {
|
|
|
|
// While testing the normalization changes, Brannon found that `name` was missing sometimes
|
|
|
|
// This shouldn't happen, so hopefully this helps track it down
|
2019-07-21 23:31:22 +02:00
|
|
|
console.error('No name for associated claim: ', claim.claim_id); // eslint-disable-line no-console
|
2019-03-04 17:57:07 +01:00
|
|
|
}
|
|
|
|
|
2017-06-06 23:19:12 +02:00
|
|
|
innerContent = (
|
2019-06-11 20:10:58 +02:00
|
|
|
<Page>
|
2018-12-19 06:44:53 +01:00
|
|
|
{isResolvingUri && <BusyIndicator message={__('Loading decentralized data...')} />}
|
2019-05-07 23:38:29 +02:00
|
|
|
{!isResolvingUri && <span className="empty">{__("There's nothing available at this location.")}</span>}
|
2018-03-26 23:32:43 +02:00
|
|
|
</Page>
|
2017-06-06 23:19:12 +02:00
|
|
|
);
|
2019-03-04 17:57:07 +01:00
|
|
|
} else if (claim.name.length && claim.name[0] === '@') {
|
2019-03-28 17:53:13 +01:00
|
|
|
innerContent = <ChannelPage uri={uri} location={location} />;
|
2019-02-15 02:52:10 +01:00
|
|
|
} else if (claim && blackListedOutpoints) {
|
2018-04-24 20:17:11 +02:00
|
|
|
let isClaimBlackListed = false;
|
|
|
|
|
2019-08-29 03:39:21 +02:00
|
|
|
isClaimBlackListed = blackListedOutpoints.some(
|
|
|
|
outpoint =>
|
|
|
|
(signingChannel && outpoint.txid === signingChannel.txid && outpoint.nout === signingChannel.nout) ||
|
|
|
|
(outpoint.txid === claim.txid && outpoint.nout === claim.nout)
|
|
|
|
);
|
2018-04-24 20:17:11 +02:00
|
|
|
|
|
|
|
if (isClaimBlackListed) {
|
|
|
|
innerContent = (
|
|
|
|
<Page>
|
|
|
|
<section className="card card--section">
|
|
|
|
<div className="card__title">{uri}</div>
|
2019-07-21 23:31:22 +02:00
|
|
|
<p>
|
|
|
|
{__(
|
|
|
|
'In response to a complaint we received under the US Digital Millennium Copyright Act, we have blocked access to this content from our applications.'
|
|
|
|
)}
|
|
|
|
</p>
|
2018-04-24 20:17:11 +02:00
|
|
|
<div className="card__actions">
|
2019-03-20 22:43:00 +01:00
|
|
|
<Button button="link" href="https://lbry.com/faq/dmca" label={__('Read More')} />
|
2018-04-24 20:17:11 +02:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</Page>
|
|
|
|
);
|
|
|
|
} else {
|
2019-03-28 17:53:13 +01:00
|
|
|
innerContent = <FilePage uri={uri} location={location} />;
|
2018-04-24 20:17:11 +02:00
|
|
|
}
|
2017-05-05 08:13:06 +02:00
|
|
|
}
|
|
|
|
|
2018-03-26 23:32:43 +02:00
|
|
|
return innerContent;
|
2017-05-10 05:06:48 +02:00
|
|
|
}
|
2017-05-05 08:13:06 +02:00
|
|
|
}
|
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
export default ShowPage;
|