2019-02-12 18:53:59 +00:00
|
|
|
<<<<<<< HEAD
|
2019-02-14 03:59:00 +00:00
|
|
|
import { compose } from 'vue-compose'
|
2019-02-13 12:15:08 +00:00
|
|
|
import unescape from 'lodash/unescape'
|
|
|
|
import get from 'lodash/get'
|
2019-02-12 18:53:59 +00:00
|
|
|
=======
|
|
|
|
import { unescape, truncate } from 'lodash'
|
|
|
|
>>>>>>> Add OAuth Tokens management to settings
|
2019-02-04 20:03:01 +00:00
|
|
|
|
2019-01-31 15:00:31 +00:00
|
|
|
import TabSwitcher from '../tab_switcher/tab_switcher.js'
|
2019-02-07 08:05:59 +00:00
|
|
|
import ImageCropper from '../image_cropper/image_cropper.vue'
|
2017-08-02 19:09:40 +00:00
|
|
|
import StyleSwitcher from '../style_switcher/style_switcher.vue'
|
2018-12-11 13:02:35 +00:00
|
|
|
import fileSizeFormatService from '../../services/file_size_format/file_size_format.js'
|
2019-02-13 19:55:02 +00:00
|
|
|
import BlockCard from '../block_card/block_card.vue'
|
2019-02-14 03:04:28 +00:00
|
|
|
import MuteCard from '../mute_card/mute_card.vue'
|
2019-02-14 02:08:14 +00:00
|
|
|
import withSubscription from '../../hocs/with_subscription/with_subscription'
|
2019-02-13 19:30:12 +00:00
|
|
|
import withList from '../../hocs/with_list/with_list'
|
2019-02-13 12:15:08 +00:00
|
|
|
|
2019-02-14 03:59:00 +00:00
|
|
|
const BlockList = compose(
|
|
|
|
withSubscription({
|
|
|
|
fetch: (props, $store) => $store.dispatch('fetchBlocks'),
|
|
|
|
select: (props, $store) => get($store.state.users.currentUser, 'blockIds', []),
|
2019-02-14 04:25:21 +00:00
|
|
|
childPropName: 'entries'
|
2019-02-14 03:59:00 +00:00
|
|
|
}),
|
|
|
|
withList({ getEntryProps: userId => ({ userId }) })
|
|
|
|
)(BlockCard)
|
2017-08-02 19:09:40 +00:00
|
|
|
|
2019-02-14 03:59:00 +00:00
|
|
|
const MuteList = compose(
|
|
|
|
withSubscription({
|
|
|
|
fetch: (props, $store) => $store.dispatch('fetchMutes'),
|
|
|
|
select: (props, $store) => get($store.state.users.currentUser, 'muteIds', []),
|
2019-02-14 04:25:21 +00:00
|
|
|
childPropName: 'entries'
|
2019-02-14 03:59:00 +00:00
|
|
|
}),
|
|
|
|
withList({ getEntryProps: userId => ({ userId }) })
|
|
|
|
)(MuteCard)
|
2019-02-14 03:04:28 +00:00
|
|
|
|
2017-08-02 19:09:40 +00:00
|
|
|
const UserSettings = {
|
|
|
|
data () {
|
|
|
|
return {
|
2018-12-13 12:58:38 +00:00
|
|
|
newName: this.$store.state.users.currentUser.name,
|
2019-02-04 20:03:01 +00:00
|
|
|
newBio: unescape(this.$store.state.users.currentUser.description),
|
2018-12-13 12:58:38 +00:00
|
|
|
newLocked: this.$store.state.users.currentUser.locked,
|
|
|
|
newNoRichText: this.$store.state.users.currentUser.no_rich_text,
|
|
|
|
newDefaultScope: this.$store.state.users.currentUser.default_scope,
|
2019-02-06 11:21:13 +00:00
|
|
|
hideFollows: this.$store.state.users.currentUser.hide_follows,
|
2019-01-29 22:11:40 +00:00
|
|
|
hideFollowers: this.$store.state.users.currentUser.hide_followers,
|
2019-02-04 14:03:35 +00:00
|
|
|
showRole: this.$store.state.users.currentUser.show_role,
|
|
|
|
role: this.$store.state.users.currentUser.role,
|
2017-12-23 14:44:22 +00:00
|
|
|
followList: null,
|
|
|
|
followImportError: false,
|
|
|
|
followsImported: false,
|
2018-05-13 23:47:08 +00:00
|
|
|
enableFollowsExport: true,
|
2019-02-09 02:59:33 +00:00
|
|
|
pickAvatarBtnVisible: true,
|
2018-12-13 08:25:03 +00:00
|
|
|
bannerUploading: false,
|
|
|
|
backgroundUploading: false,
|
|
|
|
followListUploading: false,
|
|
|
|
bannerPreview: null,
|
|
|
|
backgroundPreview: null,
|
|
|
|
bannerUploadError: null,
|
|
|
|
backgroundUploadError: null,
|
2018-05-13 14:09:07 +00:00
|
|
|
deletingAccount: false,
|
|
|
|
deleteAccountConfirmPasswordInput: '',
|
2018-05-21 22:01:09 +00:00
|
|
|
deleteAccountError: false,
|
|
|
|
changePasswordInputs: [ '', '', '' ],
|
|
|
|
changedPassword: false,
|
2018-08-18 23:23:03 +00:00
|
|
|
changePasswordError: false,
|
|
|
|
activeTab: 'profile'
|
2017-08-02 19:09:40 +00:00
|
|
|
}
|
|
|
|
},
|
2019-02-12 18:53:59 +00:00
|
|
|
created () {
|
|
|
|
this.$store.dispatch('fetchTokens')
|
|
|
|
},
|
2017-08-02 19:09:40 +00:00
|
|
|
components: {
|
2018-08-27 19:22:25 +00:00
|
|
|
StyleSwitcher,
|
2019-02-07 08:05:59 +00:00
|
|
|
TabSwitcher,
|
2019-02-13 12:15:08 +00:00
|
|
|
ImageCropper,
|
2019-02-14 03:59:00 +00:00
|
|
|
BlockList,
|
|
|
|
MuteList
|
2017-08-02 19:09:40 +00:00
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
user () {
|
|
|
|
return this.$store.state.users.currentUser
|
2017-12-23 14:44:22 +00:00
|
|
|
},
|
|
|
|
pleromaBackend () {
|
2018-09-09 18:21:23 +00:00
|
|
|
return this.$store.state.instance.pleromaBackend
|
2018-06-23 07:53:15 +00:00
|
|
|
},
|
|
|
|
scopeOptionsEnabled () {
|
2018-09-09 18:21:23 +00:00
|
|
|
return this.$store.state.instance.scopeOptionsEnabled
|
2018-06-23 07:53:15 +00:00
|
|
|
},
|
|
|
|
vis () {
|
|
|
|
return {
|
2018-12-13 12:58:38 +00:00
|
|
|
public: { selected: this.newDefaultScope === 'public' },
|
|
|
|
unlisted: { selected: this.newDefaultScope === 'unlisted' },
|
|
|
|
private: { selected: this.newDefaultScope === 'private' },
|
|
|
|
direct: { selected: this.newDefaultScope === 'direct' }
|
2018-06-23 07:53:15 +00:00
|
|
|
}
|
2019-02-19 17:38:49 +00:00
|
|
|
},
|
2019-02-12 18:53:59 +00:00
|
|
|
<<<<<<< HEAD
|
2019-02-19 17:38:49 +00:00
|
|
|
currentSaveStateNotice () {
|
|
|
|
return this.$store.state.interface.settings.currentSaveStateNotice
|
2019-02-12 18:53:59 +00:00
|
|
|
=======
|
|
|
|
oauthTokens () {
|
|
|
|
return this.$store.state.oauthTokens.tokens.map(oauthToken => {
|
|
|
|
return {
|
|
|
|
id: oauthToken.id,
|
|
|
|
token: truncate(oauthToken.token, { length: 15 }),
|
|
|
|
refreshToken: truncate(oauthToken.refresh_token, { length: 15 }),
|
|
|
|
validUntil: new Date(oauthToken.valid_until).toLocaleDateString()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
>>>>>>> Add OAuth Tokens management to settings
|
2018-06-27 13:28:07 +00:00
|
|
|
}
|
2017-08-02 19:09:40 +00:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
updateProfile () {
|
2018-12-15 00:30:39 +00:00
|
|
|
const name = this.newName
|
2018-12-13 12:58:38 +00:00
|
|
|
const description = this.newBio
|
|
|
|
const locked = this.newLocked
|
|
|
|
// Backend notation.
|
2018-06-27 13:28:07 +00:00
|
|
|
/* eslint-disable camelcase */
|
2018-12-13 12:58:38 +00:00
|
|
|
const default_scope = this.newDefaultScope
|
|
|
|
const no_rich_text = this.newNoRichText
|
2019-02-06 11:21:13 +00:00
|
|
|
const hide_follows = this.hideFollows
|
2019-01-29 22:11:40 +00:00
|
|
|
const hide_followers = this.hideFollowers
|
2019-02-04 14:03:35 +00:00
|
|
|
const show_role = this.showRole
|
|
|
|
|
2018-06-27 13:28:07 +00:00
|
|
|
/* eslint-enable camelcase */
|
2018-12-13 12:58:38 +00:00
|
|
|
this.$store.state.api.backendInteractor
|
|
|
|
.updateProfile({
|
|
|
|
params: {
|
|
|
|
name,
|
|
|
|
description,
|
|
|
|
locked,
|
|
|
|
// Backend notation.
|
|
|
|
/* eslint-disable camelcase */
|
|
|
|
default_scope,
|
|
|
|
no_rich_text,
|
2019-02-06 11:21:13 +00:00
|
|
|
hide_follows,
|
2019-02-04 14:03:35 +00:00
|
|
|
hide_followers,
|
|
|
|
show_role
|
2018-12-13 12:58:38 +00:00
|
|
|
/* eslint-enable camelcase */
|
|
|
|
}}).then((user) => {
|
|
|
|
if (!user.error) {
|
|
|
|
this.$store.commit('addNewUsers', [user])
|
|
|
|
this.$store.commit('setCurrentUser', user)
|
|
|
|
}
|
|
|
|
})
|
2017-08-02 19:09:40 +00:00
|
|
|
},
|
2018-06-23 07:53:15 +00:00
|
|
|
changeVis (visibility) {
|
2018-12-13 12:58:38 +00:00
|
|
|
this.newDefaultScope = visibility
|
2018-06-23 07:53:15 +00:00
|
|
|
},
|
2017-08-18 08:51:17 +00:00
|
|
|
uploadFile (slot, e) {
|
|
|
|
const file = e.target.files[0]
|
|
|
|
if (!file) { return }
|
2018-12-13 14:51:29 +00:00
|
|
|
if (file.size > this.$store.state.instance[slot + 'limit']) {
|
2018-12-11 13:02:35 +00:00
|
|
|
const filesize = fileSizeFormatService.fileSizeFormat(file.size)
|
2018-12-13 14:51:29 +00:00
|
|
|
const allowedsize = fileSizeFormatService.fileSizeFormat(this.$store.state.instance[slot + 'limit'])
|
2018-12-13 14:44:37 +00:00
|
|
|
this[slot + 'UploadError'] = this.$t('upload.error.base') + ' ' + this.$t('upload.error.file_too_big', {filesize: filesize.num, filesizeunit: filesize.unit, allowedsize: allowedsize.num, allowedsizeunit: allowedsize.unit})
|
2018-12-11 13:02:35 +00:00
|
|
|
return
|
|
|
|
}
|
2017-08-02 19:09:40 +00:00
|
|
|
// eslint-disable-next-line no-undef
|
|
|
|
const reader = new FileReader()
|
|
|
|
reader.onload = ({target}) => {
|
|
|
|
const img = target.result
|
2018-12-13 14:44:37 +00:00
|
|
|
this[slot + 'Preview'] = img
|
2017-08-02 19:09:40 +00:00
|
|
|
}
|
|
|
|
reader.readAsDataURL(file)
|
|
|
|
},
|
2019-02-07 08:05:59 +00:00
|
|
|
submitAvatar (cropper) {
|
2019-02-09 03:06:02 +00:00
|
|
|
const img = cropper.getCroppedCanvas().toDataURL('image/jpeg')
|
2019-02-09 02:59:33 +00:00
|
|
|
return this.$store.state.api.backendInteractor.updateAvatar({ params: { img } }).then((user) => {
|
2017-08-02 19:09:40 +00:00
|
|
|
if (!user.error) {
|
|
|
|
this.$store.commit('addNewUsers', [user])
|
|
|
|
this.$store.commit('setCurrentUser', user)
|
2018-12-12 16:31:16 +00:00
|
|
|
} else {
|
2019-02-09 03:17:53 +00:00
|
|
|
throw new Error(this.$t('upload.error.base') + user.error)
|
2017-08-02 19:09:40 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
2018-12-11 13:02:35 +00:00
|
|
|
clearUploadError (slot) {
|
2018-12-13 14:44:37 +00:00
|
|
|
this[slot + 'UploadError'] = null
|
2018-12-11 13:02:35 +00:00
|
|
|
},
|
2017-08-02 19:09:40 +00:00
|
|
|
submitBanner () {
|
2018-12-13 08:25:03 +00:00
|
|
|
if (!this.bannerPreview) { return }
|
2017-08-02 19:09:40 +00:00
|
|
|
|
2018-12-13 08:25:03 +00:00
|
|
|
let banner = this.bannerPreview
|
2017-08-15 21:46:55 +00:00
|
|
|
// eslint-disable-next-line no-undef
|
2017-08-02 19:09:40 +00:00
|
|
|
let imginfo = new Image()
|
2017-08-15 21:46:55 +00:00
|
|
|
/* eslint-disable camelcase */
|
2017-08-02 19:09:40 +00:00
|
|
|
let offset_top, offset_left, width, height
|
|
|
|
imginfo.src = banner
|
|
|
|
width = imginfo.width
|
|
|
|
height = imginfo.height
|
|
|
|
offset_top = 0
|
|
|
|
offset_left = 0
|
2018-12-13 08:25:03 +00:00
|
|
|
this.bannerUploading = true
|
2017-08-02 19:09:40 +00:00
|
|
|
this.$store.state.api.backendInteractor.updateBanner({params: {banner, offset_top, offset_left, width, height}}).then((data) => {
|
|
|
|
if (!data.error) {
|
|
|
|
let clone = JSON.parse(JSON.stringify(this.$store.state.users.currentUser))
|
|
|
|
clone.cover_photo = data.url
|
|
|
|
this.$store.commit('addNewUsers', [clone])
|
|
|
|
this.$store.commit('setCurrentUser', clone)
|
2018-12-13 08:25:03 +00:00
|
|
|
this.bannerPreview = null
|
2018-12-12 16:31:16 +00:00
|
|
|
} else {
|
2018-12-13 08:25:03 +00:00
|
|
|
this.bannerUploadError = this.$t('upload.error.base') + data.error
|
2017-08-02 19:09:40 +00:00
|
|
|
}
|
2018-12-13 08:25:03 +00:00
|
|
|
this.bannerUploading = false
|
2017-08-02 19:09:40 +00:00
|
|
|
})
|
2017-08-15 21:46:55 +00:00
|
|
|
/* eslint-enable camelcase */
|
2017-08-02 19:09:40 +00:00
|
|
|
},
|
|
|
|
submitBg () {
|
2018-12-13 08:25:03 +00:00
|
|
|
if (!this.backgroundPreview) { return }
|
|
|
|
let img = this.backgroundPreview
|
2017-08-15 21:46:55 +00:00
|
|
|
// eslint-disable-next-line no-undef
|
2017-08-02 19:09:40 +00:00
|
|
|
let imginfo = new Image()
|
|
|
|
let cropX, cropY, cropW, cropH
|
|
|
|
imginfo.src = img
|
|
|
|
cropX = 0
|
|
|
|
cropY = 0
|
|
|
|
cropW = imginfo.width
|
|
|
|
cropH = imginfo.width
|
2018-12-13 08:25:03 +00:00
|
|
|
this.backgroundUploading = true
|
2017-08-02 19:09:40 +00:00
|
|
|
this.$store.state.api.backendInteractor.updateBg({params: {img, cropX, cropY, cropW, cropH}}).then((data) => {
|
|
|
|
if (!data.error) {
|
|
|
|
let clone = JSON.parse(JSON.stringify(this.$store.state.users.currentUser))
|
|
|
|
clone.background_image = data.url
|
|
|
|
this.$store.commit('addNewUsers', [clone])
|
|
|
|
this.$store.commit('setCurrentUser', clone)
|
2018-12-13 08:25:03 +00:00
|
|
|
this.backgroundPreview = null
|
2018-12-12 16:31:16 +00:00
|
|
|
} else {
|
2018-12-13 08:25:03 +00:00
|
|
|
this.backgroundUploadError = this.$t('upload.error.base') + data.error
|
2017-08-02 19:09:40 +00:00
|
|
|
}
|
2018-12-13 08:25:03 +00:00
|
|
|
this.backgroundUploading = false
|
2017-08-02 19:09:40 +00:00
|
|
|
})
|
2017-12-23 14:44:22 +00:00
|
|
|
},
|
|
|
|
importFollows () {
|
2018-12-13 08:25:03 +00:00
|
|
|
this.followListUploading = true
|
2017-12-23 14:44:22 +00:00
|
|
|
const followList = this.followList
|
|
|
|
this.$store.state.api.backendInteractor.followImport({params: followList})
|
|
|
|
.then((status) => {
|
|
|
|
if (status) {
|
|
|
|
this.followsImported = true
|
|
|
|
} else {
|
|
|
|
this.followImportError = true
|
|
|
|
}
|
2018-12-13 08:25:03 +00:00
|
|
|
this.followListUploading = false
|
2017-12-23 14:44:22 +00:00
|
|
|
})
|
|
|
|
},
|
2018-05-13 23:47:08 +00:00
|
|
|
/* This function takes an Array of Users
|
|
|
|
* and outputs a file with all the addresses for the user to download
|
|
|
|
*/
|
2018-05-16 22:51:52 +00:00
|
|
|
exportPeople (users, filename) {
|
2018-05-13 23:47:08 +00:00
|
|
|
// Get all the friends addresses
|
2018-05-16 22:51:52 +00:00
|
|
|
var UserAddresses = users.map(function (user) {
|
|
|
|
// check is it's a local user
|
|
|
|
if (user && user.is_local) {
|
|
|
|
// append the instance address
|
|
|
|
// eslint-disable-next-line no-undef
|
|
|
|
user.screen_name += '@' + location.hostname
|
|
|
|
}
|
|
|
|
return user.screen_name
|
|
|
|
}).join('\n')
|
2018-05-13 23:47:08 +00:00
|
|
|
// Make the user download the file
|
2018-05-16 22:51:52 +00:00
|
|
|
var fileToDownload = document.createElement('a')
|
|
|
|
fileToDownload.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(UserAddresses))
|
|
|
|
fileToDownload.setAttribute('download', filename)
|
|
|
|
fileToDownload.style.display = 'none'
|
|
|
|
document.body.appendChild(fileToDownload)
|
|
|
|
fileToDownload.click()
|
|
|
|
document.body.removeChild(fileToDownload)
|
2018-05-13 23:47:08 +00:00
|
|
|
},
|
2018-05-16 22:51:52 +00:00
|
|
|
exportFollows () {
|
|
|
|
this.enableFollowsExport = false
|
2018-05-13 23:47:08 +00:00
|
|
|
this.$store.state.api.backendInteractor
|
2019-02-07 14:57:16 +00:00
|
|
|
.exportFriends({
|
|
|
|
id: this.$store.state.users.currentUser.id
|
2019-02-06 16:17:23 +00:00
|
|
|
})
|
2018-05-18 10:34:36 +00:00
|
|
|
.then((friendList) => {
|
2018-05-16 22:51:52 +00:00
|
|
|
this.exportPeople(friendList, 'friends.csv')
|
2018-12-12 20:00:04 +00:00
|
|
|
setTimeout(() => { this.enableFollowsExport = true }, 2000)
|
2018-05-18 10:34:36 +00:00
|
|
|
})
|
2018-05-13 23:47:08 +00:00
|
|
|
},
|
2017-12-23 14:44:22 +00:00
|
|
|
followListChange () {
|
|
|
|
// eslint-disable-next-line no-undef
|
|
|
|
let formData = new FormData()
|
|
|
|
formData.append('list', this.$refs.followlist.files[0])
|
|
|
|
this.followList = formData
|
|
|
|
},
|
|
|
|
dismissImported () {
|
|
|
|
this.followsImported = false
|
|
|
|
this.followImportError = false
|
2018-05-13 14:09:07 +00:00
|
|
|
},
|
|
|
|
confirmDelete () {
|
|
|
|
this.deletingAccount = true
|
|
|
|
},
|
|
|
|
deleteAccount () {
|
|
|
|
this.$store.state.api.backendInteractor.deleteAccount({password: this.deleteAccountConfirmPasswordInput})
|
|
|
|
.then((res) => {
|
|
|
|
if (res.status === 'success') {
|
|
|
|
this.$store.dispatch('logout')
|
2018-12-25 17:43:52 +00:00
|
|
|
this.$router.push({name: 'root'})
|
2018-05-13 14:09:07 +00:00
|
|
|
} else {
|
|
|
|
this.deleteAccountError = res.error
|
|
|
|
}
|
|
|
|
})
|
2018-05-21 22:01:09 +00:00
|
|
|
},
|
|
|
|
changePassword () {
|
|
|
|
const params = {
|
|
|
|
password: this.changePasswordInputs[0],
|
|
|
|
newPassword: this.changePasswordInputs[1],
|
|
|
|
newPasswordConfirmation: this.changePasswordInputs[2]
|
|
|
|
}
|
|
|
|
this.$store.state.api.backendInteractor.changePassword(params)
|
|
|
|
.then((res) => {
|
|
|
|
if (res.status === 'success') {
|
|
|
|
this.changedPassword = true
|
|
|
|
this.changePasswordError = false
|
2018-11-30 14:53:59 +00:00
|
|
|
this.logout()
|
2018-05-21 22:01:09 +00:00
|
|
|
} else {
|
|
|
|
this.changedPassword = false
|
|
|
|
this.changePasswordError = res.error
|
|
|
|
}
|
|
|
|
})
|
2018-08-18 23:23:03 +00:00
|
|
|
},
|
|
|
|
activateTab (tabName) {
|
|
|
|
this.activeTab = tabName
|
2018-11-30 13:30:55 +00:00
|
|
|
},
|
2018-11-30 14:53:59 +00:00
|
|
|
logout () {
|
2018-11-30 13:30:55 +00:00
|
|
|
this.$store.dispatch('logout')
|
|
|
|
this.$router.replace('/')
|
2019-02-12 18:53:59 +00:00
|
|
|
},
|
|
|
|
revokeToken (id) {
|
2019-02-12 18:56:43 +00:00
|
|
|
if (window.confirm('Are you sure?')) {
|
2019-02-12 18:53:59 +00:00
|
|
|
this.$store.dispatch('revokeToken', id)
|
|
|
|
}
|
2017-08-02 19:09:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default UserSettings
|