2021-06-11 22:49:18 +02:00
|
|
|
// @flow
|
2017-12-21 18:32:51 +01:00
|
|
|
import * as ACTIONS from 'constants/action_types';
|
2020-06-15 22:33:03 +02:00
|
|
|
import REWARDS from 'rewards';
|
|
|
|
import { Lbryio } from 'lbryinc';
|
|
|
|
import { doClaimRewardType } from 'redux/actions/rewards';
|
2021-10-08 05:47:39 +02:00
|
|
|
import { parseURI } from 'util/lbryURI';
|
2020-10-05 20:31:51 +02:00
|
|
|
import { doAlertWaitingForSync } from 'redux/actions/app';
|
2021-06-11 22:49:18 +02:00
|
|
|
import { doToast } from 'redux/actions/notifications';
|
2017-12-08 21:14:35 +01:00
|
|
|
|
2021-06-11 22:49:18 +02:00
|
|
|
type SubscriptionArgs = {
|
|
|
|
channelName: string,
|
|
|
|
uri: string,
|
|
|
|
notificationsDisabled?: boolean,
|
|
|
|
};
|
2020-10-05 20:31:51 +02:00
|
|
|
|
2021-10-08 05:47:39 +02:00
|
|
|
export function doToggleSubscription(
|
|
|
|
subscription: SubscriptionArgs,
|
|
|
|
followToast: boolean,
|
|
|
|
isSubscribed: boolean = false
|
|
|
|
) {
|
2021-06-11 22:49:18 +02:00
|
|
|
return async (dispatch: Dispatch, getState: GetState) => {
|
|
|
|
const {
|
|
|
|
settings: { daemonSettings },
|
|
|
|
sync: { prefsReady: ready },
|
|
|
|
} = getState();
|
2020-10-05 20:31:51 +02:00
|
|
|
|
2021-06-11 22:49:18 +02:00
|
|
|
if (!ready) {
|
|
|
|
return dispatch(doAlertWaitingForSync());
|
|
|
|
}
|
2018-05-07 06:50:55 +02:00
|
|
|
|
2021-06-11 22:49:18 +02:00
|
|
|
const { share_usage_data: shareSetting } = daemonSettings;
|
2022-01-07 20:02:33 +01:00
|
|
|
const isSharingData = shareSetting;
|
2018-10-31 18:08:30 +01:00
|
|
|
|
2021-06-11 22:49:18 +02:00
|
|
|
if (!isSubscribed) {
|
|
|
|
const subscriptionUri = subscription.uri;
|
|
|
|
if (!subscriptionUri.startsWith('lbry://')) {
|
|
|
|
throw Error(`Subscription uris must include the "lbry://" prefix.\nTried to subscribe to ${subscriptionUri}`);
|
|
|
|
}
|
|
|
|
}
|
2018-03-26 09:31:52 +02:00
|
|
|
|
2021-06-11 22:49:18 +02:00
|
|
|
dispatch({
|
|
|
|
type: !isSubscribed ? ACTIONS.CHANNEL_SUBSCRIBE : ACTIONS.CHANNEL_UNSUBSCRIBE,
|
|
|
|
data: subscription,
|
2018-05-07 06:50:55 +02:00
|
|
|
});
|
2018-08-09 13:45:07 +02:00
|
|
|
|
2021-06-11 22:49:18 +02:00
|
|
|
// if the user isn't sharing data, keep the subscriptions entirely in the app
|
2022-01-07 20:02:33 +01:00
|
|
|
if (isSharingData) {
|
2021-06-11 22:49:18 +02:00
|
|
|
const { channelClaimId } = parseURI(subscription.uri);
|
2018-05-07 06:50:55 +02:00
|
|
|
|
2021-06-11 22:49:18 +02:00
|
|
|
if (!isSubscribed) {
|
|
|
|
// They are sharing data, we can store their subscriptions in our internal database
|
|
|
|
Lbryio.call('subscription', 'new', {
|
|
|
|
channel_name: subscription.channelName,
|
|
|
|
claim_id: channelClaimId,
|
|
|
|
notifications_disabled: subscription.notificationsDisabled,
|
|
|
|
});
|
2020-10-05 20:31:51 +02:00
|
|
|
|
2021-06-11 22:49:18 +02:00
|
|
|
dispatch(doClaimRewardType(REWARDS.TYPE_SUBSCRIPTION, { failSilently: true }));
|
|
|
|
} else {
|
|
|
|
Lbryio.call('subscription', 'delete', {
|
|
|
|
claim_id: channelClaimId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2021-07-05 18:49:58 +02:00
|
|
|
if (followToast) {
|
2021-10-08 05:47:39 +02:00
|
|
|
dispatch(
|
|
|
|
doToast({
|
|
|
|
message: __(!isSubscribed ? 'You followed %CHANNEL_NAME%!' : 'Unfollowed %CHANNEL_NAME%.', {
|
|
|
|
CHANNEL_NAME: subscription.channelName,
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
);
|
2021-07-05 18:49:58 +02:00
|
|
|
}
|
2021-06-11 22:49:18 +02:00
|
|
|
};
|
|
|
|
}
|
2018-05-07 06:50:55 +02:00
|
|
|
|
2021-07-05 18:49:58 +02:00
|
|
|
export function doChannelSubscribe(subscription: SubscriptionArgs, followToast: boolean = true) {
|
2021-06-11 22:49:18 +02:00
|
|
|
return (dispatch: Dispatch) => {
|
2021-07-05 18:49:58 +02:00
|
|
|
return dispatch(doToggleSubscription(subscription, followToast));
|
2021-06-11 22:49:18 +02:00
|
|
|
};
|
|
|
|
}
|
2018-03-26 09:31:52 +02:00
|
|
|
|
2021-07-05 18:49:58 +02:00
|
|
|
export function doChannelUnsubscribe(subscription: SubscriptionArgs, followToast: boolean = true) {
|
2021-06-11 22:49:18 +02:00
|
|
|
return (dispatch: Dispatch) => {
|
2021-07-05 18:49:58 +02:00
|
|
|
return dispatch(doToggleSubscription(subscription, followToast, true));
|
2021-06-11 22:49:18 +02:00
|
|
|
};
|
|
|
|
}
|