2016-11-26 18:57:08 +01:00
|
|
|
import backendInteractorService from '../services/backend_interactor_service/backend_interactor_service.js'
|
2022-05-16 22:40:51 +02:00
|
|
|
import { windowWidth, windowHeight } from '../services/window_utils/window_utils'
|
2019-07-02 10:33:40 +02:00
|
|
|
import oauthApi from '../services/new_api/oauth.js'
|
2019-11-17 14:34:00 +01:00
|
|
|
import { compact, map, each, mergeWith, last, concat, uniq, isArray } from 'lodash'
|
2018-12-20 07:17:59 +01:00
|
|
|
import { registerPushNotifications, unregisterPushNotifications } from '../services/push/push.js'
|
2016-10-27 18:03:14 +02:00
|
|
|
|
2016-11-30 18:29:44 +01:00
|
|
|
// TODO: Unify with mergeOrAdd in statuses.js
|
2017-03-08 17:59:12 +01:00
|
|
|
export const mergeOrAdd = (arr, obj, item) => {
|
2016-11-30 23:32:22 +01:00
|
|
|
if (!item) { return false }
|
2017-03-08 17:59:12 +01:00
|
|
|
const oldItem = obj[item.id]
|
2016-11-30 18:29:44 +01:00
|
|
|
if (oldItem) {
|
|
|
|
// We already have this, so only merge the new info.
|
2019-11-17 14:34:00 +01:00
|
|
|
mergeWith(oldItem, item, mergeArrayLength)
|
2018-12-13 12:22:15 +01:00
|
|
|
return { item: oldItem, new: false }
|
2016-11-30 18:29:44 +01:00
|
|
|
} else {
|
|
|
|
// This is a new item, prepare it
|
|
|
|
arr.push(item)
|
2021-04-25 12:24:08 +02:00
|
|
|
obj[item.id] = item
|
2018-12-13 12:22:15 +01:00
|
|
|
return { item, new: true }
|
2016-11-30 18:29:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-17 14:34:00 +01:00
|
|
|
const mergeArrayLength = (oldValue, newValue) => {
|
|
|
|
if (isArray(oldValue) && isArray(newValue)) {
|
|
|
|
oldValue.length = newValue.length
|
|
|
|
return mergeWith(oldValue, newValue, mergeArrayLength)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-13 12:04:09 +01: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)
|
|
|
|
}
|
|
|
|
|
2019-04-04 20:02:46 +02:00
|
|
|
const blockUser = (store, id) => {
|
2019-11-24 12:57:46 +01:00
|
|
|
return store.rootState.api.backendInteractor.blockUser({ id })
|
2019-04-04 19:54:52 +02:00
|
|
|
.then((relationship) => {
|
|
|
|
store.commit('updateUserRelationship', [relationship])
|
2019-04-04 20:02:46 +02:00
|
|
|
store.commit('addBlockId', id)
|
|
|
|
store.commit('removeStatus', { timeline: 'friends', userId: id })
|
|
|
|
store.commit('removeStatus', { timeline: 'public', userId: id })
|
|
|
|
store.commit('removeStatus', { timeline: 'publicAndExternal', userId: id })
|
2019-04-04 19:54:52 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-04-04 20:02:46 +02:00
|
|
|
const unblockUser = (store, id) => {
|
2019-11-24 12:57:46 +01:00
|
|
|
return store.rootState.api.backendInteractor.unblockUser({ id })
|
2019-04-04 20:02:46 +02:00
|
|
|
.then((relationship) => store.commit('updateUserRelationship', [relationship]))
|
|
|
|
}
|
|
|
|
|
2022-09-16 06:02:58 +02:00
|
|
|
const removeUserFromFollowers = (store, id) => {
|
|
|
|
return store.rootState.api.backendInteractor.removeUserFromFollowers({ id })
|
|
|
|
.then((relationship) => store.commit('updateUserRelationship', [relationship]))
|
|
|
|
}
|
|
|
|
|
2019-04-04 20:02:46 +02:00
|
|
|
const muteUser = (store, id) => {
|
2020-04-24 17:53:17 +02:00
|
|
|
const predictedRelationship = store.state.relationships[id] || { id }
|
|
|
|
predictedRelationship.muting = true
|
|
|
|
store.commit('updateUserRelationship', [predictedRelationship])
|
|
|
|
store.commit('addMuteId', id)
|
|
|
|
|
2019-11-24 12:57:46 +01:00
|
|
|
return store.rootState.api.backendInteractor.muteUser({ id })
|
2019-04-04 20:02:46 +02:00
|
|
|
.then((relationship) => {
|
|
|
|
store.commit('updateUserRelationship', [relationship])
|
|
|
|
store.commit('addMuteId', id)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
const unmuteUser = (store, id) => {
|
2020-04-24 17:53:17 +02:00
|
|
|
const predictedRelationship = store.state.relationships[id] || { id }
|
|
|
|
predictedRelationship.muting = false
|
|
|
|
store.commit('updateUserRelationship', [predictedRelationship])
|
|
|
|
|
2019-11-24 12:57:46 +01:00
|
|
|
return store.rootState.api.backendInteractor.unmuteUser({ id })
|
2019-04-04 19:54:52 +02:00
|
|
|
.then((relationship) => store.commit('updateUserRelationship', [relationship]))
|
|
|
|
}
|
|
|
|
|
2019-09-21 15:24:47 +02:00
|
|
|
const hideReblogs = (store, userId) => {
|
|
|
|
return store.rootState.api.backendInteractor.followUser({ id: userId, reblogs: false })
|
|
|
|
.then((relationship) => {
|
|
|
|
store.commit('updateUserRelationship', [relationship])
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
const showReblogs = (store, userId) => {
|
|
|
|
return store.rootState.api.backendInteractor.followUser({ id: userId, reblogs: true })
|
|
|
|
.then((relationship) => store.commit('updateUserRelationship', [relationship]))
|
|
|
|
}
|
|
|
|
|
2020-01-15 21:22:54 +01:00
|
|
|
const muteDomain = (store, domain) => {
|
|
|
|
return store.rootState.api.backendInteractor.muteDomain({ domain })
|
|
|
|
.then(() => store.commit('addDomainMute', domain))
|
|
|
|
}
|
|
|
|
|
|
|
|
const unmuteDomain = (store, domain) => {
|
|
|
|
return store.rootState.api.backendInteractor.unmuteDomain({ domain })
|
|
|
|
.then(() => store.commit('removeDomainMute', domain))
|
|
|
|
}
|
|
|
|
|
2016-11-30 18:29:44 +01:00
|
|
|
export const mutations = {
|
2019-02-18 15:49:32 +01:00
|
|
|
tagUser (state, { user: { id }, tag }) {
|
|
|
|
const user = state.usersObject[id]
|
|
|
|
const tags = user.tags || []
|
|
|
|
const newTags = tags.concat([tag])
|
2022-07-31 11:35:48 +02:00
|
|
|
user.tags = newTags
|
2019-02-18 15:49:32 +01:00
|
|
|
},
|
|
|
|
untagUser (state, { user: { id }, tag }) {
|
|
|
|
const user = state.usersObject[id]
|
|
|
|
const tags = user.tags || []
|
|
|
|
const newTags = tags.filter(t => t !== tag)
|
2022-07-31 11:35:48 +02:00
|
|
|
user.tags = newTags
|
2019-02-18 15:49:32 +01:00
|
|
|
},
|
|
|
|
updateRight (state, { user: { id }, right, value }) {
|
|
|
|
const user = state.usersObject[id]
|
2022-07-31 11:35:48 +02:00
|
|
|
const newRights = user.rights
|
2019-02-18 15:49:32 +01:00
|
|
|
newRights[right] = value
|
2022-07-31 11:35:48 +02:00
|
|
|
user.rights = newRights
|
2019-02-18 15:49:32 +01:00
|
|
|
},
|
2019-11-19 02:42:10 +01:00
|
|
|
updateActivationStatus (state, { user: { id }, deactivated }) {
|
2019-02-18 15:49:32 +01:00
|
|
|
const user = state.usersObject[id]
|
2022-07-31 11:35:48 +02:00
|
|
|
user.deactivated = deactivated
|
2019-02-18 15:49:32 +01:00
|
|
|
},
|
2016-11-30 18:29:44 +01:00
|
|
|
setCurrentUser (state, user) {
|
2017-07-02 13:07:35 +02:00
|
|
|
state.lastLoginName = user.screen_name
|
2019-11-17 14:34:00 +01:00
|
|
|
state.currentUser = mergeWith(state.currentUser || {}, user, mergeArrayLength)
|
2016-10-27 18:03:14 +02:00
|
|
|
},
|
2017-07-02 12:25:34 +02:00
|
|
|
clearCurrentUser (state) {
|
|
|
|
state.currentUser = false
|
2017-07-02 13:07:35 +02:00
|
|
|
state.lastLoginName = false
|
2017-07-02 12:25:34 +02:00
|
|
|
},
|
2016-11-30 18:29:44 +01:00
|
|
|
beginLogin (state) {
|
|
|
|
state.loggingIn = true
|
|
|
|
},
|
|
|
|
endLogin (state) {
|
|
|
|
state.loggingIn = false
|
2016-10-27 18:03:14 +02:00
|
|
|
},
|
2019-04-10 19:49:39 +02:00
|
|
|
saveFriendIds (state, { id, friendIds }) {
|
2018-12-17 17:14:38 +01:00
|
|
|
const user = state.usersObject[id]
|
2020-11-17 14:25:38 +01:00
|
|
|
user.friendIds = uniq(concat(user.friendIds || [], friendIds))
|
2018-12-17 17:14:38 +01:00
|
|
|
},
|
2019-04-10 19:49:39 +02:00
|
|
|
saveFollowerIds (state, { id, followerIds }) {
|
2018-12-17 17:14:38 +01:00
|
|
|
const user = state.usersObject[id]
|
2020-11-17 14:25:38 +01:00
|
|
|
user.followerIds = uniq(concat(user.followerIds || [], followerIds))
|
2019-02-02 21:29:10 +01:00
|
|
|
},
|
|
|
|
// Because frontend doesn't have a reason to keep these stuff in memory
|
|
|
|
// outside of viewing someones user profile.
|
2019-02-25 10:51:23 +01:00
|
|
|
clearFriends (state, userId) {
|
|
|
|
const user = state.usersObject[userId]
|
2019-04-10 19:49:39 +02:00
|
|
|
if (user) {
|
2022-07-31 11:35:48 +02:00
|
|
|
user.friendIds = []
|
2019-02-02 21:29:10 +01:00
|
|
|
}
|
2019-02-25 10:51:23 +01:00
|
|
|
},
|
|
|
|
clearFollowers (state, userId) {
|
|
|
|
const user = state.usersObject[userId]
|
2019-04-10 19:49:39 +02:00
|
|
|
if (user) {
|
2022-07-31 11:35:48 +02:00
|
|
|
user.followerIds = []
|
2019-02-25 10:51:23 +01:00
|
|
|
}
|
2018-12-17 17:14:38 +01:00
|
|
|
},
|
2016-11-30 18:29:44 +01:00
|
|
|
addNewUsers (state, users) {
|
2020-04-21 22:27:51 +02:00
|
|
|
each(users, (user) => {
|
|
|
|
if (user.relationship) {
|
2021-04-25 12:24:08 +02:00
|
|
|
state.relationships[user.relationship.id] = user.relationship
|
2020-04-21 22:27:51 +02:00
|
|
|
}
|
2022-08-10 18:17:18 +02:00
|
|
|
const res = mergeOrAdd(state.users, state.usersObject, user)
|
|
|
|
const item = res.item
|
|
|
|
if (res.new && item.screen_name && !item.screen_name.includes('@')) {
|
|
|
|
state.usersByNameObject[item.screen_name.toLowerCase()] = item
|
|
|
|
}
|
2020-04-21 22:27:51 +02:00
|
|
|
})
|
2017-02-16 14:23:59 +01:00
|
|
|
},
|
2019-03-07 23:35:30 +01:00
|
|
|
updateUserRelationship (state, relationships) {
|
|
|
|
relationships.forEach((relationship) => {
|
2021-04-25 12:24:08 +02:00
|
|
|
state.relationships[relationship.id] = relationship
|
2019-03-07 23:35:30 +01:00
|
|
|
})
|
|
|
|
},
|
2022-08-15 22:19:33 +02:00
|
|
|
updateUserInLists (state, { id, inLists }) {
|
|
|
|
state.usersObject[id].inLists = inLists
|
|
|
|
},
|
2019-03-01 19:30:01 +01:00
|
|
|
saveBlockIds (state, blockIds) {
|
2019-02-14 04:24:09 +01:00
|
|
|
state.currentUser.blockIds = blockIds
|
2019-02-13 18:05:23 +01:00
|
|
|
},
|
2019-04-02 20:56:37 +02:00
|
|
|
addBlockId (state, blockId) {
|
|
|
|
if (state.currentUser.blockIds.indexOf(blockId) === -1) {
|
|
|
|
state.currentUser.blockIds.push(blockId)
|
|
|
|
}
|
|
|
|
},
|
2019-03-01 19:30:01 +01:00
|
|
|
saveMuteIds (state, muteIds) {
|
2019-02-14 04:24:09 +01:00
|
|
|
state.currentUser.muteIds = muteIds
|
2019-02-14 04:04:28 +01:00
|
|
|
},
|
2019-04-02 22:23:12 +02:00
|
|
|
addMuteId (state, muteId) {
|
|
|
|
if (state.currentUser.muteIds.indexOf(muteId) === -1) {
|
|
|
|
state.currentUser.muteIds.push(muteId)
|
|
|
|
}
|
|
|
|
},
|
2020-01-15 21:22:54 +01:00
|
|
|
saveDomainMutes (state, domainMutes) {
|
|
|
|
state.currentUser.domainMutes = domainMutes
|
|
|
|
},
|
|
|
|
addDomainMute (state, domain) {
|
|
|
|
if (state.currentUser.domainMutes.indexOf(domain) === -1) {
|
|
|
|
state.currentUser.domainMutes.push(domain)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
removeDomainMute (state, domain) {
|
|
|
|
const index = state.currentUser.domainMutes.indexOf(domain)
|
|
|
|
if (index !== -1) {
|
|
|
|
state.currentUser.domainMutes.splice(index, 1)
|
|
|
|
}
|
|
|
|
},
|
2019-08-30 21:55:28 +02:00
|
|
|
setPinnedToUser (state, status) {
|
2019-04-30 14:20:19 +02:00
|
|
|
const user = state.usersObject[status.user.id]
|
2020-11-17 14:25:38 +01:00
|
|
|
user.pinnedStatusIds = user.pinnedStatusIds || []
|
2019-07-20 04:49:29 +02:00
|
|
|
const index = user.pinnedStatusIds.indexOf(status.id)
|
2020-11-17 14:25:38 +01:00
|
|
|
|
2019-04-30 14:20:19 +02:00
|
|
|
if (status.pinned && index === -1) {
|
2019-07-20 04:49:29 +02:00
|
|
|
user.pinnedStatusIds.push(status.id)
|
2019-04-30 14:20:19 +02:00
|
|
|
} else if (!status.pinned && index !== -1) {
|
2019-07-20 04:49:29 +02:00
|
|
|
user.pinnedStatusIds.splice(index, 1)
|
2019-04-30 14:20:19 +02:00
|
|
|
}
|
|
|
|
},
|
2017-02-16 14:23:59 +01:00
|
|
|
setUserForStatus (state, status) {
|
2017-03-08 18:04:21 +01:00
|
|
|
status.user = state.usersObject[status.user.id]
|
2018-06-18 10:36:58 +02:00
|
|
|
},
|
2018-12-26 10:19:25 +01:00
|
|
|
setUserForNotification (state, notification) {
|
2019-04-01 03:59:18 +02:00
|
|
|
if (notification.type !== 'follow') {
|
|
|
|
notification.action.user = state.usersObject[notification.action.user.id]
|
|
|
|
}
|
2019-03-31 20:50:34 +02:00
|
|
|
notification.from_profile = state.usersObject[notification.from_profile.id]
|
2018-12-26 10:19:25 +01:00
|
|
|
},
|
2018-12-13 12:22:15 +01:00
|
|
|
setColor (state, { user: { id }, highlighted }) {
|
2018-06-18 10:36:58 +02:00
|
|
|
const user = state.usersObject[id]
|
2022-07-31 11:35:48 +02:00
|
|
|
user.highlight = highlighted
|
2018-12-05 10:43:01 +01:00
|
|
|
},
|
2018-12-05 20:07:58 +01:00
|
|
|
signUpPending (state) {
|
|
|
|
state.signUpPending = true
|
|
|
|
state.signUpErrors = []
|
2018-12-05 10:43:01 +01:00
|
|
|
},
|
2018-12-05 20:07:58 +01:00
|
|
|
signUpSuccess (state) {
|
|
|
|
state.signUpPending = false
|
2018-12-05 10:43:01 +01:00
|
|
|
},
|
2018-12-05 20:07:58 +01:00
|
|
|
signUpFailure (state, errors) {
|
|
|
|
state.signUpPending = false
|
|
|
|
state.signUpErrors = errors
|
2016-11-30 18:29:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-31 02:57:22 +01:00
|
|
|
export const getters = {
|
2019-03-14 22:04:13 +01:00
|
|
|
findUser: state => query => {
|
2022-08-10 18:17:18 +02:00
|
|
|
return state.usersObject[query]
|
|
|
|
},
|
|
|
|
findUserByName: state => query => {
|
|
|
|
return state.usersByNameObject[query.toLowerCase()]
|
2020-04-24 17:53:17 +02:00
|
|
|
},
|
2021-06-07 15:16:10 +02:00
|
|
|
findUserByUrl: state => query => {
|
|
|
|
return state.users
|
2021-06-07 19:01:57 +02:00
|
|
|
.find(u => u.statusnet_profile_url &&
|
|
|
|
u.statusnet_profile_url.toLowerCase() === query.toLowerCase())
|
2021-06-07 15:16:10 +02:00
|
|
|
},
|
2020-04-24 17:53:17 +02:00
|
|
|
relationship: state => id => {
|
2020-04-27 09:06:17 +02:00
|
|
|
const rel = id && state.relationships[id]
|
|
|
|
return rel || { id, loading: true }
|
2019-03-14 22:04:13 +01:00
|
|
|
}
|
2018-12-31 02:57:22 +01:00
|
|
|
}
|
|
|
|
|
2016-11-30 18:29:44 +01:00
|
|
|
export const defaultState = {
|
2018-12-05 20:07:58 +01:00
|
|
|
loggingIn: false,
|
2017-07-02 13:07:35 +02:00
|
|
|
lastLoginName: false,
|
2016-11-30 18:29:44 +01:00
|
|
|
currentUser: false,
|
2017-03-08 17:59:12 +01:00
|
|
|
users: [],
|
2018-12-05 10:43:01 +01:00
|
|
|
usersObject: {},
|
2022-08-10 18:17:18 +02:00
|
|
|
usersByNameObject: {},
|
2018-12-05 20:07:58 +01:00
|
|
|
signUpPending: false,
|
2020-04-21 22:27:51 +02:00
|
|
|
signUpErrors: [],
|
|
|
|
relationships: {}
|
2016-11-30 18:29:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const users = {
|
|
|
|
state: defaultState,
|
|
|
|
mutations,
|
2018-12-31 02:57:22 +01:00
|
|
|
getters,
|
2016-10-27 18:03:14 +02:00
|
|
|
actions: {
|
2020-07-07 14:39:43 +02:00
|
|
|
fetchUserIfMissing (store, id) {
|
|
|
|
if (!store.getters.findUser(id)) {
|
|
|
|
store.dispatch('fetchUser', id)
|
|
|
|
}
|
|
|
|
},
|
2017-11-14 17:08:03 +01:00
|
|
|
fetchUser (store, id) {
|
2019-02-21 19:32:47 +01:00
|
|
|
return store.rootState.api.backendInteractor.fetchUser({ id })
|
2019-03-12 21:10:22 +01:00
|
|
|
.then((user) => {
|
|
|
|
store.commit('addNewUsers', [user])
|
|
|
|
return user
|
|
|
|
})
|
2019-03-08 21:40:57 +01:00
|
|
|
},
|
2022-08-10 04:11:55 +02:00
|
|
|
fetchUserByName (store, name) {
|
|
|
|
return store.rootState.api.backendInteractor.fetchUserByName({ name })
|
|
|
|
.then((user) => {
|
|
|
|
store.commit('addNewUsers', [user])
|
|
|
|
return user
|
|
|
|
})
|
|
|
|
},
|
2019-03-07 23:35:30 +01:00
|
|
|
fetchUserRelationship (store, id) {
|
2019-04-18 04:47:56 +02:00
|
|
|
if (store.state.currentUser) {
|
|
|
|
store.rootState.api.backendInteractor.fetchUserRelationship({ id })
|
|
|
|
.then((relationships) => store.commit('updateUserRelationship', relationships))
|
|
|
|
}
|
2017-11-14 17:08:03 +01:00
|
|
|
},
|
2022-08-15 22:19:33 +02:00
|
|
|
fetchUserInLists (store, id) {
|
|
|
|
if (store.state.currentUser) {
|
|
|
|
store.rootState.api.backendInteractor.fetchUserInLists({ id })
|
|
|
|
.then((inLists) => store.commit('updateUserInLists', { id, inLists }))
|
|
|
|
}
|
|
|
|
},
|
2019-02-13 18:05:23 +01:00
|
|
|
fetchBlocks (store) {
|
2019-02-14 03:08:14 +01:00
|
|
|
return store.rootState.api.backendInteractor.fetchBlocks()
|
2019-02-13 18:05:23 +01:00
|
|
|
.then((blocks) => {
|
2019-03-01 19:30:01 +01:00
|
|
|
store.commit('saveBlockIds', map(blocks, 'id'))
|
2020-04-21 22:27:51 +02:00
|
|
|
store.commit('addNewUsers', blocks)
|
2019-02-13 18:05:23 +01:00
|
|
|
return blocks
|
|
|
|
})
|
|
|
|
},
|
2019-04-04 20:02:46 +02:00
|
|
|
blockUser (store, id) {
|
|
|
|
return blockUser(store, id)
|
2019-04-04 19:54:52 +02:00
|
|
|
},
|
2019-04-04 20:02:46 +02:00
|
|
|
unblockUser (store, id) {
|
|
|
|
return unblockUser(store, id)
|
2019-04-04 19:54:52 +02:00
|
|
|
},
|
2022-09-16 06:02:58 +02:00
|
|
|
removeUserFromFollowers (store, id) {
|
|
|
|
return removeUserFromFollowers(store, id)
|
|
|
|
},
|
2019-04-04 20:02:46 +02:00
|
|
|
blockUsers (store, ids = []) {
|
|
|
|
return Promise.all(ids.map(id => blockUser(store, id)))
|
2019-02-13 21:31:20 +01:00
|
|
|
},
|
2019-04-04 20:02:46 +02:00
|
|
|
unblockUsers (store, ids = []) {
|
|
|
|
return Promise.all(ids.map(id => unblockUser(store, id)))
|
2019-02-13 21:31:20 +01:00
|
|
|
},
|
2019-02-14 04:04:28 +01:00
|
|
|
fetchMutes (store) {
|
|
|
|
return store.rootState.api.backendInteractor.fetchMutes()
|
2019-03-01 19:30:01 +01:00
|
|
|
.then((mutes) => {
|
|
|
|
store.commit('saveMuteIds', map(mutes, 'id'))
|
2020-04-21 22:27:51 +02:00
|
|
|
store.commit('addNewUsers', mutes)
|
2019-03-01 19:30:01 +01:00
|
|
|
return mutes
|
2019-02-14 04:04:28 +01:00
|
|
|
})
|
|
|
|
},
|
|
|
|
muteUser (store, id) {
|
2019-04-04 20:02:46 +02:00
|
|
|
return muteUser(store, id)
|
2019-02-14 04:04:28 +01:00
|
|
|
},
|
|
|
|
unmuteUser (store, id) {
|
2019-04-04 20:02:46 +02:00
|
|
|
return unmuteUser(store, id)
|
|
|
|
},
|
2019-09-21 15:24:47 +02:00
|
|
|
hideReblogs (store, id) {
|
|
|
|
return hideReblogs(store, id)
|
|
|
|
},
|
|
|
|
showReblogs (store, id) {
|
|
|
|
return showReblogs(store, id)
|
|
|
|
},
|
2019-04-04 20:02:46 +02:00
|
|
|
muteUsers (store, ids = []) {
|
|
|
|
return Promise.all(ids.map(id => muteUser(store, id)))
|
|
|
|
},
|
|
|
|
unmuteUsers (store, ids = []) {
|
|
|
|
return Promise.all(ids.map(id => unmuteUser(store, id)))
|
2019-02-14 04:04:28 +01:00
|
|
|
},
|
2020-01-15 21:22:54 +01:00
|
|
|
fetchDomainMutes (store) {
|
|
|
|
return store.rootState.api.backendInteractor.fetchDomainMutes()
|
|
|
|
.then((domainMutes) => {
|
|
|
|
store.commit('saveDomainMutes', domainMutes)
|
|
|
|
return domainMutes
|
|
|
|
})
|
|
|
|
},
|
|
|
|
muteDomain (store, domain) {
|
|
|
|
return muteDomain(store, domain)
|
|
|
|
},
|
|
|
|
unmuteDomain (store, domain) {
|
|
|
|
return unmuteDomain(store, domain)
|
|
|
|
},
|
|
|
|
muteDomains (store, domains = []) {
|
|
|
|
return Promise.all(domains.map(domain => muteDomain(store, domain)))
|
|
|
|
},
|
|
|
|
unmuteDomains (store, domain = []) {
|
|
|
|
return Promise.all(domain.map(domain => unmuteDomain(store, domain)))
|
|
|
|
},
|
2019-04-10 19:49:39 +02:00
|
|
|
fetchFriends ({ rootState, commit }, id) {
|
|
|
|
const user = rootState.users.usersObject[id]
|
|
|
|
const maxId = last(user.friendIds)
|
|
|
|
return rootState.api.backendInteractor.fetchFriends({ id, maxId })
|
|
|
|
.then((friends) => {
|
|
|
|
commit('addNewUsers', friends)
|
|
|
|
commit('saveFriendIds', { id, friendIds: map(friends, 'id') })
|
|
|
|
return friends
|
|
|
|
})
|
2019-02-02 21:29:10 +01:00
|
|
|
},
|
2019-04-10 19:49:39 +02:00
|
|
|
fetchFollowers ({ rootState, commit }, id) {
|
|
|
|
const user = rootState.users.usersObject[id]
|
|
|
|
const maxId = last(user.followerIds)
|
|
|
|
return rootState.api.backendInteractor.fetchFollowers({ id, maxId })
|
2019-02-25 08:11:39 +01:00
|
|
|
.then((followers) => {
|
2019-04-10 19:49:39 +02:00
|
|
|
commit('addNewUsers', followers)
|
|
|
|
commit('saveFollowerIds', { id, followerIds: map(followers, 'id') })
|
2019-02-25 08:11:39 +01:00
|
|
|
return followers
|
|
|
|
})
|
2018-12-17 17:14:38 +01:00
|
|
|
},
|
2019-02-25 10:51:23 +01:00
|
|
|
clearFriends ({ commit }, userId) {
|
|
|
|
commit('clearFriends', userId)
|
|
|
|
},
|
|
|
|
clearFollowers ({ commit }, userId) {
|
|
|
|
commit('clearFollowers', userId)
|
2018-12-17 17:14:38 +01:00
|
|
|
},
|
2019-04-25 10:30:08 +02:00
|
|
|
subscribeUser ({ rootState, commit }, id) {
|
2019-11-24 12:57:46 +01:00
|
|
|
return rootState.api.backendInteractor.subscribeUser({ id })
|
2019-04-25 10:30:08 +02:00
|
|
|
.then((relationship) => commit('updateUserRelationship', [relationship]))
|
|
|
|
},
|
|
|
|
unsubscribeUser ({ rootState, commit }, id) {
|
2019-11-24 12:57:46 +01:00
|
|
|
return rootState.api.backendInteractor.unsubscribeUser({ id })
|
2019-04-25 10:30:08 +02:00
|
|
|
.then((relationship) => commit('updateUserRelationship', [relationship]))
|
|
|
|
},
|
2020-02-10 21:53:56 +01:00
|
|
|
toggleActivationStatus ({ rootState, commit }, { user }) {
|
2019-11-19 20:41:39 +01:00
|
|
|
const api = user.deactivated ? rootState.api.backendInteractor.activateUser : rootState.api.backendInteractor.deactivateUser
|
2020-02-10 21:53:56 +01:00
|
|
|
api({ user })
|
2022-07-31 11:35:48 +02:00
|
|
|
.then((user) => { const deactivated = !user.is_active; commit('updateActivationStatus', { user, deactivated }) })
|
2019-11-19 02:42:10 +01:00
|
|
|
},
|
2018-12-10 16:36:25 +01:00
|
|
|
registerPushNotifications (store) {
|
|
|
|
const token = store.state.currentUser.credentials
|
|
|
|
const vapidPublicKey = store.rootState.instance.vapidPublicKey
|
|
|
|
const isEnabled = store.rootState.config.webPushNotifications
|
2018-12-25 14:43:18 +01:00
|
|
|
const notificationVisibility = store.rootState.config.notificationVisibility
|
2018-12-10 16:36:25 +01:00
|
|
|
|
2018-12-25 14:43:18 +01:00
|
|
|
registerPushNotifications(isEnabled, vapidPublicKey, token, notificationVisibility)
|
2018-12-10 16:36:25 +01:00
|
|
|
},
|
2018-12-20 07:17:59 +01:00
|
|
|
unregisterPushNotifications (store) {
|
2018-12-25 01:46:19 +01:00
|
|
|
const token = store.state.currentUser.credentials
|
|
|
|
|
|
|
|
unregisterPushNotifications(token)
|
2018-12-20 07:17:59 +01:00
|
|
|
},
|
2019-04-02 19:49:48 +02:00
|
|
|
addNewUsers ({ commit }, users) {
|
|
|
|
commit('addNewUsers', users)
|
|
|
|
},
|
2016-11-30 18:29:44 +01:00
|
|
|
addNewStatuses (store, { statuses }) {
|
|
|
|
const users = map(statuses, 'user')
|
2016-12-08 09:08:59 +01:00
|
|
|
const retweetedUsers = compact(map(statuses, 'retweeted_status.user'))
|
2016-11-30 18:29:44 +01:00
|
|
|
store.commit('addNewUsers', users)
|
2016-12-08 09:08:59 +01:00
|
|
|
store.commit('addNewUsers', retweetedUsers)
|
2017-02-14 00:01:50 +01:00
|
|
|
|
|
|
|
each(statuses, (status) => {
|
2019-04-30 14:20:19 +02:00
|
|
|
// Reconnect users to statuses
|
2017-02-16 14:23:59 +01:00
|
|
|
store.commit('setUserForStatus', status)
|
2019-04-30 14:20:19 +02:00
|
|
|
// Set pinned statuses to user
|
2019-08-30 21:55:28 +02:00
|
|
|
store.commit('setPinnedToUser', status)
|
2017-02-14 00:01:50 +01:00
|
|
|
})
|
|
|
|
each(compact(map(statuses, 'retweeted_status')), (status) => {
|
2019-04-30 14:20:19 +02:00
|
|
|
// Reconnect users to retweets
|
2017-02-16 14:23:59 +01:00
|
|
|
store.commit('setUserForStatus', status)
|
2019-04-30 14:20:19 +02:00
|
|
|
// Set pinned retweets to user
|
2019-08-30 21:55:28 +02:00
|
|
|
store.commit('setPinnedToUser', status)
|
2017-02-14 00:01:50 +01:00
|
|
|
})
|
2016-11-30 18:29:44 +01:00
|
|
|
},
|
2018-12-26 10:19:25 +01:00
|
|
|
addNewNotifications (store, { notifications }) {
|
2019-01-14 20:38:37 +01:00
|
|
|
const users = map(notifications, 'from_profile')
|
2020-04-21 22:27:51 +02:00
|
|
|
const targetUsers = map(notifications, 'target').filter(_ => _)
|
2019-01-17 21:08:44 +01:00
|
|
|
const notificationIds = notifications.map(_ => _.id)
|
2018-12-26 10:19:25 +01:00
|
|
|
store.commit('addNewUsers', users)
|
2019-12-11 10:48:18 +01:00
|
|
|
store.commit('addNewUsers', targetUsers)
|
2018-12-26 10:19:25 +01:00
|
|
|
|
|
|
|
const notificationsObject = store.rootState.statuses.notifications.idStore
|
|
|
|
const relevantNotifications = Object.entries(notificationsObject)
|
2019-07-05 09:02:14 +02:00
|
|
|
.filter(([k, val]) => notificationIds.includes(k))
|
|
|
|
.map(([k, val]) => val)
|
2018-12-26 10:19:25 +01:00
|
|
|
|
|
|
|
// Reconnect users to notifications
|
|
|
|
each(relevantNotifications, (notification) => {
|
|
|
|
store.commit('setUserForNotification', notification)
|
|
|
|
})
|
|
|
|
},
|
2020-06-18 11:29:13 +02:00
|
|
|
searchUsers ({ rootState, commit }, { query }) {
|
|
|
|
return rootState.api.backendInteractor.searchUsers({ query })
|
2019-04-11 21:46:44 +02:00
|
|
|
.then((users) => {
|
2020-06-18 11:29:13 +02:00
|
|
|
commit('addNewUsers', users)
|
2019-04-11 21:46:44 +02:00
|
|
|
return users
|
|
|
|
})
|
|
|
|
},
|
2018-12-05 10:43:01 +01:00
|
|
|
async signUp (store, userInfo) {
|
2018-12-05 20:07:58 +01:00
|
|
|
store.commit('signUpPending')
|
2018-12-05 10:43:01 +01:00
|
|
|
|
2022-07-31 11:35:48 +02:00
|
|
|
const rootState = store.rootState
|
2018-12-05 16:17:29 +01:00
|
|
|
|
2019-05-22 18:13:41 +02:00
|
|
|
try {
|
2022-07-31 11:35:48 +02:00
|
|
|
const data = await rootState.api.backendInteractor.register(
|
2020-01-14 14:45:00 +01:00
|
|
|
{ params: { ...userInfo } }
|
|
|
|
)
|
2018-12-05 20:07:58 +01:00
|
|
|
store.commit('signUpSuccess')
|
2019-05-22 18:13:41 +02:00
|
|
|
store.commit('setToken', data.access_token)
|
|
|
|
store.dispatch('loginUser', data.access_token)
|
|
|
|
} catch (e) {
|
2022-07-31 11:35:48 +02:00
|
|
|
const errors = e.message
|
2018-12-05 20:07:58 +01:00
|
|
|
store.commit('signUpFailure', errors)
|
2019-08-06 20:03:31 +02:00
|
|
|
throw e
|
2018-12-05 10:43:01 +01:00
|
|
|
}
|
|
|
|
},
|
2018-12-16 18:53:41 +01:00
|
|
|
async getCaptcha (store) {
|
2019-07-06 23:54:17 +02:00
|
|
|
return store.rootState.api.backendInteractor.getCaptcha()
|
2018-12-16 18:53:41 +01:00
|
|
|
},
|
|
|
|
|
2017-07-02 12:25:34 +02:00
|
|
|
logout (store) {
|
2019-07-02 10:33:40 +02:00
|
|
|
const { oauth, instance } = store.rootState
|
|
|
|
|
|
|
|
const data = {
|
|
|
|
...oauth,
|
|
|
|
commit: store.commit,
|
|
|
|
instance: instance.server
|
|
|
|
}
|
|
|
|
|
|
|
|
return oauthApi.getOrCreateApp(data)
|
|
|
|
.then((app) => {
|
|
|
|
const params = {
|
|
|
|
app,
|
|
|
|
instance: data.instance,
|
|
|
|
token: oauth.userToken
|
|
|
|
}
|
|
|
|
|
|
|
|
return oauthApi.revokeToken(params)
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
store.commit('clearCurrentUser')
|
2019-08-17 10:18:42 +02:00
|
|
|
store.dispatch('disconnectFromSocket')
|
2019-07-02 10:33:40 +02:00
|
|
|
store.commit('clearToken')
|
2019-12-08 15:05:41 +01:00
|
|
|
store.dispatch('stopFetchingTimeline', 'friends')
|
2019-07-02 10:33:40 +02:00
|
|
|
store.commit('setBackendInteractor', backendInteractorService(store.getters.getToken()))
|
2019-12-08 15:05:41 +01:00
|
|
|
store.dispatch('stopFetchingNotifications')
|
2022-08-15 19:43:38 +02:00
|
|
|
store.dispatch('stopFetchingLists')
|
2019-12-08 15:05:41 +01:00
|
|
|
store.dispatch('stopFetchingFollowRequests')
|
2019-07-02 10:33:40 +02:00
|
|
|
store.commit('clearNotifications')
|
|
|
|
store.commit('resetStatuses')
|
2020-05-07 15:10:53 +02:00
|
|
|
store.dispatch('resetChats')
|
2020-07-23 14:09:32 +02:00
|
|
|
store.dispatch('setLastTimeline', 'public-timeline')
|
2022-05-16 22:40:51 +02:00
|
|
|
store.dispatch('setLayoutWidth', windowWidth())
|
|
|
|
store.dispatch('setLayoutHeight', windowHeight())
|
2022-08-12 00:19:19 +02:00
|
|
|
store.commit('clearServerSideStorage')
|
2019-07-02 10:33:40 +02:00
|
|
|
})
|
2017-07-02 12:25:34 +02:00
|
|
|
},
|
2018-10-26 15:16:23 +02:00
|
|
|
loginUser (store, accessToken) {
|
2017-03-08 18:28:41 +01:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const commit = store.commit
|
|
|
|
commit('beginLogin')
|
2018-10-26 15:16:23 +02:00
|
|
|
store.rootState.api.backendInteractor.verifyCredentials(accessToken)
|
2019-01-17 20:11:51 +01:00
|
|
|
.then((data) => {
|
|
|
|
if (!data.error) {
|
2019-01-17 21:01:38 +01:00
|
|
|
const user = data
|
2019-01-17 20:11:51 +01:00
|
|
|
// user.credentials = userCredentials
|
|
|
|
user.credentials = accessToken
|
2019-02-14 04:14:46 +01:00
|
|
|
user.blockIds = []
|
|
|
|
user.muteIds = []
|
2020-01-15 21:22:54 +01:00
|
|
|
user.domainMutes = []
|
2019-01-17 20:11:51 +01:00
|
|
|
commit('setCurrentUser', user)
|
2022-08-04 00:56:52 +02:00
|
|
|
commit('setServerSideStorage', user)
|
2019-01-17 20:11:51 +01:00
|
|
|
commit('addNewUsers', [user])
|
2016-11-30 21:27:25 +01:00
|
|
|
|
2019-10-09 21:50:00 +02:00
|
|
|
store.dispatch('fetchEmoji')
|
2019-10-01 19:14:14 +02:00
|
|
|
|
2019-01-17 20:11:51 +01:00
|
|
|
getNotificationPermission()
|
|
|
|
.then(permission => commit('setNotificationPermission', permission))
|
2018-12-13 12:04:09 +01:00
|
|
|
|
2019-01-17 20:11:51 +01:00
|
|
|
// Set our new backend interactor
|
|
|
|
commit('setBackendInteractor', backendInteractorService(accessToken))
|
2022-08-04 00:56:52 +02:00
|
|
|
store.dispatch('pushServerSideStorage')
|
2016-11-30 21:27:25 +01:00
|
|
|
|
2019-01-17 20:11:51 +01:00
|
|
|
if (user.token) {
|
2019-01-29 16:16:25 +01:00
|
|
|
store.dispatch('setWsToken', user.token)
|
2019-03-10 19:23:27 +01:00
|
|
|
|
2020-08-04 01:44:35 +02:00
|
|
|
// Initialize the shout socket.
|
2019-03-10 19:23:27 +01:00
|
|
|
store.dispatch('initializeSocket')
|
2019-01-17 20:11:51 +01:00
|
|
|
}
|
2017-12-04 19:08:33 +01:00
|
|
|
|
2019-12-10 20:30:27 +01:00
|
|
|
const startPolling = () => {
|
2019-11-24 17:50:28 +01:00
|
|
|
// Start getting fresh posts.
|
|
|
|
store.dispatch('startFetchingTimeline', { timeline: 'friends' })
|
|
|
|
|
|
|
|
// Start fetching notifications
|
|
|
|
store.dispatch('startFetchingNotifications')
|
2020-05-07 15:10:53 +02:00
|
|
|
|
|
|
|
// Start fetching chats
|
|
|
|
store.dispatch('startFetchingChats')
|
2019-12-10 20:30:27 +01:00
|
|
|
}
|
2017-02-16 11:17:47 +01:00
|
|
|
|
2022-08-15 19:43:38 +02:00
|
|
|
store.dispatch('startFetchingLists')
|
|
|
|
|
|
|
|
if (user.locked) {
|
|
|
|
store.dispatch('startFetchingFollowRequests')
|
|
|
|
}
|
|
|
|
|
2019-12-10 20:30:27 +01:00
|
|
|
if (store.getters.mergedConfig.useStreamingApi) {
|
2021-01-13 21:17:10 +01:00
|
|
|
store.dispatch('fetchTimeline', 'friends', { since: null })
|
|
|
|
store.dispatch('fetchNotifications', { since: null })
|
2021-03-09 01:38:10 +01:00
|
|
|
store.dispatch('enableMastoSockets', true).catch((error) => {
|
2019-12-10 20:30:27 +01:00
|
|
|
console.error('Failed initializing MastoAPI Streaming socket', error)
|
2019-12-12 17:53:36 +01:00
|
|
|
}).then(() => {
|
2020-05-07 15:10:53 +02:00
|
|
|
store.dispatch('fetchChats', { latest: true })
|
2019-12-12 17:53:36 +01:00
|
|
|
setTimeout(() => store.dispatch('setNotificationsSilence', false), 10000)
|
2019-12-10 20:30:27 +01:00
|
|
|
})
|
|
|
|
} else {
|
|
|
|
startPolling()
|
|
|
|
}
|
2017-02-16 11:17:47 +01:00
|
|
|
|
2019-02-14 04:14:46 +01:00
|
|
|
// Get user mutes
|
2019-02-14 04:04:28 +01:00
|
|
|
store.dispatch('fetchMutes')
|
2017-02-20 18:01:45 +01:00
|
|
|
|
2022-05-16 22:40:51 +02:00
|
|
|
store.dispatch('setLayoutWidth', windowWidth())
|
|
|
|
store.dispatch('setLayoutHeight', windowHeight())
|
|
|
|
|
2019-01-17 20:11:51 +01:00
|
|
|
// Fetch our friends
|
|
|
|
store.rootState.api.backendInteractor.fetchFriends({ id: user.id })
|
|
|
|
.then((friends) => commit('addNewUsers', friends))
|
2017-03-08 18:28:41 +01:00
|
|
|
} else {
|
2019-01-17 20:11:51 +01:00
|
|
|
const response = data.error
|
2017-03-08 18:28:41 +01:00
|
|
|
// Authentication failed
|
|
|
|
commit('endLogin')
|
2017-03-08 19:22:56 +01:00
|
|
|
if (response.status === 401) {
|
2019-07-06 23:54:17 +02:00
|
|
|
reject(new Error('Wrong username or password'))
|
2017-03-08 19:22:56 +01:00
|
|
|
} else {
|
2019-07-06 23:54:17 +02:00
|
|
|
reject(new Error('An error occurred, please try again'))
|
2017-03-08 19:22:56 +01:00
|
|
|
}
|
2017-03-08 18:28:41 +01:00
|
|
|
}
|
|
|
|
commit('endLogin')
|
|
|
|
resolve()
|
|
|
|
})
|
2019-07-05 09:02:14 +02:00
|
|
|
.catch((error) => {
|
|
|
|
console.log(error)
|
|
|
|
commit('endLogin')
|
2019-07-06 23:54:17 +02:00
|
|
|
reject(new Error('Failed to connect to server, try again'))
|
2019-07-05 09:02:14 +02:00
|
|
|
})
|
2017-03-08 18:28:41 +01:00
|
|
|
})
|
2016-10-27 18:03:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default users
|