lbry-desktop/src/renderer/redux/actions/content.js

531 lines
14 KiB
JavaScript
Raw Normal View History

import * as ACTIONS from 'constants/action_types';
import * as MODALS from 'constants/modal_types';
import * as SETTINGS from 'constants/settings';
import { ipcRenderer } from 'electron';
import Lbry from 'lbry';
import Lbryio from 'lbryio';
import { normalizeURI, buildURI } from 'lbryURI';
import { doAlertError, doOpenModal } from 'redux/actions/app';
import { doClaimEligiblePurchaseRewards } from 'redux/actions/rewards';
import { setSubscriptionLatest } from 'redux/actions/subscriptions';
import { selectBadgeNumber } from 'redux/selectors/app';
2017-12-22 02:21:22 +01:00
import { selectMyClaimsRaw } from 'redux/selectors/claims';
import { selectResolvingUris } from 'redux/selectors/content';
import { makeSelectCostInfoForUri } from 'redux/selectors/cost_info';
2017-04-28 17:14:44 +02:00
import {
2017-09-08 05:15:05 +02:00
makeSelectFileInfoForUri,
2017-07-21 10:02:29 +02:00
selectDownloadingByOutpoint,
selectTotalDownloadProgress,
} from 'redux/selectors/file_info';
import { makeSelectClientSetting } from 'redux/selectors/settings';
import { selectBalance } from 'redux/selectors/wallet';
import batchActions from 'util/batchActions';
import setBadge from 'util/setBadge';
import setProgressBar from 'util/setProgressBar';
const DOWNLOAD_POLL_INTERVAL = 250;
export function doResolveUris(uris) {
return (dispatch, getState) => {
const normalizedUris = uris.map(normalizeURI);
2017-06-06 23:19:12 +02:00
const state = getState();
2017-05-15 18:34:33 +02:00
// Filter out URIs that are already resolving
const resolvingUris = selectResolvingUris(state);
const urisToResolve = normalizedUris.filter(uri => !resolvingUris.includes(uri));
2017-05-15 18:34:33 +02:00
if (urisToResolve.length === 0) {
return;
2017-05-15 18:34:33 +02:00
}
dispatch({
type: ACTIONS.RESOLVE_URIS_STARTED,
data: { uris: normalizedUris },
});
2017-12-13 22:36:30 +01:00
const resolveInfo = {};
Lbry.resolve({ uris: urisToResolve }).then(result => {
Object.entries(result).forEach(([uri, uriResolveInfo]) => {
const fallbackResolveInfo = {
claim: null,
claimsInChannel: null,
certificate: null,
};
const { claim, certificate, claims_in_channel: claimsInChannel } =
uriResolveInfo && !uriResolveInfo.error ? uriResolveInfo : fallbackResolveInfo;
resolveInfo[uri] = { claim, certificate, claimsInChannel };
});
dispatch({
type: ACTIONS.RESOLVE_URIS_COMPLETED,
data: { resolveInfo },
});
});
};
}
export function doResolveUri(uri) {
return doResolveUris([uri]);
}
2017-05-04 05:44:08 +02:00
export function doFetchFeaturedUris() {
return dispatch => {
2017-04-23 11:56:50 +02:00
dispatch({
type: ACTIONS.FETCH_FEATURED_CONTENT_STARTED,
2017-06-06 23:19:12 +02:00
});
2017-04-23 11:56:50 +02:00
2017-11-07 18:43:31 +01:00
const success = ({ Uris }) => {
let urisToResolve = [];
Object.keys(Uris).forEach(category => {
2017-11-07 18:43:31 +01:00
urisToResolve = [...urisToResolve, ...Uris[category]];
});
2017-05-04 05:44:08 +02:00
const actions = [
doResolveUris(urisToResolve),
{
type: ACTIONS.FETCH_FEATURED_CONTENT_COMPLETED,
data: {
2017-11-07 18:43:31 +01:00
uris: Uris,
success: true,
},
2017-06-06 23:19:12 +02:00
},
];
2017-06-08 07:10:58 +02:00
dispatch(batchActions(...actions));
2017-06-06 23:19:12 +02:00
};
2017-04-23 11:56:50 +02:00
const failure = () => {
2017-05-04 05:44:08 +02:00
dispatch({
type: ACTIONS.FETCH_FEATURED_CONTENT_COMPLETED,
2017-05-04 05:44:08 +02:00
data: {
2017-06-06 23:19:12 +02:00
uris: {},
},
});
};
Lbryio.call('file', 'list_homepage').then(success, failure);
2017-06-06 23:19:12 +02:00
};
2017-04-23 11:56:50 +02:00
}
2017-07-30 00:56:08 +02:00
export function doFetchRewardedContent() {
return dispatch => {
const success = nameToClaimId => {
dispatch({
type: ACTIONS.FETCH_REWARD_CONTENT_COMPLETED,
data: {
claimIds: Object.values(nameToClaimId),
success: true,
},
});
};
const failure = () => {
dispatch({
type: ACTIONS.FETCH_REWARD_CONTENT_COMPLETED,
data: {
claimIds: [],
success: false,
},
});
};
Lbryio.call('reward', 'list_featured').then(success, failure);
};
}
export function doUpdateLoadStatus(uri, outpoint) {
return (dispatch, getState) => {
Lbry.file_list({
outpoint,
full_status: true,
}).then(([fileInfo]) => {
if (!fileInfo || fileInfo.written_bytes === 0) {
// download hasn't started yet
setTimeout(() => {
dispatch(doUpdateLoadStatus(uri, outpoint));
}, DOWNLOAD_POLL_INTERVAL);
} else if (fileInfo.completed) {
// TODO this isn't going to get called if they reload the client before
// the download finished
dispatch({
type: ACTIONS.DOWNLOADING_COMPLETED,
data: {
uri,
outpoint,
fileInfo,
},
});
const badgeNumber = selectBadgeNumber(getState());
setBadge(badgeNumber === 0 ? '' : `${badgeNumber}`);
const totalProgress = selectTotalDownloadProgress(getState());
setProgressBar(totalProgress);
const notif = new window.Notification('LBRY Download Complete', {
body: fileInfo.metadata.stream.metadata.title,
silent: false,
});
notif.onclick = () => {
ipcRenderer.send('focusWindow', 'main');
};
} else {
// ready to play
const { total_bytes: totalBytes, written_bytes: writtenBytes } = fileInfo;
const progress = writtenBytes / totalBytes * 100;
2017-06-06 23:19:12 +02:00
dispatch({
type: ACTIONS.DOWNLOADING_PROGRESSED,
data: {
uri,
outpoint,
fileInfo,
progress,
},
});
const totalProgress = selectTotalDownloadProgress(getState());
setProgressBar(totalProgress);
setTimeout(() => {
dispatch(doUpdateLoadStatus(uri, outpoint));
}, DOWNLOAD_POLL_INTERVAL);
}
});
2017-06-06 23:19:12 +02:00
};
}
export function doStartDownload(uri, outpoint) {
return (dispatch, getState) => {
2017-06-06 23:19:12 +02:00
const state = getState();
2017-08-08 11:36:14 +02:00
if (!outpoint) {
throw new Error('outpoint is required to begin a download');
2017-08-08 11:36:14 +02:00
}
2017-07-30 21:20:36 +02:00
const { downloadingByOutpoint = {} } = state.fileInfo;
if (downloadingByOutpoint[outpoint]) return;
Lbry.file_list({ outpoint, full_status: true }).then(([fileInfo]) => {
dispatch({
type: ACTIONS.DOWNLOADING_STARTED,
data: {
uri,
outpoint,
fileInfo,
},
2017-06-06 23:19:12 +02:00
});
dispatch(doUpdateLoadStatus(uri, outpoint));
});
};
}
export function doDownloadFile(uri, streamInfo) {
return dispatch => {
dispatch(doStartDownload(uri, streamInfo.outpoint));
Lbryio.call('file', 'view', {
uri,
outpoint: streamInfo.outpoint,
claim_id: streamInfo.claim_id,
}).catch(() => {});
2017-05-26 20:19:41 +02:00
2017-06-08 23:15:34 +02:00
dispatch(doClaimEligiblePurchaseRewards());
2017-06-06 23:19:12 +02:00
};
}
export function doSetPlayingUri(uri) {
return dispatch => {
dispatch({
type: ACTIONS.SET_PLAYING_URI,
data: { uri },
});
};
}
export function doLoadVideo(uri) {
return dispatch => {
dispatch({
type: ACTIONS.LOADING_VIDEO_STARTED,
data: {
2017-06-06 23:19:12 +02:00
uri,
},
});
Lbry.get({ uri })
2017-08-08 11:36:14 +02:00
.then(streamInfo => {
const timeout =
streamInfo === null || typeof streamInfo !== 'object' || streamInfo.error === 'Timeout';
2017-08-08 11:36:14 +02:00
if (timeout) {
2017-10-01 07:39:00 +02:00
dispatch(doSetPlayingUri(null));
2017-08-08 11:36:14 +02:00
dispatch({
type: ACTIONS.LOADING_VIDEO_FAILED,
2017-08-08 11:36:14 +02:00
data: { uri },
});
2017-05-02 09:07:13 +02:00
dispatch(doOpenModal(MODALS.FILE_TIMEOUT, { uri }));
2017-08-08 11:36:14 +02:00
} else {
dispatch(doDownloadFile(uri, streamInfo));
}
})
.catch(() => {
2017-10-01 07:39:00 +02:00
dispatch(doSetPlayingUri(null));
dispatch({
type: ACTIONS.LOADING_VIDEO_FAILED,
2017-06-06 23:19:12 +02:00
data: { uri },
});
dispatch(
doAlertError(
2018-01-06 00:57:24 +01:00
`Failed to download ${
uri
}, please try again. If this problem persists, visit https://lbry.io/faq/support for support.`
)
);
2017-07-30 21:57:42 +02:00
});
2017-06-06 23:19:12 +02:00
};
}
export function doPurchaseUri(uri, specificCostInfo) {
return (dispatch, getState) => {
2017-06-06 23:19:12 +02:00
const state = getState();
const balance = selectBalance(state);
2017-09-08 05:15:05 +02:00
const fileInfo = makeSelectFileInfoForUri(uri)(state);
2017-07-21 10:02:29 +02:00
const downloadingByOutpoint = selectDownloadingByOutpoint(state);
const alreadyDownloading = fileInfo && !!downloadingByOutpoint[fileInfo.outpoint];
function attemptPlay(cost, instantPurchaseMax = null) {
2017-09-29 02:32:59 +02:00
if (cost > 0 && (!instantPurchaseMax || cost > instantPurchaseMax)) {
dispatch(doOpenModal(MODALS.AFFIRM_PURCHASE, { uri }));
} else {
dispatch(doLoadVideo(uri));
}
}
// we already fully downloaded the file.
if (fileInfo && fileInfo.completed) {
// If written_bytes is false that means the user has deleted/moved the
// file manually on their file system, so we need to dispatch a
// doLoadVideo action to reconstruct the file from the blobs
if (!fileInfo.written_bytes) dispatch(doLoadVideo(uri));
Promise.resolve();
return;
}
// we are already downloading the file
if (alreadyDownloading) {
Promise.resolve();
return;
}
const costInfo = makeSelectCostInfoForUri(uri)(state) || specificCostInfo;
const { cost } = costInfo;
2017-04-27 09:05:41 +02:00
if (cost > balance) {
dispatch(doSetPlayingUri(null));
dispatch(doOpenModal(MODALS.INSUFFICIENT_CREDITS));
Promise.resolve();
return;
}
if (cost === 0 || !makeSelectClientSetting(SETTINGS.INSTANT_PURCHASE_ENABLED)(state)) {
attemptPlay(cost);
} else {
const instantPurchaseMax = makeSelectClientSetting(SETTINGS.INSTANT_PURCHASE_MAX)(state);
if (instantPurchaseMax.currency === 'LBC') {
attemptPlay(cost, instantPurchaseMax.amount);
} else {
// Need to convert currency of instant purchase maximum before trying to play
Lbryio.getExchangeRates().then(({ LBC_USD }) => {
attemptPlay(cost, instantPurchaseMax.amount / LBC_USD);
});
}
}
2017-06-06 23:19:12 +02:00
};
}
2017-05-13 00:50:51 +02:00
2017-07-17 08:06:04 +02:00
export function doFetchClaimsByChannel(uri, page) {
return dispatch => {
2017-05-13 00:50:51 +02:00
dispatch({
type: ACTIONS.FETCH_CHANNEL_CLAIMS_STARTED,
2017-07-17 08:06:04 +02:00
data: { uri, page },
2017-06-06 23:19:12 +02:00
});
2017-05-13 00:50:51 +02:00
Lbry.claim_list_by_channel({ uri, page: page || 1 }).then(result => {
2017-09-30 01:15:14 +02:00
const claimResult = result[uri] || {};
const { claims_in_channel: claimsInChannel, returned_page: returnedPage } = claimResult;
2017-05-13 00:50:51 +02:00
if(claimsInChannel && claimsInChannel.length) {
let latest = claimsInChannel[0];
dispatch(setSubscriptionLatest({
channelName: latest.channel_name,
uri: `${latest.channel_name}#${latest.value.publisherSignature.certificateId}`
}, `${latest.name}#${latest.claim_id}`));
}
2017-05-13 00:50:51 +02:00
dispatch({
type: ACTIONS.FETCH_CHANNEL_CLAIMS_COMPLETED,
2017-05-13 00:50:51 +02:00
data: {
uri,
claims: claimsInChannel || [],
page: returnedPage || undefined,
2017-06-06 23:19:12 +02:00
},
});
});
};
}
2017-08-24 23:12:23 +02:00
export function doFetchClaimCountByChannel(uri) {
return dispatch => {
2017-08-24 23:12:23 +02:00
dispatch({
type: ACTIONS.FETCH_CHANNEL_CLAIM_COUNT_STARTED,
2017-08-24 23:12:23 +02:00
data: { uri },
});
Lbry.claim_list_by_channel({ uri }).then(result => {
const claimResult = result[uri];
const totalClaims = claimResult ? claimResult.claims_in_channel : 0;
2017-08-24 23:12:23 +02:00
dispatch({
type: ACTIONS.FETCH_CHANNEL_CLAIM_COUNT_COMPLETED,
2017-08-24 23:12:23 +02:00
data: {
uri,
totalClaims,
},
});
});
};
}
export function doFetchClaimListMine() {
return dispatch => {
dispatch({
type: ACTIONS.FETCH_CLAIM_LIST_MINE_STARTED,
2017-06-06 23:19:12 +02:00
});
Lbry.claim_list_mine().then(claims => {
2017-05-13 00:50:51 +02:00
dispatch({
type: ACTIONS.FETCH_CLAIM_LIST_MINE_COMPLETED,
2017-05-13 00:50:51 +02:00
data: {
2017-06-06 23:19:12 +02:00
claims,
},
});
});
};
2017-06-06 06:21:55 +02:00
}
2017-07-10 16:49:12 +02:00
export function doPlayUri(uri) {
return dispatch => {
dispatch(doSetPlayingUri(uri));
dispatch(doPurchaseUri(uri));
};
}
2017-07-10 16:49:12 +02:00
export function doFetchChannelListMine() {
return dispatch => {
2017-07-10 16:49:12 +02:00
dispatch({
type: ACTIONS.FETCH_CHANNEL_LIST_MINE_STARTED,
2017-07-10 16:49:12 +02:00
});
const callback = channels => {
dispatch({
type: ACTIONS.FETCH_CHANNEL_LIST_MINE_COMPLETED,
2017-07-10 16:49:12 +02:00
data: { claims: channels },
});
};
Lbry.channel_list_mine().then(callback);
2017-07-10 16:49:12 +02:00
};
}
2017-06-17 19:59:18 +02:00
export function doCreateChannel(name, amount) {
return dispatch => {
2017-06-17 19:59:18 +02:00
dispatch({
type: ACTIONS.CREATE_CHANNEL_STARTED,
2017-06-17 19:59:18 +02:00
});
return new Promise((resolve, reject) => {
Lbry.channel_new({
channel_name: name,
amount: parseFloat(amount),
}).then(
2018-01-02 20:54:57 +01:00
newChannelClaim => {
const channelClaim = newChannelClaim;
channelClaim.name = name;
dispatch({
type: ACTIONS.CREATE_CHANNEL_COMPLETED,
2018-01-02 20:54:57 +01:00
data: { channelClaim },
});
2018-01-02 20:54:57 +01:00
resolve(channelClaim);
},
error => {
reject(error);
}
);
2017-06-17 19:59:18 +02:00
});
};
}
export function doPublish(params) {
return dispatch =>
new Promise((resolve, reject) => {
2017-06-17 19:59:18 +02:00
const success = claim => {
resolve(claim);
if (claim === true) dispatch(doFetchClaimListMine());
else
setTimeout(() => dispatch(doFetchClaimListMine()), 20000, {
once: true,
});
2017-06-17 19:59:18 +02:00
};
const failure = err => reject(err);
2017-06-17 19:59:18 +02:00
Lbry.publishDeprecated(params, null, success, failure);
2017-06-17 19:59:18 +02:00
});
}
2017-10-24 15:10:27 +02:00
2017-11-01 21:23:30 +01:00
export function doAbandonClaim(txid, nout) {
return (dispatch, getState) => {
2017-10-24 15:10:27 +02:00
const state = getState();
const myClaims = selectMyClaimsRaw(state);
2017-12-22 02:21:22 +01:00
const { claim_id: claimId, name } = myClaims.find(
claim => claim.txid === txid && claim.nout === nout
2017-11-01 21:23:30 +01:00
);
2017-10-24 15:10:27 +02:00
dispatch({
type: ACTIONS.ABANDON_CLAIM_STARTED,
2017-10-24 15:10:27 +02:00
data: {
2017-12-13 22:36:30 +01:00
claimId,
2017-10-24 15:10:27 +02:00
},
});
const errorCallback = () => {
dispatch(doOpenModal(MODALS.TRANSACTION_FAILED));
2017-10-30 17:25:56 +01:00
};
const successCallback = results => {
if (results.txid) {
dispatch({
type: ACTIONS.ABANDON_CLAIM_SUCCEEDED,
2017-10-30 17:25:56 +01:00
data: {
2017-12-13 22:36:30 +01:00
claimId,
2017-10-30 17:25:56 +01:00
},
});
dispatch(doResolveUri(buildURI({ name, claimId })));
2017-10-30 17:25:56 +01:00
dispatch(doFetchClaimListMine());
} else {
dispatch(doOpenModal(MODALS.TRANSACTION_FAILED));
2017-10-30 17:25:56 +01:00
}
};
2017-10-24 15:10:27 +02:00
Lbry.claim_abandon({
txid,
nout,
}).then(successCallback, errorCallback);
2017-10-24 15:10:27 +02:00
};
}