bigbuffet-rw/app/soapbox/actions/streaming.js

107 lines
4.1 KiB
JavaScript
Raw Normal View History

2020-03-27 13:59:38 -07:00
import { connectStream } from '../stream';
import {
deleteFromTimelines,
expandHomeTimeline,
connectTimeline,
disconnectTimeline,
processTimelineUpdate,
2020-03-27 13:59:38 -07:00
} from './timelines';
import { updateNotificationsQueue, expandNotifications } from './notifications';
import { updateConversations } from './conversations';
import { fetchFilters } from './filters';
2020-06-04 17:43:53 -07:00
import { getSettings } from 'soapbox/actions/settings';
import messages from 'soapbox/locales/messages';
2020-03-27 13:59:38 -07:00
2020-09-07 14:52:45 -07:00
export const STREAMING_CHAT_UPDATE = 'STREAMING_CHAT_UPDATE';
2021-01-28 14:22:31 -08:00
export const STREAMING_FOLLOW_RELATIONSHIPS_UPDATE = 'STREAMING_FOLLOW_RELATIONSHIPS_UPDATE';
2020-08-26 15:29:22 -07:00
const validLocale = locale => Object.keys(messages).includes(locale);
const getLocale = state => {
const locale = getSettings(state).get('locale');
return validLocale(locale) ? locale : 'en';
};
2021-01-28 14:22:31 -08:00
function updateFollowRelationships(relationships) {
return (dispatch, getState) => {
const me = getState().get('me');
return dispatch({
type: STREAMING_FOLLOW_RELATIONSHIPS_UPDATE,
me,
...relationships,
});
};
}
export function connectTimelineStream(timelineId, path, pollingRefresh = null, accept = null) {
2020-03-27 13:59:38 -07:00
return connectStream (path, pollingRefresh, (dispatch, getState) => {
const locale = getLocale(getState());
2020-03-27 13:59:38 -07:00
return {
onConnect() {
dispatch(connectTimeline(timelineId));
},
onDisconnect() {
dispatch(disconnectTimeline(timelineId));
},
onReceive(data) {
2020-03-27 13:59:38 -07:00
switch(data.event) {
case 'update':
dispatch(processTimelineUpdate(timelineId, JSON.parse(data.payload), accept));
2020-03-27 13:59:38 -07:00
break;
case 'delete':
dispatch(deleteFromTimelines(data.payload));
break;
case 'notification':
2020-06-04 19:28:19 -07:00
messages[locale]().then(messages => {
dispatch(updateNotificationsQueue(JSON.parse(data.payload), messages, locale, window.location.pathname));
}).catch(error => {
console.error(error);
});
2020-03-27 13:59:38 -07:00
break;
case 'conversation':
dispatch(updateConversations(JSON.parse(data.payload)));
break;
case 'filters_changed':
dispatch(fetchFilters());
break;
2020-08-26 11:39:38 -07:00
case 'pleroma:chat_update':
dispatch((dispatch, getState) => {
const chat = JSON.parse(data.payload);
2020-09-29 14:50:57 -07:00
const me = getState().get('me');
const messageOwned = !(chat.last_message && chat.last_message.account_id !== me);
dispatch({
type: STREAMING_CHAT_UPDATE,
chat,
2020-09-29 14:50:57 -07:00
me,
// Only play sounds for recipient messages
meta: !messageOwned && getSettings(getState()).getIn(['chats', 'sound']) && { sound: 'chat' },
});
2020-09-17 21:06:54 -07:00
});
2020-08-26 11:39:38 -07:00
break;
2021-01-28 14:22:31 -08:00
case 'pleroma:follow_relationships_update':
dispatch(updateFollowRelationships(JSON.parse(data.payload)));
break;
2020-03-27 13:59:38 -07:00
}
},
};
});
}
const refreshHomeTimelineAndNotification = (dispatch, done) => {
dispatch(expandHomeTimeline({}, () => dispatch(expandNotifications({}, done))));
};
export const connectUserStream = () => connectTimelineStream('home', 'user', refreshHomeTimelineAndNotification);
export const connectCommunityStream = ({ onlyMedia } = {}) => connectTimelineStream(`community${onlyMedia ? ':media' : ''}`, `public:local${onlyMedia ? ':media' : ''}`);
export const connectPublicStream = ({ onlyMedia } = {}) => connectTimelineStream(`public${onlyMedia ? ':media' : ''}`, `public${onlyMedia ? ':media' : ''}`);
2020-12-24 14:20:58 -08:00
export const connectRemoteStream = (instance, { onlyMedia } = {}) => connectTimelineStream(`remote${onlyMedia ? ':media' : ''}:${instance}`, `public:remote${onlyMedia ? ':media' : ''}&instance=${instance}`);
2020-03-27 13:59:38 -07:00
export const connectHashtagStream = (id, tag, accept) => connectTimelineStream(`hashtag:${id}`, `hashtag&tag=${tag}`, null, accept);
export const connectDirectStream = () => connectTimelineStream('direct', 'direct');
export const connectListStream = id => connectTimelineStream(`list:${id}`, `list&list=${id}`);
2020-12-24 14:20:58 -08:00
export const connectGroupStream = id => connectTimelineStream(`group:${id}`, `group&group=${id}`);