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

319 lines
7.7 KiB
JavaScript
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
2018-05-25 20:05:30 +02:00
import {
ACTIONS,
Lbry,
doNotify,
MODALS,
selectMyChannelClaims,
THUMBNAIL_STATUSES,
2018-06-08 06:05:45 +02:00
batchActions,
2018-05-25 20:05:30 +02:00
} 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 { selectosNotificationsEnabled } from 'redux/selectors/settings';
import { doNavigate } from 'redux/actions/navigation';
import fs from 'fs';
import path from 'path';
2018-03-26 23:32:43 +02:00
type Action = UpdatePublishFormAction | { type: ACTIONS.CLEAR_PUBLISH };
type PromiseAction = Promise<Action>;
type Dispatch = (action: Action | PromiseAction | Array<Action>) => any;
type GetState = () => {};
2018-06-13 06:19:39 +02:00
export const doClearPublish = () => (dispatch: Dispatch): PromiseAction => {
2018-03-26 23:32:43 +02:00
dispatch({ type: ACTIONS.CLEAR_PUBLISH });
2018-06-13 06:19:39 +02:00
return dispatch(doResetThumbnailStatus());
};
2018-03-26 23:32:43 +02:00
export const doUpdatePublishForm = (publishFormValue: UpdatePublishFormData) => (
dispatch: Dispatch
): UpdatePublishFormAction =>
dispatch({
type: ACTIONS.UPDATE_PUBLISH_FORM,
data: { ...publishFormValue },
});
2018-06-08 06:05:45 +02:00
export const doResetThumbnailStatus = () => (dispatch: Dispatch): PromiseAction => {
dispatch({
type: ACTIONS.UPDATE_PUBLISH_FORM,
data: {
thumbnailPath: '',
},
});
return fetch('https://spee.ch/api/config/site/publishing')
.then(res => res.json())
.then(status => {
if (status.disabled) {
throw Error();
}
return dispatch({
type: ACTIONS.UPDATE_PUBLISH_FORM,
data: {
uploadThumbnailStatus: THUMBNAIL_STATUSES.READY,
thumbnail: '',
nsfw: false,
},
});
})
.catch(() =>
dispatch({
type: ACTIONS.UPDATE_PUBLISH_FORM,
data: {
uploadThumbnailStatus: THUMBNAIL_STATUSES.API_DOWN,
thumbnail: '',
nsfw: false,
},
})
);
2018-06-08 06:05:45 +02:00
};
export const doUploadThumbnail = (filePath: string, nsfw: boolean) => (dispatch: Dispatch) => {
const thumbnail = fs.readFileSync(filePath);
const fileExt = path.extname(filePath);
const fileName = path.basename(filePath);
const makeid = () => {
let text = '';
const possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
for (let i = 0; i < 24; i += 1) text += possible.charAt(Math.floor(Math.random() * 62));
return text;
};
2018-04-02 22:30:18 +02:00
const uploadError = (error = '') =>
dispatch(
batchActions(
{
type: ACTIONS.UPDATE_PUBLISH_FORM,
data: { uploadThumbnailStatus: THUMBNAIL_STATUSES.API_DOWN },
},
2018-04-02 22:27:20 +02:00
dispatch(doNotify({ id: MODALS.ERROR, error }))
)
);
dispatch({
type: ACTIONS.UPDATE_PUBLISH_FORM,
data: { uploadThumbnailStatus: THUMBNAIL_STATUSES.IN_PROGRESS },
});
const data = new FormData();
const name = makeid();
const file = new File([thumbnail], fileName, { type: `image/${fileExt.slice(1)}` });
data.append('name', name);
data.append('file', file);
data.append('nsfw', nsfw.toString());
return fetch('https://spee.ch/api/claim/publish', {
method: 'POST',
body: data,
})
.then(response => response.json())
.then(
json =>
json.success
? dispatch({
type: ACTIONS.UPDATE_PUBLISH_FORM,
data: {
uploadThumbnailStatus: THUMBNAIL_STATUSES.COMPLETE,
thumbnail: `${json.data.url}${fileExt}`,
},
})
: uploadError(json.message)
)
2018-04-02 22:30:18 +02:00
.catch(err => uploadError(err.message));
};
2018-06-08 06:05:45 +02:00
export const doPrepareEdit = (claim: any, uri: string) => (dispatch: Dispatch) => {
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,
2018-06-25 20:23:25 +02:00
licenseType: license,
2018-03-26 23:32:43 +02:00
licenseUrl,
nsfw,
thumbnail,
title,
uri,
uploadThumbnailStatus: thumbnail ? THUMBNAIL_STATUSES.MANUAL : undefined,
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();
2018-05-25 20:05:30 +02:00
const myChannels = selectMyChannelClaims(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;
2018-05-25 20:05:30 +02:00
// get the claim id from the channel name, we will use that instead
const namedChannelClaim = myChannels.find(myChannel => myChannel.name === channel);
const channelId = namedChannelClaim ? namedChannelClaim.claim_id : '';
2018-03-26 23:32:43 +02:00
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_id: channelId,
2018-03-26 23:32:43 +02:00
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,
2018-06-20 21:30:52 +02:00
data: { pendingPublish: { ...publishPayload } },
});
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);
let publishCheckInterval;
const checkFileList = () => {
Lbry.claim_list_mine().then(claims => {
2018-06-12 09:12:22 +02:00
const pendingPublishMap = {};
pendingPublishes.forEach(({ name }) => {
pendingPublishMap[name] = name;
});
const actions = [];
2018-06-12 09:12:22 +02:00
claims.forEach(claim => {
if (pendingPublishMap[claim.name]) {
actions.push({
2018-06-12 09:12:22 +02:00
type: ACTIONS.REMOVE_PENDING_PUBLISH,
data: {
name: claim.name,
},
});
delete pendingPublishMap[claim.name];
if (selectosNotificationsEnabled(getState())) {
const notif = new window.Notification('LBRY Publish Complete', {
2018-08-28 01:04:07 +02:00
body: `${claim.value.stream.metadata.title} has been published to lbry://${
claim.name
}. Click here to view it`,
silent: false,
});
notif.onclick = () => {
dispatch(
doNavigate('/show', {
2018-08-28 01:04:07 +02:00
uri: claim.permanent_url,
})
);
};
}
2018-06-12 09:12:22 +02:00
}
});
actions.push({
type: ACTIONS.FETCH_CLAIM_LIST_MINE_COMPLETED,
data: {
claims,
},
});
dispatch(batchActions(...actions));
if (!Object.keys(pendingPublishMap).length) {
2018-04-03 06:21:33 +02:00
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();
}, 30000);
2018-04-03 06:21:33 +02:00
}
2018-03-26 23:32:43 +02:00
};