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-11-24 16:50:28 +00:00
|
|
|
mastoSocket: 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-04-04 16:03:56 +00:00
|
|
|
removeFetcher (state, { fetcherName }) {
|
|
|
|
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-11-24 16:50:28 +00:00
|
|
|
startMastoSocket (store) {
|
2019-11-24 20:01:12 +00:00
|
|
|
const { state, dispatch } = store
|
|
|
|
state.mastoSocket = state.backendInteractor
|
2019-11-24 16:50:28 +00:00
|
|
|
.startUserSocket({
|
|
|
|
store,
|
|
|
|
onMessage: (message) => {
|
|
|
|
if (!message) return
|
|
|
|
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-11-24 20:01:12 +00:00
|
|
|
state.mastoSocket.addEventListener('error', error => {
|
|
|
|
console.error('Error with MastoAPI websocket:', error)
|
|
|
|
dispatch('startFetchingTimeline', { timeline: 'friends' })
|
|
|
|
dispatch('startFetchingNotifications')
|
|
|
|
})
|
2019-11-24 16:50:28 +00:00
|
|
|
},
|
2019-04-04 16:06:53 +00:00
|
|
|
startFetchingTimeline (store, { timeline = 'friends', tag = false, userId = false }) {
|
2017-02-16 10:17:47 +00:00
|
|
|
// Don't start fetching if we already are.
|
2019-02-07 23:23:18 +00:00
|
|
|
if (store.state.fetchers[timeline]) return
|
|
|
|
|
2019-04-04 16:03:56 +00:00
|
|
|
const fetcher = store.state.backendInteractor.startFetchingTimeline({ timeline, store, userId, tag })
|
|
|
|
store.commit('addFetcher', { fetcherName: timeline, fetcher })
|
2017-02-16 10:17:47 +00:00
|
|
|
},
|
2019-04-04 16:03:56 +00:00
|
|
|
startFetchingNotifications (store) {
|
|
|
|
// Don't start fetching if we already are.
|
|
|
|
if (store.state.fetchers['notifications']) return
|
|
|
|
|
|
|
|
const fetcher = store.state.backendInteractor.startFetchingNotifications({ store })
|
|
|
|
store.commit('addFetcher', { 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
|
|
|
startFetchingFollowRequest (store) {
|
|
|
|
// Don't start fetching if we already are.
|
|
|
|
if (store.state.fetchers['followRequest']) return
|
|
|
|
|
|
|
|
const fetcher = store.state.backendInteractor.startFetchingFollowRequest({ store })
|
|
|
|
store.commit('addFetcher', { fetcherName: 'followRequest', fetcher })
|
|
|
|
},
|
2019-04-04 16:03:56 +00:00
|
|
|
stopFetching (store, fetcherName) {
|
|
|
|
const fetcher = store.state.fetchers[fetcherName]
|
2017-02-16 10:17:47 +00:00
|
|
|
window.clearInterval(fetcher)
|
2019-04-04 16:03:56 +00:00
|
|
|
store.commit('removeFetcher', { fetcherName })
|
2017-12-05 10:47:10 +00:00
|
|
|
},
|
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)
|
2018-06-07 01:24:31 +00:00
|
|
|
},
|
|
|
|
removeFollowRequest (store, request) {
|
|
|
|
let requests = store.state.followRequests.filter((it) => it !== request)
|
|
|
|
store.commit('setFollowRequests', requests)
|
2016-11-26 17:57:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default api
|