2016-11-26 17:57:08 +00:00
|
|
|
import backendInteractorService from '../services/backend_interactor_service/backend_interactor_service.js'
|
2017-12-05 10:47:10 +00:00
|
|
|
import { Socket } from 'phoenix'
|
2016-11-26 17:57:08 +00:00
|
|
|
|
|
|
|
const api = {
|
|
|
|
state: {
|
2017-02-16 10:17:47 +00:00
|
|
|
backendInteractor: backendInteractorService(),
|
2017-12-05 10:47:10 +00:00
|
|
|
fetchers: {},
|
2017-12-07 16:20:44 +00:00
|
|
|
socket: null,
|
2019-12-08 14:05:41 +00:00
|
|
|
mastoUserSocket: null,
|
2018-06-07 01:24:31 +00:00
|
|
|
followRequests: []
|
2016-11-26 17:57:08 +00:00
|
|
|
},
|
|
|
|
mutations: {
|
|
|
|
setBackendInteractor (state, backendInteractor) {
|
|
|
|
state.backendInteractor = backendInteractor
|
2017-02-16 10:17:47 +00:00
|
|
|
},
|
2019-04-04 16:06:53 +00:00
|
|
|
addFetcher (state, { fetcherName, fetcher }) {
|
2019-04-04 16:03:56 +00:00
|
|
|
state.fetchers[fetcherName] = fetcher
|
2017-02-16 10:17:47 +00:00
|
|
|
},
|
2019-12-08 14:05:41 +00:00
|
|
|
removeFetcher (state, { fetcherName, fetcher }) {
|
|
|
|
window.clearInterval(fetcher)
|
2019-04-04 16:03:56 +00:00
|
|
|
delete state.fetchers[fetcherName]
|
2017-12-05 10:47:10 +00:00
|
|
|
},
|
2019-01-29 15:16:25 +00:00
|
|
|
setWsToken (state, token) {
|
|
|
|
state.wsToken = token
|
|
|
|
},
|
2017-12-05 10:47:10 +00:00
|
|
|
setSocket (state, socket) {
|
|
|
|
state.socket = socket
|
2017-12-07 16:20:44 +00:00
|
|
|
},
|
2018-06-07 01:24:31 +00:00
|
|
|
setFollowRequests (state, value) {
|
|
|
|
state.followRequests = value
|
2017-02-16 10:17:47 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
actions: {
|
2019-12-08 14:05:41 +00:00
|
|
|
// MastoAPI 'User' sockets
|
|
|
|
startMastoUserSocket (store) {
|
2019-11-24 20:01:12 +00:00
|
|
|
const { state, dispatch } = store
|
2019-12-08 14:05:41 +00:00
|
|
|
state.mastoUserSocket = state.backendInteractor
|
2019-11-24 16:50:28 +00:00
|
|
|
.startUserSocket({
|
|
|
|
store,
|
|
|
|
onMessage: (message) => {
|
2019-12-08 14:05:41 +00:00
|
|
|
if (!message) return // pings
|
2019-11-24 16:50:28 +00:00
|
|
|
if (message.event === 'notification') {
|
2019-11-24 20:01:12 +00:00
|
|
|
dispatch('addNewNotifications', {
|
|
|
|
notifications: [message.notification],
|
|
|
|
older: false
|
|
|
|
})
|
2019-11-24 16:50:28 +00:00
|
|
|
} else if (message.event === 'update') {
|
2019-11-24 20:01:12 +00:00
|
|
|
dispatch('addNewStatuses', {
|
|
|
|
statuses: [message.status],
|
|
|
|
userId: false,
|
|
|
|
showImmediately: false,
|
|
|
|
timeline: 'friends'
|
|
|
|
})
|
2019-11-24 16:50:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2019-12-08 14:05:41 +00:00
|
|
|
state.mastoUserSocket.addEventListener('error', error => {
|
|
|
|
console.error('Error in MastoAPI websocket:', error)
|
|
|
|
})
|
|
|
|
state.mastoUserSocket.addEventListener('close', closeEvent => {
|
|
|
|
const ignoreCodes = new Set([
|
|
|
|
1000, // Normal (intended) closure
|
|
|
|
1001 // Going away
|
|
|
|
])
|
|
|
|
const { code } = closeEvent
|
|
|
|
console.debug('Socket closure event:', closeEvent)
|
|
|
|
if (ignoreCodes.has(code)) {
|
|
|
|
console.debug(`Not restarting socket becasue of closure code ${code} is in ignore list`)
|
|
|
|
} else {
|
|
|
|
console.warn(`MastoAPI websocket disconnected, restarting. CloseEvent code: ${code}`)
|
|
|
|
dispatch('startFetchingTimeline', { timeline: 'friends' })
|
|
|
|
dispatch('startFetchingNotifications')
|
|
|
|
dispatch('restartMastoUserSocket')
|
|
|
|
}
|
2019-11-24 20:01:12 +00:00
|
|
|
})
|
2019-11-24 16:50:28 +00:00
|
|
|
},
|
2019-12-08 14:05:41 +00:00
|
|
|
restartMastoUserSocket ({ dispatch }) {
|
|
|
|
// This basically starts MastoAPI user socket and stops conventional
|
|
|
|
// fetchers when connection reestablished
|
|
|
|
dispatch('startMastoUserSocket').then(() => {
|
|
|
|
dispatch('stopFetchingTimeline', { timeline: 'friends' })
|
|
|
|
dispatch('stopFetchingNotifications')
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
// Timelines
|
|
|
|
startFetchingTimeline (store, {
|
|
|
|
timeline = 'friends',
|
|
|
|
tag = false,
|
|
|
|
userId = false
|
|
|
|
}) {
|
2019-02-07 23:23:18 +00:00
|
|
|
if (store.state.fetchers[timeline]) return
|
|
|
|
|
2019-12-08 14:05:41 +00:00
|
|
|
const fetcher = store.state.backendInteractor.startFetchingTimeline({
|
|
|
|
timeline, store, userId, tag
|
|
|
|
})
|
2019-04-04 16:03:56 +00:00
|
|
|
store.commit('addFetcher', { fetcherName: timeline, fetcher })
|
2017-02-16 10:17:47 +00:00
|
|
|
},
|
2019-12-08 14:05:41 +00:00
|
|
|
stopFetchingTimeline (store, timeline) {
|
|
|
|
const fetcher = store.state.fetchers[timeline]
|
|
|
|
if (!fetcher) return
|
|
|
|
store.commit('removeFetcher', { fetcherName: timeline, fetcher })
|
|
|
|
},
|
2019-04-04 16:03:56 +00:00
|
|
|
|
2019-12-08 14:05:41 +00:00
|
|
|
// Notifications
|
|
|
|
startFetchingNotifications (store) {
|
|
|
|
if (store.state.fetchers.notifications) return
|
2019-04-04 16:03:56 +00:00
|
|
|
const fetcher = store.state.backendInteractor.startFetchingNotifications({ store })
|
|
|
|
store.commit('addFetcher', { fetcherName: 'notifications', fetcher })
|
|
|
|
},
|
2019-12-08 14:05:41 +00:00
|
|
|
stopFetchingNotifications (store) {
|
|
|
|
const fetcher = store.state.fetchers.notifications
|
|
|
|
if (!fetcher) return
|
|
|
|
store.commit('removeFetcher', { fetcherName: 'notifications', fetcher })
|
|
|
|
},
|
2019-11-24 20:01:12 +00:00
|
|
|
fetchAndUpdateNotifications (store) {
|
|
|
|
store.state.backendInteractor.fetchAndUpdateNotifications({ store })
|
|
|
|
},
|
2019-11-19 14:07:15 +00:00
|
|
|
|
2019-12-08 14:05:41 +00:00
|
|
|
// Follow requests
|
|
|
|
startFetchingFollowRequests (store) {
|
|
|
|
if (store.state.fetchers['followRequests']) return
|
|
|
|
const fetcher = store.state.backendInteractor.startFetchingFollowRequests({ store })
|
|
|
|
store.commit('addFetcher', { fetcherName: 'followRequests', fetcher })
|
2019-11-19 14:07:15 +00:00
|
|
|
},
|
2019-12-08 14:05:41 +00:00
|
|
|
stopFetchingFollowRequests (store) {
|
|
|
|
const fetcher = store.state.fetchers.followRequests
|
|
|
|
if (!fetcher) return
|
|
|
|
store.commit('removeFetcher', { fetcherName: 'followRequests', fetcher })
|
|
|
|
},
|
|
|
|
removeFollowRequest (store, request) {
|
|
|
|
let requests = store.state.followRequests.filter((it) => it !== request)
|
|
|
|
store.commit('setFollowRequests', requests)
|
2017-12-05 10:47:10 +00:00
|
|
|
},
|
2019-12-08 14:05:41 +00:00
|
|
|
|
|
|
|
// Pleroma websocket
|
2019-01-29 15:16:25 +00:00
|
|
|
setWsToken (store, token) {
|
|
|
|
store.commit('setWsToken', token)
|
|
|
|
},
|
2019-08-17 08:18:42 +00:00
|
|
|
initializeSocket ({ dispatch, commit, state, rootState }) {
|
2017-12-05 10:47:10 +00:00
|
|
|
// Set up websocket connection
|
2019-08-17 08:18:42 +00:00
|
|
|
const token = state.wsToken
|
|
|
|
if (rootState.instance.chatAvailable && typeof token !== 'undefined' && state.socket === null) {
|
2019-06-18 20:28:31 +00:00
|
|
|
const socket = new Socket('/socket', { params: { token } })
|
2017-12-07 16:20:44 +00:00
|
|
|
socket.connect()
|
2019-08-17 08:18:42 +00:00
|
|
|
|
|
|
|
commit('setSocket', socket)
|
|
|
|
dispatch('initializeChat', socket)
|
2017-12-07 16:20:44 +00:00
|
|
|
}
|
|
|
|
},
|
2019-08-17 08:18:42 +00:00
|
|
|
disconnectFromSocket ({ commit, state }) {
|
|
|
|
state.socket && state.socket.disconnect()
|
|
|
|
commit('setSocket', null)
|
2016-11-26 17:57:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default api
|