Add frontend ui for aliases and migration
Ref: migrate-ui
This commit is contained in:
parent
96a24ec625
commit
176da2bbe5
@ -15,11 +15,20 @@ const SecurityTab = {
|
|||||||
deleteAccountError: false,
|
deleteAccountError: false,
|
||||||
changePasswordInputs: [ '', '', '' ],
|
changePasswordInputs: [ '', '', '' ],
|
||||||
changedPassword: false,
|
changedPassword: false,
|
||||||
changePasswordError: false
|
changePasswordError: false,
|
||||||
|
moveAccountTarget: '',
|
||||||
|
moveAccountPassword: '',
|
||||||
|
movedAccount: false,
|
||||||
|
moveAccountError: false,
|
||||||
|
aliases: [],
|
||||||
|
addAliasTarget: '',
|
||||||
|
addedAlias: false,
|
||||||
|
addAliasError: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
this.$store.dispatch('fetchTokens')
|
this.$store.dispatch('fetchTokens')
|
||||||
|
this.fetchAliases()
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
ProgressButton,
|
ProgressButton,
|
||||||
@ -92,6 +101,46 @@ const SecurityTab = {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
moveAccount () {
|
||||||
|
const params = {
|
||||||
|
targetAccount: this.moveAccountTarget,
|
||||||
|
password: this.moveAccountPassword
|
||||||
|
}
|
||||||
|
this.$store.state.api.backendInteractor.moveAccount(params)
|
||||||
|
.then((res) => {
|
||||||
|
if (res.status === 'success') {
|
||||||
|
this.movedAccount = true
|
||||||
|
this.moveAccountError = false
|
||||||
|
} else {
|
||||||
|
this.movedAccount = false
|
||||||
|
this.moveAccountError = res.error
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
removeAlias (alias) {
|
||||||
|
this.$store.state.api.backendInteractor.deleteAlias({ alias })
|
||||||
|
.then(() => this.fetchAliases())
|
||||||
|
},
|
||||||
|
addAlias () {
|
||||||
|
this.$store.state.api.backendInteractor.addAlias({ alias: this.addAliasTarget })
|
||||||
|
.then((res) => {
|
||||||
|
this.addedAlias = true
|
||||||
|
this.addAliasError = false
|
||||||
|
this.addAliasTarget = ''
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
this.addedAlias = false
|
||||||
|
this.addAliasError = error
|
||||||
|
})
|
||||||
|
.then(() => this.fetchAliases())
|
||||||
|
},
|
||||||
|
fetchAliases () {
|
||||||
|
this.$store.state.api.backendInteractor.listAliases()
|
||||||
|
.catch(() => {})
|
||||||
|
.then((res) => {
|
||||||
|
this.aliases = res.aliases
|
||||||
|
})
|
||||||
|
},
|
||||||
logout () {
|
logout () {
|
||||||
this.$store.dispatch('logout')
|
this.$store.dispatch('logout')
|
||||||
this.$router.replace('/')
|
this.$router.replace('/')
|
||||||
|
@ -103,6 +103,102 @@
|
|||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
<mfa />
|
<mfa />
|
||||||
|
|
||||||
|
<div class="setting-item">
|
||||||
|
<h2>{{ $t('settings.account_alias') }}</h2>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>{{ $t('settings.account_alias_table_head') }}</th>
|
||||||
|
<th />
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr
|
||||||
|
v-for="alias in aliases"
|
||||||
|
:key="alias"
|
||||||
|
>
|
||||||
|
<td>{{ alias }}</td>
|
||||||
|
<td class="actions">
|
||||||
|
<button
|
||||||
|
class="btn button-default"
|
||||||
|
@click="removeAlias(alias)"
|
||||||
|
>
|
||||||
|
{{ $t('settings.remove_alias') }}
|
||||||
|
</button>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<div>
|
||||||
|
<i18n
|
||||||
|
path="settings.new_alias_target"
|
||||||
|
tag="p"
|
||||||
|
>
|
||||||
|
<code
|
||||||
|
place="example"
|
||||||
|
>
|
||||||
|
foo@example.org
|
||||||
|
</code>
|
||||||
|
</i18n>
|
||||||
|
<input
|
||||||
|
v-model="addAliasTarget"
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<button
|
||||||
|
class="btn button-default"
|
||||||
|
@click="addAlias"
|
||||||
|
>
|
||||||
|
{{ $t('settings.save') }}
|
||||||
|
</button>
|
||||||
|
<p v-if="addedAlias">
|
||||||
|
{{ $t('settings.added_alias') }}
|
||||||
|
</p>
|
||||||
|
<template v-if="addAliasError !== false">
|
||||||
|
<p>{{ $t('settings.add_alias_error', { error: addAliasError }) }}</p>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="setting-item">
|
||||||
|
<h2>{{ $t('settings.move_account') }}</h2>
|
||||||
|
<p>{{ $t('settings.move_account_notes') }}</p>
|
||||||
|
<div>
|
||||||
|
<i18n
|
||||||
|
path="settings.move_account_target"
|
||||||
|
tag="p"
|
||||||
|
>
|
||||||
|
<code
|
||||||
|
place="example"
|
||||||
|
>
|
||||||
|
foo@example.org
|
||||||
|
</code>
|
||||||
|
</i18n>
|
||||||
|
<input
|
||||||
|
v-model="moveAccountTarget"
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p>{{ $t('settings.current_password') }}</p>
|
||||||
|
<input
|
||||||
|
v-model="moveAccountPassword"
|
||||||
|
type="password"
|
||||||
|
autocomplete="current-password"
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<button
|
||||||
|
class="btn button-default"
|
||||||
|
@click="moveAccount"
|
||||||
|
>
|
||||||
|
{{ $t('settings.save') }}
|
||||||
|
</button>
|
||||||
|
<p v-if="movedAccount">
|
||||||
|
{{ $t('settings.moved_account') }}
|
||||||
|
</p>
|
||||||
|
<template v-if="moveAccountError !== false">
|
||||||
|
<p>{{ $t('settings.move_account_error', { error: moveAccountError }) }}</p>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="setting-item">
|
<div class="setting-item">
|
||||||
<h2>{{ $t('settings.delete_account') }}</h2>
|
<h2>{{ $t('settings.delete_account') }}</h2>
|
||||||
<p v-if="!deletingAccount">
|
<p v-if="!deletingAccount">
|
||||||
|
@ -9,6 +9,8 @@ const FOLLOW_IMPORT_URL = '/api/pleroma/follow_import'
|
|||||||
const DELETE_ACCOUNT_URL = '/api/pleroma/delete_account'
|
const DELETE_ACCOUNT_URL = '/api/pleroma/delete_account'
|
||||||
const CHANGE_EMAIL_URL = '/api/pleroma/change_email'
|
const CHANGE_EMAIL_URL = '/api/pleroma/change_email'
|
||||||
const CHANGE_PASSWORD_URL = '/api/pleroma/change_password'
|
const CHANGE_PASSWORD_URL = '/api/pleroma/change_password'
|
||||||
|
const MOVE_ACCOUNT_URL = '/api/pleroma/move_account'
|
||||||
|
const ALIASES_URL = '/api/pleroma/aliases'
|
||||||
const TAG_USER_URL = '/api/pleroma/admin/users/tag'
|
const TAG_USER_URL = '/api/pleroma/admin/users/tag'
|
||||||
const PERMISSION_GROUP_URL = (screenName, right) => `/api/pleroma/admin/users/${screenName}/permission_group/${right}`
|
const PERMISSION_GROUP_URL = (screenName, right) => `/api/pleroma/admin/users/${screenName}/permission_group/${right}`
|
||||||
const ACTIVATE_USER_URL = '/api/pleroma/admin/users/activate'
|
const ACTIVATE_USER_URL = '/api/pleroma/admin/users/activate'
|
||||||
@ -782,6 +784,49 @@ const changeEmail = ({ credentials, email, password }) => {
|
|||||||
.then((response) => response.json())
|
.then((response) => response.json())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const moveAccount = ({ credentials, password, targetAccount }) => {
|
||||||
|
const form = new FormData()
|
||||||
|
|
||||||
|
form.append('password', password)
|
||||||
|
form.append('target_account', targetAccount)
|
||||||
|
|
||||||
|
return fetch(MOVE_ACCOUNT_URL, {
|
||||||
|
body: form,
|
||||||
|
method: 'POST',
|
||||||
|
headers: authHeaders(credentials)
|
||||||
|
})
|
||||||
|
.then((response) => response.json())
|
||||||
|
}
|
||||||
|
|
||||||
|
const addAlias = ({ credentials, alias }) => {
|
||||||
|
return promisedRequest({
|
||||||
|
url: ALIASES_URL,
|
||||||
|
method: 'PUT',
|
||||||
|
credentials,
|
||||||
|
payload: { alias }
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
const deleteAlias = ({ credentials, alias }) => {
|
||||||
|
return promisedRequest({
|
||||||
|
url: ALIASES_URL,
|
||||||
|
method: 'DELETE',
|
||||||
|
credentials,
|
||||||
|
payload: { alias }
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
const listAliases = ({ credentials }) => {
|
||||||
|
return promisedRequest({
|
||||||
|
url: ALIASES_URL,
|
||||||
|
method: 'GET',
|
||||||
|
credentials,
|
||||||
|
params: {
|
||||||
|
_cacheBooster: (new Date()).getTime()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
const changePassword = ({ credentials, password, newPassword, newPasswordConfirmation }) => {
|
const changePassword = ({ credentials, password, newPassword, newPasswordConfirmation }) => {
|
||||||
const form = new FormData()
|
const form = new FormData()
|
||||||
|
|
||||||
@ -1319,6 +1364,10 @@ const apiService = {
|
|||||||
importFollows,
|
importFollows,
|
||||||
deleteAccount,
|
deleteAccount,
|
||||||
changeEmail,
|
changeEmail,
|
||||||
|
moveAccount,
|
||||||
|
addAlias,
|
||||||
|
deleteAlias,
|
||||||
|
listAliases,
|
||||||
changePassword,
|
changePassword,
|
||||||
settingsMFA,
|
settingsMFA,
|
||||||
mfaDisableOTP,
|
mfaDisableOTP,
|
||||||
|
Loading…
Reference in New Issue
Block a user