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

206 lines
4.9 KiB
JavaScript
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
import { ACTIONS, Lbry, selectMyClaimsWithoutChannels, doNotify, MODALS } from 'lbry-redux';
2018-03-26 23:32:43 +02:00
import { selectPendingPublishes } from 'redux/selectors/publish';
import type {
UpdatePublishFormData,
UpdatePublishFormAction,
PublishParams,
} from 'redux/reducers/publish';
import { CHANNEL_NEW, CHANNEL_ANONYMOUS } from 'constants/claim';
type Action = UpdatePublishFormAction | { type: ACTIONS.CLEAR_PUBLISH };
type PromiseAction = Promise<Action>;
type Dispatch = (action: Action | PromiseAction | Array<Action>) => any;
type GetState = () => {};
export const doClearPublish = () => (dispatch: Dispatch): Action =>
dispatch({ type: ACTIONS.CLEAR_PUBLISH });
export const doUpdatePublishForm = (publishFormValue: UpdatePublishFormData) => (
dispatch: Dispatch
): UpdatePublishFormAction =>
dispatch({
type: ACTIONS.UPDATE_PUBLISH_FORM,
data: { ...publishFormValue },
});
export const doPrepareEdit = (claim: any, uri: string) => (dispatch: Dispatch) => {
2018-04-19 18:51:18 +02:00
const {
name,
amount,
channel_name: channelName,
value: {
stream: { metadata },
},
} = claim;
2018-03-26 23:32:43 +02:00
const {
author,
description,
2018-04-03 06:21:33 +02:00
// use same values as default state
// fee will be undefined for free content
fee = {
amount: 0,
currency: 'LBC',
},
2018-03-26 23:32:43 +02:00
language,
license,
licenseUrl,
nsfw,
thumbnail,
title,
} = metadata;
const publishData = {
name,
channel: channelName,
bid: amount,
price: { amount: fee.amount, currency: fee.currency },
contentIsFree: !fee.amount,
author,
description,
fee,
language,
license,
licenseUrl,
nsfw,
thumbnail,
title,
uri,
2018-03-26 23:32:43 +02:00
};
dispatch({ type: ACTIONS.DO_PREPARE_EDIT, data: publishData });
};
export const doPublish = (params: PublishParams) => (dispatch: Dispatch, getState: () => {}) => {
const state = getState();
const myClaims = selectMyClaimsWithoutChannels(state);
2018-03-26 23:32:43 +02:00
const {
name,
bid,
2018-04-03 06:21:33 +02:00
filePath,
2018-03-26 23:32:43 +02:00
description,
language,
license,
licenseUrl,
thumbnail,
nsfw,
channel,
title,
contentIsFree,
price,
uri,
sources,
2018-03-26 23:32:43 +02:00
} = params;
let isEdit;
const newPublishName = channel ? `${channel}/${name}` : name;
for (let i = 0; i < myClaims.length; i += 1) {
const { channel_name: claimChannelName, name: claimName } = myClaims[i];
const contentName = claimChannelName ? `${claimChannelName}/${claimName}` : claimName;
if (contentName === newPublishName) {
isEdit = true;
break;
}
}
2018-03-26 23:32:43 +02:00
const channelName = channel === CHANNEL_ANONYMOUS || channel === CHANNEL_NEW ? '' : channel;
const fee = contentIsFree || !price.amount ? undefined : { ...price };
const metadata = {
title,
nsfw,
license,
licenseUrl,
language,
thumbnail,
};
if (fee) {
metadata.fee = fee;
}
if (description) {
metadata.description = description;
}
const publishPayload = {
name,
channel_name: channelName,
bid,
metadata,
};
2018-04-04 01:46:03 +02:00
if (filePath) {
publishPayload.file_path = filePath;
} else {
publishPayload.sources = sources;
2018-04-04 01:46:03 +02:00
}
dispatch({ type: ACTIONS.PUBLISH_START });
2018-03-26 23:32:43 +02:00
const success = () => {
dispatch({
type: ACTIONS.PUBLISH_SUCCESS,
data: { pendingPublish: { ...publishPayload, isEdit } },
});
2018-04-19 18:51:18 +02:00
dispatch(doNotify({ id: MODALS.PUBLISH }, { uri }));
};
2018-03-26 23:32:43 +02:00
const failure = error => {
dispatch({ type: ACTIONS.PUBLISH_FAIL });
dispatch(doNotify({ id: MODALS.ERROR, error: error.message }));
2018-03-26 23:32:43 +02:00
};
return Lbry.publish(publishPayload).then(success, failure);
2018-03-26 23:32:43 +02:00
};
// Calls claim_list_mine until any pending publishes are confirmed
2018-04-03 06:21:33 +02:00
export const doCheckPendingPublishes = () => (dispatch: Dispatch, getState: GetState) => {
const state = getState();
const pendingPublishes = selectPendingPublishes(state);
const myClaims = selectMyClaimsWithoutChannels(state);
let publishCheckInterval;
const checkFileList = () => {
Lbry.claim_list_mine().then(claims => {
const claimsWithoutChannels = claims.filter(claim => !claim.name.match(/^@/));
if (myClaims.length !== claimsWithoutChannels.length) {
const pendingPublishMap = {};
pendingPublishes.forEach(({ name }) => {
pendingPublishMap[name] = name;
});
claims.forEach(claim => {
if (pendingPublishMap[claim.name]) {
dispatch({
type: ACTIONS.REMOVE_PENDING_PUBLISH,
data: {
name: claim.name,
},
});
dispatch({
type: ACTIONS.FETCH_CLAIM_LIST_MINE_COMPLETED,
data: {
claims,
},
});
delete pendingPublishMap[claim.name];
}
});
clearInterval(publishCheckInterval);
}
});
};
2018-03-26 23:32:43 +02:00
2018-04-03 06:21:33 +02:00
if (pendingPublishes.length) {
checkFileList();
publishCheckInterval = setInterval(() => {
2018-03-26 23:32:43 +02:00
checkFileList();
2018-04-03 06:21:33 +02:00
}, 10000);
}
2018-03-26 23:32:43 +02:00
};