You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zabbix/ui/app/views/js/administration.user.token.l...

152 lines
4.0 KiB

<?php declare(strict_types = 0);
/*
** Zabbix
** Copyright (C) 2001-2023 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
/**
* @var CView $this
*/
?>
<script>
const view = {
init() {
this.initActionButtons();
this.expiresDaysHandler();
},
initActionButtons() {
document.addEventListener('click', (e) => {
if (e.target.classList.contains('js-create-token')) {
this.createUserToken();
}
else if (e.target.classList.contains('js-edit-token')) {
this.editUserToken(e.target.dataset.tokenid);
}
else if (e.target.classList.contains('js-massdelete-token')) {
this.massDeleteUserToken(e.target, Object.keys(chkbxRange.getSelectedIds()));
}
});
},
expiresDaysHandler() {
const filter_expires_state = document.getElementById('filter-expires-state');
const filter_expires_days = document.getElementById('filter-expires-days');
filter_expires_days.disabled = !filter_expires_state.checked;
},
createUserToken() {
this.openUserTokenPopup({admin_mode: '0'});
},
editUserToken(tokenid) {
const user_token_data = {tokenid, admin_mode: '0'};
this.openUserTokenPopup(user_token_data);
},
openUserTokenPopup(user_token_data) {
const overlay = PopUp('popup.token.edit', user_token_data, {
dialogueid: 'token_edit',
dialogue_class: 'modal-popup-generic',
prevent_navigation: true
});
overlay.$dialogue[0].addEventListener('dialogue.submit', this.events.userTokenSuccess, {once: true});
},
massDeleteUserToken(target, tokenids) {
const confirmation = tokenids.length > 1
? <?= json_encode(_('Delete selected tokens?')) ?>
: <?= json_encode(_('Delete selected token?')) ?>;
if (!window.confirm(confirmation)) {
return;
}
target.classList.add('is-loading');
const curl = new Curl('zabbix.php');
curl.setArgument('action', 'token.delete');
curl.setArgument('<?= CCsrfTokenHelper::CSRF_TOKEN_NAME ?>',
<?= json_encode(CCsrfTokenHelper::get('token')) ?>
);
fetch(curl.getUrl(), {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
tokenids: Object.keys(chkbxRange.getSelectedIds())
})
})
.then((response) => response.json())
.then((response) => {
if ('error' in response) {
if ('title' in response.error) {
postMessageError(response.error.title);
}
postMessageDetails('error', response.error.messages);
uncheckTableRows('user.token', response.keepids ?? []);
}
else if ('success' in response) {
postMessageOk(response.success.title);
if ('messages' in response.success) {
postMessageDetails('success', response.success.messages);
}
uncheckTableRows('user.token');
}
location.href = location.href;
})
.catch(() => {
clearMessages();
const message_box = makeMessageBox('bad', [<?= json_encode(_('Unexpected server error.')) ?>]);
addMessage(message_box);
})
.finally(() => {
target.classList.remove('is-loading');
});
},
events: {
userTokenSuccess(e) {
const data = e.detail;
if ('success' in data) {
postMessageOk(data.success.title);
if ('messages' in data.success) {
postMessageDetails('success', data.success.messages);
}
}
uncheckTableRows('user.token');
location.href = location.href;
}
}
};
</script>