2016-11-27 04:57:08 +11:00
|
|
|
import backendInteractorService from '../services/backend_interactor_service/backend_interactor_service.js'
|
2019-03-28 07:02:46 +11:00
|
|
|
import { compact, map, each, merge, find, last } 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)
|
2019-03-22 09:05:20 +11:00
|
|
|
set(obj, item.id, item)
|
2018-12-13 23:34:51 +11:00
|
|
|
if (item.screen_name && !item.screen_name.includes('@')) {
|
2019-03-22 09:05:20 +11:00
|
|
|
set(obj, item.screen_name.toLowerCase(), item)
|
2018-12-13 23:34:51 +11:00
|
|
|
}
|
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?
|
2019-03-26 06:04:52 +11:00
|
|
|
addFriends (state, { id, friends }) {
|
2018-12-18 03:14:38 +11:00
|
|
|
const user = state.usersObject[id]
|
2019-02-03 07:29:10 +11:00
|
|
|
each(friends, friend => {
|
|
|
|
if (!find(user.friends, { id: friend.id })) {
|
|
|
|
user.friends.push(friend)
|
|
|
|
}
|
|
|
|
})
|
2019-03-28 07:02:46 +11:00
|
|
|
user.lastFriendId = last(friends).id
|
2018-12-18 03:14:38 +11:00
|
|
|
},
|
2019-03-26 06:04:52 +11:00
|
|
|
addFollowers (state, { id, followers }) {
|
2018-12-18 03:14:38 +11:00
|
|
|
const user = state.usersObject[id]
|
2019-02-03 07:29:10 +11:00
|
|
|
each(followers, follower => {
|
|
|
|
if (!find(user.followers, { id: follower.id })) {
|
|
|
|
user.followers.push(follower)
|
|
|
|
}
|
|
|
|
})
|
2019-03-28 07:02:46 +11:00
|
|
|
user.lastFollowerId = last(followers).id
|
2019-02-03 07:29:10 +11:00
|
|
|
},
|
|
|
|
// Because frontend doesn't have a reason to keep these stuff in memory
|
|
|
|
// outside of viewing someones user profile.
|
2019-02-25 20:51:23 +11:00
|
|
|
clearFriends (state, userId) {
|
|
|
|
const user = state.usersObject[userId]
|
2019-02-03 07:29:10 +11:00
|
|
|
if (!user) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
user.friends = []
|
2019-03-26 06:04:52 +11:00
|
|
|
user.lastFriendId = null
|
2019-02-25 20:51:23 +11:00
|
|
|
},
|
|
|
|
clearFollowers (state, userId) {
|
|
|
|
const user = state.usersObject[userId]
|
|
|
|
if (!user) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
user.followers = []
|
2019-03-26 06:04:52 +11:00
|
|
|
user.lastFollowerId = null
|
2018-12-18 03:14:38 +11:00
|
|
|
},
|
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
|
|
|
},
|
2019-03-08 09:35:30 +11:00
|
|
|
updateUserRelationship (state, relationships) {
|
|
|
|
relationships.forEach((relationship) => {
|
|
|
|
const user = state.usersObject[relationship.id]
|
2019-03-15 03:50:51 +11:00
|
|
|
if (user) {
|
|
|
|
user.follows_you = relationship.followed_by
|
|
|
|
user.following = relationship.following
|
|
|
|
user.muted = relationship.muting
|
|
|
|
user.statusnet_blocking = relationship.blocking
|
|
|
|
}
|
2019-03-08 09:35:30 +11:00
|
|
|
})
|
|
|
|
},
|
2019-03-03 00:20:56 +11:00
|
|
|
updateBlocks (state, blockedUsers) {
|
|
|
|
// Reset statusnet_blocking of all fetched users
|
|
|
|
each(state.users, (user) => { user.statusnet_blocking = false })
|
|
|
|
each(blockedUsers, (user) => mergeOrAdd(state.users, state.usersObject, user))
|
|
|
|
},
|
2019-03-02 05:30:01 +11:00
|
|
|
saveBlockIds (state, blockIds) {
|
2019-02-14 14:24:09 +11:00
|
|
|
state.currentUser.blockIds = blockIds
|
2019-02-14 04:05:23 +11:00
|
|
|
},
|
2019-03-02 05:30:01 +11:00
|
|
|
updateMutes (state, mutedUsers) {
|
2019-03-03 00:21:15 +11:00
|
|
|
// Reset muted of all fetched users
|
2019-03-02 05:30:01 +11:00
|
|
|
each(state.users, (user) => { user.muted = false })
|
2019-03-22 12:31:16 +11:00
|
|
|
each(mutedUsers, (user) => mergeOrAdd(state.users, state.usersObject, user))
|
2019-03-02 05:30:01 +11:00
|
|
|
},
|
|
|
|
saveMuteIds (state, muteIds) {
|
2019-02-14 14:24:09 +11:00
|
|
|
state.currentUser.muteIds = muteIds
|
2019-02-14 14:04:28 +11:00
|
|
|
},
|
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-26 20:19:25 +11:00
|
|
|
setUserForNotification (state, notification) {
|
|
|
|
notification.action.user = state.usersObject[notification.action.user.id]
|
2019-04-01 05:50:34 +11:00
|
|
|
notification.from_profile = state.usersObject[notification.from_profile.id]
|
2018-12-26 20:19:25 +11: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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-31 12:57:22 +11:00
|
|
|
export const getters = {
|
2019-03-15 08:04:13 +11:00
|
|
|
findUser: state => query => {
|
|
|
|
const result = state.usersObject[query]
|
|
|
|
// In case it's a screen_name, we can try searching case-insensitive
|
|
|
|
if (!result && typeof query === 'string') {
|
|
|
|
return state.usersObject[query.toLowerCase()]
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
2018-12-31 12:57:22 +11:00
|
|
|
}
|
|
|
|
|
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,
|
2018-12-31 12:57:22 +11:00
|
|
|
getters,
|
2016-10-28 03:03:14 +11:00
|
|
|
actions: {
|
2017-11-15 03:08:03 +11:00
|
|
|
fetchUser (store, id) {
|
2019-02-22 05:32:47 +11:00
|
|
|
return store.rootState.api.backendInteractor.fetchUser({ id })
|
2019-03-13 07:10:22 +11:00
|
|
|
.then((user) => {
|
|
|
|
store.commit('addNewUsers', [user])
|
|
|
|
return user
|
|
|
|
})
|
2019-03-09 07:40:57 +11:00
|
|
|
},
|
2019-03-08 09:35:30 +11:00
|
|
|
fetchUserRelationship (store, id) {
|
|
|
|
return store.rootState.api.backendInteractor.fetchUserRelationship({ id })
|
|
|
|
.then((relationships) => store.commit('updateUserRelationship', relationships))
|
2017-11-15 03:08:03 +11:00
|
|
|
},
|
2019-02-14 04:05:23 +11:00
|
|
|
fetchBlocks (store) {
|
2019-02-14 13:08:14 +11:00
|
|
|
return store.rootState.api.backendInteractor.fetchBlocks()
|
2019-02-14 04:05:23 +11:00
|
|
|
.then((blocks) => {
|
2019-03-02 05:30:01 +11:00
|
|
|
store.commit('saveBlockIds', map(blocks, 'id'))
|
2019-03-03 00:20:56 +11:00
|
|
|
store.commit('updateBlocks', blocks)
|
2019-02-14 04:05:23 +11:00
|
|
|
return blocks
|
|
|
|
})
|
|
|
|
},
|
2019-02-24 19:02:04 +11:00
|
|
|
blockUser (store, userId) {
|
|
|
|
return store.rootState.api.backendInteractor.blockUser(userId)
|
2019-03-22 12:44:59 +11:00
|
|
|
.then((relationship) => {
|
|
|
|
store.commit('updateUserRelationship', [relationship])
|
2019-02-24 19:02:04 +11:00
|
|
|
store.commit('removeStatus', { timeline: 'friends', userId })
|
|
|
|
store.commit('removeStatus', { timeline: 'public', userId })
|
|
|
|
store.commit('removeStatus', { timeline: 'publicAndExternal', userId })
|
|
|
|
})
|
2019-02-14 07:31:20 +11:00
|
|
|
},
|
|
|
|
unblockUser (store, id) {
|
|
|
|
return store.rootState.api.backendInteractor.unblockUser(id)
|
2019-03-22 12:44:59 +11:00
|
|
|
.then((relationship) => store.commit('updateUserRelationship', [relationship]))
|
2019-02-14 07:31:20 +11:00
|
|
|
},
|
2019-02-14 14:04:28 +11:00
|
|
|
fetchMutes (store) {
|
|
|
|
return store.rootState.api.backendInteractor.fetchMutes()
|
2019-03-02 05:30:01 +11:00
|
|
|
.then((mutes) => {
|
|
|
|
store.commit('updateMutes', mutes)
|
|
|
|
store.commit('saveMuteIds', map(mutes, 'id'))
|
|
|
|
return mutes
|
2019-02-14 14:04:28 +11:00
|
|
|
})
|
|
|
|
},
|
|
|
|
muteUser (store, id) {
|
2019-02-24 19:02:04 +11:00
|
|
|
return store.rootState.api.backendInteractor.muteUser(id)
|
2019-03-22 12:53:24 +11:00
|
|
|
.then((relationship) => store.commit('updateUserRelationship', [relationship]))
|
2019-02-14 14:04:28 +11:00
|
|
|
},
|
|
|
|
unmuteUser (store, id) {
|
2019-02-24 19:02:04 +11:00
|
|
|
return store.rootState.api.backendInteractor.unmuteUser(id)
|
2019-03-22 12:53:24 +11:00
|
|
|
.then((relationship) => store.commit('updateUserRelationship', [relationship]))
|
2019-02-14 14:04:28 +11:00
|
|
|
},
|
2019-02-03 07:29:10 +11:00
|
|
|
addFriends ({ rootState, commit }, fetchBy) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const user = rootState.users.usersObject[fetchBy]
|
2019-03-28 07:04:59 +11:00
|
|
|
const maxId = user.lastFriendId
|
|
|
|
rootState.api.backendInteractor.fetchFriends({ id: user.id, maxId })
|
2019-02-03 07:29:10 +11:00
|
|
|
.then((friends) => {
|
2019-03-26 06:04:52 +11:00
|
|
|
commit('addFriends', { id: user.id, friends })
|
2019-02-03 07:29:10 +11:00
|
|
|
resolve(friends)
|
|
|
|
}).catch(() => {
|
|
|
|
reject()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
},
|
|
|
|
addFollowers ({ rootState, commit }, fetchBy) {
|
2019-02-25 18:11:39 +11:00
|
|
|
const user = rootState.users.usersObject[fetchBy]
|
2019-03-28 07:04:59 +11:00
|
|
|
const maxId = user.lastFollowerId
|
|
|
|
return rootState.api.backendInteractor.fetchFollowers({ id: user.id, maxId })
|
2019-02-25 18:11:39 +11:00
|
|
|
.then((followers) => {
|
2019-03-26 06:04:52 +11:00
|
|
|
commit('addFollowers', { id: user.id, followers })
|
2019-02-25 18:11:39 +11:00
|
|
|
return followers
|
|
|
|
})
|
2018-12-18 03:14:38 +11:00
|
|
|
},
|
2019-02-25 20:51:23 +11:00
|
|
|
clearFriends ({ commit }, userId) {
|
|
|
|
commit('clearFriends', userId)
|
|
|
|
},
|
|
|
|
clearFollowers ({ commit }, userId) {
|
|
|
|
commit('clearFollowers', userId)
|
2018-12-18 03:14:38 +11:00
|
|
|
},
|
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
|
2018-12-26 00:43:18 +11:00
|
|
|
const notificationVisibility = store.rootState.config.notificationVisibility
|
2018-12-11 02:36:25 +11:00
|
|
|
|
2018-12-26 00:43:18 +11:00
|
|
|
registerPushNotifications(isEnabled, vapidPublicKey, token, notificationVisibility)
|
2018-12-11 02:36:25 +11:00
|
|
|
},
|
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-26 20:19:25 +11:00
|
|
|
addNewNotifications (store, { notifications }) {
|
2019-01-15 06:38:37 +11:00
|
|
|
const users = map(notifications, 'from_profile')
|
2019-01-18 07:08:44 +11:00
|
|
|
const notificationIds = notifications.map(_ => _.id)
|
2018-12-26 20:19:25 +11:00
|
|
|
store.commit('addNewUsers', users)
|
|
|
|
|
|
|
|
const notificationsObject = store.rootState.statuses.notifications.idStore
|
|
|
|
const relevantNotifications = Object.entries(notificationsObject)
|
|
|
|
.filter(([k, val]) => notificationIds.includes(k))
|
|
|
|
.map(([k, val]) => val)
|
|
|
|
|
|
|
|
// Reconnect users to notifications
|
|
|
|
each(relevantNotifications, (notification) => {
|
|
|
|
store.commit('setUserForNotification', notification)
|
|
|
|
})
|
|
|
|
},
|
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 {
|
2019-02-20 01:22:42 +11:00
|
|
|
const data = await response.json()
|
|
|
|
let errors = JSON.parse(data.error)
|
|
|
|
// replace ap_id with username
|
|
|
|
if (errors.ap_id) {
|
|
|
|
errors.username = errors.ap_id
|
|
|
|
delete errors.ap_id
|
|
|
|
}
|
|
|
|
errors = humanizeErrors(errors)
|
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')
|
2019-03-11 05:23:27 +11:00
|
|
|
store.dispatch('disconnectFromChat')
|
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())
|
2019-03-02 03:59:50 +11:00
|
|
|
store.dispatch('stopFetchingNotifications')
|
2019-03-01 06:03:44 +11:00
|
|
|
store.commit('resetStatuses')
|
2017-07-02 20:25:34 +10:00
|
|
|
},
|
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)
|
2019-01-18 06:11:51 +11:00
|
|
|
.then((data) => {
|
|
|
|
if (!data.error) {
|
2019-01-18 07:01:38 +11:00
|
|
|
const user = data
|
2019-01-18 06:11:51 +11:00
|
|
|
// user.credentials = userCredentials
|
|
|
|
user.credentials = accessToken
|
2019-02-14 14:14:46 +11:00
|
|
|
user.blockIds = []
|
|
|
|
user.muteIds = []
|
2019-01-18 06:11:51 +11:00
|
|
|
commit('setCurrentUser', user)
|
|
|
|
commit('addNewUsers', [user])
|
2016-12-01 07:27:25 +11:00
|
|
|
|
2019-01-18 06:11:51 +11:00
|
|
|
getNotificationPermission()
|
|
|
|
.then(permission => commit('setNotificationPermission', permission))
|
2018-12-13 22:04:09 +11:00
|
|
|
|
2019-01-18 06:11:51 +11:00
|
|
|
// Set our new backend interactor
|
|
|
|
commit('setBackendInteractor', backendInteractorService(accessToken))
|
2016-12-01 07:27:25 +11:00
|
|
|
|
2019-01-18 06:11:51 +11:00
|
|
|
if (user.token) {
|
2019-01-30 02:16:25 +11:00
|
|
|
store.dispatch('setWsToken', user.token)
|
2019-03-11 05:23:27 +11:00
|
|
|
|
|
|
|
// Initialize the chat socket.
|
|
|
|
store.dispatch('initializeSocket')
|
2019-01-18 06:11:51 +11:00
|
|
|
}
|
2017-12-05 05:08:33 +11:00
|
|
|
|
2019-01-30 02:16:25 +11:00
|
|
|
// Start getting fresh posts.
|
2019-02-08 10:23:18 +11:00
|
|
|
store.dispatch('startFetching', { timeline: 'friends' })
|
2017-02-16 21:17:47 +11:00
|
|
|
|
2019-02-14 14:14:46 +11:00
|
|
|
// Get user mutes
|
2019-02-14 14:04:28 +11:00
|
|
|
store.dispatch('fetchMutes')
|
2017-02-21 04:01:45 +11:00
|
|
|
|
2019-01-18 06:11:51 +11:00
|
|
|
// Fetch our friends
|
|
|
|
store.rootState.api.backendInteractor.fetchFriends({ id: user.id })
|
|
|
|
.then((friends) => commit('addNewUsers', friends))
|
2017-03-09 04:28:41 +11:00
|
|
|
} else {
|
2019-01-18 06:11:51 +11:00
|
|
|
const response = data.error
|
2017-03-09 04:28:41 +11:00
|
|
|
// 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()
|
|
|
|
})
|
2019-01-18 06:11:51 +11:00
|
|
|
.catch((error) => {
|
|
|
|
console.log(error)
|
|
|
|
commit('endLogin')
|
|
|
|
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
|