2016-11-27 04:57:08 +11:00
|
|
|
import backendInteractorService from '../services/backend_interactor_service/backend_interactor_service.js'
|
2017-03-09 04:04:21 +11:00
|
|
|
import { compact, map, each, merge } from 'lodash'
|
2017-02-14 09:22:32 +11:00
|
|
|
import { set } from 'vue'
|
2018-12-20 17:17:59 +11:00
|
|
|
import { registerPushNotifications, unregisterPushNotifications } from '../services/push/push.js'
|
2018-12-05 20:43:01 +11:00
|
|
|
import oauthApi from '../services/new_api/oauth'
|
2018-12-13 22:22:15 +11:00
|
|
|
import { humanizeErrors } from './errors'
|
2016-10-28 03:03:14 +11:00
|
|
|
|
2016-12-01 04:29:44 +11:00
|
|
|
// TODO: Unify with mergeOrAdd in statuses.js
|
2017-03-09 03:59:12 +11:00
|
|
|
export const mergeOrAdd = (arr, obj, item) => {
|
2016-12-01 09:32:22 +11:00
|
|
|
if (!item) { return false }
|
2017-03-09 03:59:12 +11:00
|
|
|
const oldItem = obj[item.id]
|
2016-12-01 04:29:44 +11:00
|
|
|
if (oldItem) {
|
|
|
|
// We already have this, so only merge the new info.
|
|
|
|
merge(oldItem, item)
|
2018-12-13 22:22:15 +11:00
|
|
|
return { item: oldItem, new: false }
|
2016-12-01 04:29:44 +11:00
|
|
|
} else {
|
|
|
|
// This is a new item, prepare it
|
|
|
|
arr.push(item)
|
2017-03-09 03:59:12 +11:00
|
|
|
obj[item.id] = item
|
2018-12-13 23:34:51 +11:00
|
|
|
if (item.screen_name && !item.screen_name.includes('@')) {
|
|
|
|
obj[item.screen_name] = item
|
|
|
|
}
|
2018-12-13 22:22:15 +11:00
|
|
|
return { item, new: true }
|
2016-12-01 04:29:44 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-13 22:04:09 +11:00
|
|
|
const getNotificationPermission = () => {
|
|
|
|
const Notification = window.Notification
|
|
|
|
|
|
|
|
if (!Notification) return Promise.resolve(null)
|
|
|
|
if (Notification.permission === 'default') return Notification.requestPermission()
|
|
|
|
return Promise.resolve(Notification.permission)
|
|
|
|
}
|
|
|
|
|
2016-12-01 04:29:44 +11:00
|
|
|
export const mutations = {
|
2018-12-13 22:22:15 +11:00
|
|
|
setMuted (state, { user: { id }, muted }) {
|
2017-03-09 04:04:21 +11:00
|
|
|
const user = state.usersObject[id]
|
2017-02-14 09:22:32 +11:00
|
|
|
set(user, 'muted', muted)
|
|
|
|
},
|
2016-12-01 04:29:44 +11:00
|
|
|
setCurrentUser (state, user) {
|
2017-07-02 21:07:35 +10:00
|
|
|
state.lastLoginName = user.screen_name
|
2017-04-17 00:05:13 +10:00
|
|
|
state.currentUser = merge(state.currentUser || {}, user)
|
2016-10-28 03:03:14 +11:00
|
|
|
},
|
2017-07-02 20:25:34 +10:00
|
|
|
clearCurrentUser (state) {
|
|
|
|
state.currentUser = false
|
2017-07-02 21:07:35 +10:00
|
|
|
state.lastLoginName = false
|
2017-07-02 20:25:34 +10:00
|
|
|
},
|
2016-12-01 04:29:44 +11:00
|
|
|
beginLogin (state) {
|
|
|
|
state.loggingIn = true
|
|
|
|
},
|
|
|
|
endLogin (state) {
|
|
|
|
state.loggingIn = false
|
2016-10-28 03:03:14 +11:00
|
|
|
},
|
2018-12-18 03:14:38 +11:00
|
|
|
// TODO Clean after ourselves?
|
|
|
|
addFriends (state, { id, friends }) {
|
|
|
|
const user = state.usersObject[id]
|
|
|
|
user.friends = friends
|
|
|
|
},
|
|
|
|
addFollowers (state, { id, followers }) {
|
|
|
|
const user = state.usersObject[id]
|
|
|
|
user.followers = followers
|
|
|
|
},
|
2016-12-01 04:29:44 +11:00
|
|
|
addNewUsers (state, users) {
|
2017-03-09 03:59:12 +11:00
|
|
|
each(users, (user) => mergeOrAdd(state.users, state.usersObject, user))
|
2017-02-17 00:23:59 +11:00
|
|
|
},
|
|
|
|
setUserForStatus (state, status) {
|
2017-03-09 04:04:21 +11:00
|
|
|
status.user = state.usersObject[status.user.id]
|
2018-06-18 18:36:58 +10:00
|
|
|
},
|
2018-12-13 22:22:15 +11:00
|
|
|
setColor (state, { user: { id }, highlighted }) {
|
2018-06-18 18:36:58 +10:00
|
|
|
const user = state.usersObject[id]
|
|
|
|
set(user, 'highlight', highlighted)
|
2018-12-05 20:43:01 +11:00
|
|
|
},
|
2018-12-06 06:07:58 +11:00
|
|
|
signUpPending (state) {
|
|
|
|
state.signUpPending = true
|
|
|
|
state.signUpErrors = []
|
2018-12-05 20:43:01 +11:00
|
|
|
},
|
2018-12-06 06:07:58 +11:00
|
|
|
signUpSuccess (state) {
|
|
|
|
state.signUpPending = false
|
2018-12-05 20:43:01 +11:00
|
|
|
},
|
2018-12-06 06:07:58 +11:00
|
|
|
signUpFailure (state, errors) {
|
|
|
|
state.signUpPending = false
|
|
|
|
state.signUpErrors = errors
|
2016-12-01 04:29:44 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const defaultState = {
|
2018-12-06 06:07:58 +11:00
|
|
|
loggingIn: false,
|
2017-07-02 21:07:35 +10:00
|
|
|
lastLoginName: false,
|
2016-12-01 04:29:44 +11:00
|
|
|
currentUser: false,
|
2017-03-09 03:59:12 +11:00
|
|
|
users: [],
|
2018-12-05 20:43:01 +11:00
|
|
|
usersObject: {},
|
2018-12-06 06:07:58 +11:00
|
|
|
signUpPending: false,
|
|
|
|
signUpErrors: []
|
2016-12-01 04:29:44 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
const users = {
|
|
|
|
state: defaultState,
|
|
|
|
mutations,
|
2016-10-28 03:03:14 +11:00
|
|
|
actions: {
|
2017-11-15 03:08:03 +11:00
|
|
|
fetchUser (store, id) {
|
2018-12-13 22:22:15 +11:00
|
|
|
store.rootState.api.backendInteractor.fetchUser({ id })
|
2018-12-13 23:34:51 +11:00
|
|
|
.then((user) => store.commit('addNewUsers', [user]))
|
2017-11-15 03:08:03 +11:00
|
|
|
},
|
2018-12-18 03:14:38 +11:00
|
|
|
addFriends ({ rootState, commit }, { id }) {
|
|
|
|
rootState.api.backendInteractor.fetchFriends({ id })
|
|
|
|
.then((friends) => commit('addFriends', { id, friends }))
|
|
|
|
},
|
|
|
|
addFollowers ({ rootState, commit }, { id }) {
|
|
|
|
rootState.api.backendInteractor.fetchFollowers({ id })
|
|
|
|
.then((followers) => commit('addFollowers', { id, followers }))
|
|
|
|
},
|
2018-12-11 02:36:25 +11:00
|
|
|
registerPushNotifications (store) {
|
|
|
|
const token = store.state.currentUser.credentials
|
|
|
|
const vapidPublicKey = store.rootState.instance.vapidPublicKey
|
|
|
|
const isEnabled = store.rootState.config.webPushNotifications
|
|
|
|
|
|
|
|
registerPushNotifications(isEnabled, vapidPublicKey, token)
|
|
|
|
},
|
2018-12-20 17:17:59 +11:00
|
|
|
unregisterPushNotifications (store) {
|
2018-12-25 11:46:19 +11:00
|
|
|
const token = store.state.currentUser.credentials
|
|
|
|
|
|
|
|
unregisterPushNotifications(token)
|
2018-12-20 17:17:59 +11:00
|
|
|
},
|
2016-12-01 04:29:44 +11:00
|
|
|
addNewStatuses (store, { statuses }) {
|
|
|
|
const users = map(statuses, 'user')
|
2016-12-08 19:08:59 +11:00
|
|
|
const retweetedUsers = compact(map(statuses, 'retweeted_status.user'))
|
2016-12-01 04:29:44 +11:00
|
|
|
store.commit('addNewUsers', users)
|
2016-12-08 19:08:59 +11:00
|
|
|
store.commit('addNewUsers', retweetedUsers)
|
2017-02-14 10:01:50 +11:00
|
|
|
|
|
|
|
// Reconnect users to statuses
|
|
|
|
each(statuses, (status) => {
|
2017-02-17 00:23:59 +11:00
|
|
|
store.commit('setUserForStatus', status)
|
2017-02-14 10:01:50 +11:00
|
|
|
})
|
|
|
|
// Reconnect users to retweets
|
|
|
|
each(compact(map(statuses, 'retweeted_status')), (status) => {
|
2017-02-17 00:23:59 +11:00
|
|
|
store.commit('setUserForStatus', status)
|
2017-02-14 10:01:50 +11:00
|
|
|
})
|
2016-12-01 04:29:44 +11:00
|
|
|
},
|
2018-12-05 20:43:01 +11:00
|
|
|
async signUp (store, userInfo) {
|
2018-12-06 06:07:58 +11:00
|
|
|
store.commit('signUpPending')
|
2018-12-05 20:43:01 +11:00
|
|
|
|
2018-12-06 02:17:29 +11:00
|
|
|
let rootState = store.rootState
|
|
|
|
|
|
|
|
let response = await rootState.api.backendInteractor.register(userInfo)
|
2018-12-05 20:43:01 +11:00
|
|
|
if (response.ok) {
|
|
|
|
const data = {
|
2018-12-06 02:17:29 +11:00
|
|
|
oauth: rootState.oauth,
|
|
|
|
instance: rootState.instance.server
|
2018-12-05 20:43:01 +11:00
|
|
|
}
|
|
|
|
let app = await oauthApi.getOrCreateApp(data)
|
|
|
|
let result = await oauthApi.getTokenWithCredentials({
|
|
|
|
app,
|
|
|
|
instance: data.instance,
|
2018-12-06 02:17:29 +11:00
|
|
|
username: userInfo.username,
|
|
|
|
password: userInfo.password
|
2018-12-05 20:43:01 +11:00
|
|
|
})
|
2018-12-06 06:07:58 +11:00
|
|
|
store.commit('signUpSuccess')
|
2018-12-05 20:43:01 +11:00
|
|
|
store.commit('setToken', result.access_token)
|
|
|
|
store.dispatch('loginUser', result.access_token)
|
|
|
|
} else {
|
|
|
|
let data = await response.json()
|
|
|
|
let errors = humanizeErrors(JSON.parse(data.error))
|
2018-12-06 06:07:58 +11:00
|
|
|
store.commit('signUpFailure', errors)
|
2018-12-06 02:17:29 +11:00
|
|
|
throw Error(errors)
|
2018-12-05 20:43:01 +11:00
|
|
|
}
|
|
|
|
},
|
2018-12-17 04:53:41 +11:00
|
|
|
async getCaptcha (store) {
|
|
|
|
return await store.rootState.api.backendInteractor.getCaptcha()
|
|
|
|
},
|
|
|
|
|
2017-07-02 20:25:34 +10:00
|
|
|
logout (store) {
|
|
|
|
store.commit('clearCurrentUser')
|
2018-10-27 00:16:23 +11:00
|
|
|
store.commit('setToken', false)
|
2017-07-02 20:25:34 +10:00
|
|
|
store.dispatch('stopFetching', 'friends')
|
|
|
|
store.commit('setBackendInteractor', backendInteractorService())
|
|
|
|
},
|
2018-10-27 00:16:23 +11:00
|
|
|
loginUser (store, accessToken) {
|
2017-03-09 04:28:41 +11:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const commit = store.commit
|
|
|
|
commit('beginLogin')
|
2018-10-27 00:16:23 +11:00
|
|
|
store.rootState.api.backendInteractor.verifyCredentials(accessToken)
|
2017-03-09 04:28:41 +11:00
|
|
|
.then((response) => {
|
|
|
|
if (response.ok) {
|
|
|
|
response.json()
|
|
|
|
.then((user) => {
|
2018-10-27 00:16:23 +11:00
|
|
|
// user.credentials = userCredentials
|
|
|
|
user.credentials = accessToken
|
2017-03-09 04:28:41 +11:00
|
|
|
commit('setCurrentUser', user)
|
|
|
|
commit('addNewUsers', [user])
|
2016-12-01 07:27:25 +11:00
|
|
|
|
2018-12-13 22:04:09 +11:00
|
|
|
getNotificationPermission()
|
|
|
|
.then(permission => commit('setNotificationPermission', permission))
|
|
|
|
|
2017-03-09 04:28:41 +11:00
|
|
|
// Set our new backend interactor
|
2018-10-27 00:16:23 +11:00
|
|
|
commit('setBackendInteractor', backendInteractorService(accessToken))
|
2016-12-01 07:27:25 +11:00
|
|
|
|
2017-12-05 05:08:33 +11:00
|
|
|
if (user.token) {
|
2017-12-05 21:47:10 +11:00
|
|
|
store.dispatch('initializeSocket', user.token)
|
2017-12-05 05:08:33 +11:00
|
|
|
}
|
|
|
|
|
2017-03-09 04:28:41 +11:00
|
|
|
// Start getting fresh tweets.
|
|
|
|
store.dispatch('startFetching', 'friends')
|
2017-02-16 21:17:47 +11:00
|
|
|
|
2017-03-09 04:28:41 +11:00
|
|
|
// Get user mutes and follower info
|
|
|
|
store.rootState.api.backendInteractor.fetchMutes().then((mutedUsers) => {
|
|
|
|
each(mutedUsers, (user) => { user.muted = true })
|
|
|
|
store.commit('addNewUsers', mutedUsers)
|
|
|
|
})
|
2017-02-21 04:01:45 +11:00
|
|
|
|
2017-03-09 04:28:41 +11:00
|
|
|
// Fetch our friends
|
2018-12-13 22:22:15 +11:00
|
|
|
store.rootState.api.backendInteractor.fetchFriends({ id: user.id })
|
2017-03-09 04:28:41 +11:00
|
|
|
.then((friends) => commit('addNewUsers', friends))
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
// Authentication failed
|
|
|
|
commit('endLogin')
|
2017-03-09 05:22:56 +11:00
|
|
|
if (response.status === 401) {
|
|
|
|
reject('Wrong username or password')
|
|
|
|
} else {
|
2017-03-09 05:31:39 +11:00
|
|
|
reject('An error occurred, please try again')
|
2017-03-09 05:22:56 +11:00
|
|
|
}
|
2017-03-09 04:28:41 +11:00
|
|
|
}
|
|
|
|
commit('endLogin')
|
|
|
|
resolve()
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
console.log(error)
|
|
|
|
commit('endLogin')
|
2017-03-09 05:22:56 +11:00
|
|
|
reject('Failed to connect to server, try again')
|
2017-03-09 04:28:41 +11:00
|
|
|
})
|
|
|
|
})
|
2016-10-28 03:03:14 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default users
|