2022-01-28 21:00:11 +00:00
|
|
|
import $ from 'jquery';
|
2023-02-09 16:14:45 +00:00
|
|
|
import {checkAppUrl} from '../common-global.js';
|
2023-02-19 04:06:14 +00:00
|
|
|
import {hideElem, showElem, toggleElem} from '../../utils/dom.js';
|
2024-02-25 12:36:11 +00:00
|
|
|
import {POST} from '../../modules/fetch.js';
|
2022-01-28 21:00:11 +00:00
|
|
|
|
2024-02-25 12:36:11 +00:00
|
|
|
const {appSubUrl} = window.config;
|
2021-10-16 17:28:04 +00:00
|
|
|
|
2024-03-27 10:45:05 +00:00
|
|
|
function onSecurityProtocolChange() {
|
|
|
|
if (Number(document.getElementById('security_protocol')?.value) > 0) {
|
|
|
|
showElem('.has-tls');
|
|
|
|
} else {
|
|
|
|
hideElem('.has-tls');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-16 17:28:04 +00:00
|
|
|
export function initAdminCommon() {
|
2024-03-27 10:45:05 +00:00
|
|
|
if (!document.querySelector('.page-content.admin')) return;
|
2021-10-16 17:28:04 +00:00
|
|
|
|
2023-02-09 16:14:45 +00:00
|
|
|
// check whether appUrl(ROOT_URL) is correct, if not, show an error message
|
|
|
|
checkAppUrl();
|
|
|
|
|
2021-10-16 17:28:04 +00:00
|
|
|
// New user
|
|
|
|
if ($('.admin.new.user').length > 0 || $('.admin.edit.user').length > 0) {
|
2024-03-27 10:45:05 +00:00
|
|
|
document.getElementById('login_type')?.addEventListener('change', function () {
|
|
|
|
if (this.value?.substring(0, 1) === '0') {
|
|
|
|
document.getElementById('user_name')?.removeAttribute('disabled');
|
|
|
|
document.getElementById('login_name')?.removeAttribute('required');
|
2024-03-26 19:38:37 +00:00
|
|
|
hideElem('.non-local');
|
|
|
|
showElem('.local');
|
2024-03-27 10:45:05 +00:00
|
|
|
document.getElementById('user_name')?.focus();
|
2021-10-16 17:28:04 +00:00
|
|
|
|
2024-03-27 10:45:05 +00:00
|
|
|
if (this.getAttribute('data-password') === 'required') {
|
|
|
|
document.getElementById('password')?.setAttribute('required', 'required');
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
|
|
|
} else {
|
2024-03-27 10:45:05 +00:00
|
|
|
if (document.querySelector('.admin.edit.user')) {
|
|
|
|
document.getElementById('user_name')?.setAttribute('disabled', 'disabled');
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
2024-03-27 10:45:05 +00:00
|
|
|
document.getElementById('login_name')?.setAttribute('required', 'required');
|
2024-03-26 19:38:37 +00:00
|
|
|
showElem('.non-local');
|
|
|
|
hideElem('.local');
|
2024-03-27 10:45:05 +00:00
|
|
|
document.getElementById('login_name')?.focus();
|
2021-10-16 17:28:04 +00:00
|
|
|
|
2024-03-27 10:45:05 +00:00
|
|
|
document.getElementById('password')?.removeAttribute('required');
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function onUsePagedSearchChange() {
|
2024-03-27 10:45:05 +00:00
|
|
|
const searchPageSizeElements = document.querySelectorAll('.search-page-size');
|
2024-03-16 15:08:10 +00:00
|
|
|
if (document.getElementById('use_paged_search').checked) {
|
2023-02-22 15:26:02 +00:00
|
|
|
showElem('.search-page-size');
|
2024-03-27 10:45:05 +00:00
|
|
|
for (const el of searchPageSizeElements) {
|
|
|
|
el.querySelector('input')?.setAttribute('required', 'required');
|
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
} else {
|
2023-02-22 15:26:02 +00:00
|
|
|
hideElem('.search-page-size');
|
2024-03-27 10:45:05 +00:00
|
|
|
for (const el of searchPageSizeElements) {
|
|
|
|
el.querySelector('input')?.removeAttribute('required');
|
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onOAuth2Change(applyDefaultValues) {
|
2024-03-26 19:38:37 +00:00
|
|
|
hideElem('.open_id_connect_auto_discovery_url, .oauth2_use_custom_url');
|
2024-03-27 10:45:05 +00:00
|
|
|
for (const input of document.querySelectorAll('.open_id_connect_auto_discovery_url input[required]')) {
|
|
|
|
input.removeAttribute('required');
|
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
|
2024-03-27 10:45:05 +00:00
|
|
|
const provider = document.getElementById('oauth2_provider')?.value;
|
2021-10-16 17:28:04 +00:00
|
|
|
switch (provider) {
|
|
|
|
case 'openidConnect':
|
2024-03-27 10:45:05 +00:00
|
|
|
for (const input of document.querySelectorAll('.open_id_connect_auto_discovery_url input')) {
|
|
|
|
input.setAttribute('required', 'required');
|
|
|
|
}
|
2024-03-26 19:38:37 +00:00
|
|
|
showElem('.open_id_connect_auto_discovery_url');
|
2021-10-16 17:28:04 +00:00
|
|
|
break;
|
2024-06-17 10:05:59 +00:00
|
|
|
default: {
|
|
|
|
const customURLSettings = document.getElementById(`${provider}_customURLSettings`);
|
|
|
|
if (!customURLSettings) break;
|
2024-06-21 06:21:37 +00:00
|
|
|
const customURLRequired = (customURLSettings.getAttribute('data-required') === 'true');
|
|
|
|
document.getElementById('oauth2_use_custom_url').checked = customURLRequired;
|
|
|
|
if (customURLRequired || customURLSettings.getAttribute('data-available') === 'true') {
|
2024-03-26 19:38:37 +00:00
|
|
|
showElem('.oauth2_use_custom_url');
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
2024-06-17 10:05:59 +00:00
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
|
|
|
onOAuth2UseCustomURLChange(applyDefaultValues);
|
|
|
|
}
|
|
|
|
|
|
|
|
function onOAuth2UseCustomURLChange(applyDefaultValues) {
|
2024-03-27 10:45:05 +00:00
|
|
|
const provider = document.getElementById('oauth2_provider')?.value;
|
2024-03-26 19:38:37 +00:00
|
|
|
hideElem('.oauth2_use_custom_url_field');
|
2024-03-27 10:45:05 +00:00
|
|
|
for (const input of document.querySelectorAll('.oauth2_use_custom_url_field input[required]')) {
|
|
|
|
input.removeAttribute('required');
|
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
|
2024-03-24 17:56:02 +00:00
|
|
|
if (document.getElementById('oauth2_use_custom_url')?.checked) {
|
2021-10-16 17:28:04 +00:00
|
|
|
for (const custom of ['token_url', 'auth_url', 'profile_url', 'email_url', 'tenant']) {
|
2024-06-17 10:05:59 +00:00
|
|
|
const customInput = document.getElementById(`${provider}_${custom}`);
|
|
|
|
if (!customInput) continue;
|
2021-10-16 17:28:04 +00:00
|
|
|
if (applyDefaultValues) {
|
2024-06-17 10:05:59 +00:00
|
|
|
document.getElementById(`oauth2_${custom}`).value = customInput.value;
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
2024-06-21 06:21:37 +00:00
|
|
|
if (customInput.getAttribute('data-available') === 'true') {
|
2024-03-27 10:45:05 +00:00
|
|
|
for (const input of document.querySelectorAll(`.oauth2_${custom} input`)) {
|
|
|
|
input.setAttribute('required', 'required');
|
|
|
|
}
|
|
|
|
showElem(`.oauth2_${custom}`);
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-11 14:24:58 +00:00
|
|
|
function onEnableLdapGroupsChange() {
|
2024-03-27 10:45:05 +00:00
|
|
|
toggleElem(document.getElementById('ldap-group-options'), $('.js-ldap-group-toggle')[0].checked);
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// New authentication
|
2024-03-27 10:45:05 +00:00
|
|
|
if (document.querySelector('.admin.new.authentication')) {
|
|
|
|
document.getElementById('auth_type')?.addEventListener('change', function () {
|
2024-03-26 19:38:37 +00:00
|
|
|
hideElem('.ldap, .dldap, .smtp, .pam, .oauth2, .has-tls, .search-page-size, .sspi');
|
2021-10-16 17:28:04 +00:00
|
|
|
|
2024-03-27 10:45:05 +00:00
|
|
|
for (const input of document.querySelectorAll('.ldap input[required], .binddnrequired input[required], .dldap input[required], .smtp input[required], .pam input[required], .oauth2 input[required], .has-tls input[required], .sspi input[required]')) {
|
|
|
|
input.removeAttribute('required');
|
|
|
|
}
|
|
|
|
|
2024-03-27 16:14:18 +00:00
|
|
|
document.querySelector('.binddnrequired')?.classList.remove('required');
|
2021-10-16 17:28:04 +00:00
|
|
|
|
2024-03-27 10:45:05 +00:00
|
|
|
const authType = this.value;
|
2021-10-16 17:28:04 +00:00
|
|
|
switch (authType) {
|
|
|
|
case '2': // LDAP
|
2024-03-26 19:38:37 +00:00
|
|
|
showElem('.ldap');
|
2024-03-27 10:45:05 +00:00
|
|
|
for (const input of document.querySelectorAll('.binddnrequired input, .ldap div.required:not(.dldap) input')) {
|
|
|
|
input.setAttribute('required', 'required');
|
|
|
|
}
|
2024-03-27 16:14:18 +00:00
|
|
|
document.querySelector('.binddnrequired')?.classList.add('required');
|
2021-10-16 17:28:04 +00:00
|
|
|
break;
|
|
|
|
case '3': // SMTP
|
2024-03-26 19:38:37 +00:00
|
|
|
showElem('.smtp');
|
|
|
|
showElem('.has-tls');
|
2024-03-27 10:45:05 +00:00
|
|
|
for (const input of document.querySelectorAll('.smtp div.required input, .has-tls')) {
|
|
|
|
input.setAttribute('required', 'required');
|
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
break;
|
|
|
|
case '4': // PAM
|
2024-03-26 19:38:37 +00:00
|
|
|
showElem('.pam');
|
2024-03-27 10:45:05 +00:00
|
|
|
for (const input of document.querySelectorAll('.pam input')) {
|
|
|
|
input.setAttribute('required', 'required');
|
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
break;
|
|
|
|
case '5': // LDAP
|
2024-03-26 19:38:37 +00:00
|
|
|
showElem('.dldap');
|
2024-03-27 10:45:05 +00:00
|
|
|
for (const input of document.querySelectorAll('.dldap div.required:not(.ldap) input')) {
|
|
|
|
input.setAttribute('required', 'required');
|
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
break;
|
|
|
|
case '6': // OAuth2
|
2024-03-26 19:38:37 +00:00
|
|
|
showElem('.oauth2');
|
2024-03-27 10:45:05 +00:00
|
|
|
for (const input of document.querySelectorAll('.oauth2 div.required:not(.oauth2_use_custom_url,.oauth2_use_custom_url_field,.open_id_connect_auto_discovery_url) input')) {
|
|
|
|
input.setAttribute('required', 'required');
|
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
onOAuth2Change(true);
|
|
|
|
break;
|
|
|
|
case '7': // SSPI
|
2024-03-26 19:38:37 +00:00
|
|
|
showElem('.sspi');
|
2024-03-27 10:45:05 +00:00
|
|
|
for (const input of document.querySelectorAll('.sspi div.required input')) {
|
|
|
|
input.setAttribute('required', 'required');
|
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (authType === '2' || authType === '5') {
|
|
|
|
onSecurityProtocolChange();
|
2022-02-11 14:24:58 +00:00
|
|
|
onEnableLdapGroupsChange();
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
|
|
|
if (authType === '2') {
|
|
|
|
onUsePagedSearchChange();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('#auth_type').trigger('change');
|
2024-03-27 10:45:05 +00:00
|
|
|
document.getElementById('security_protocol')?.addEventListener('change', onSecurityProtocolChange);
|
|
|
|
document.getElementById('use_paged_search')?.addEventListener('change', onUsePagedSearchChange);
|
|
|
|
document.getElementById('oauth2_provider')?.addEventListener('change', () => onOAuth2Change(true));
|
|
|
|
document.getElementById('oauth2_use_custom_url')?.addEventListener('change', () => onOAuth2UseCustomURLChange(true));
|
2022-02-11 14:24:58 +00:00
|
|
|
$('.js-ldap-group-toggle').on('change', onEnableLdapGroupsChange);
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
|
|
|
// Edit authentication
|
2024-03-27 10:45:05 +00:00
|
|
|
if (document.querySelector('.admin.edit.authentication')) {
|
|
|
|
const authType = document.getElementById('auth_type')?.value;
|
2021-10-16 17:28:04 +00:00
|
|
|
if (authType === '2' || authType === '5') {
|
2024-03-27 10:45:05 +00:00
|
|
|
document.getElementById('security_protocol')?.addEventListener('change', onSecurityProtocolChange);
|
2022-02-11 14:24:58 +00:00
|
|
|
$('.js-ldap-group-toggle').on('change', onEnableLdapGroupsChange);
|
|
|
|
onEnableLdapGroupsChange();
|
2021-10-16 17:28:04 +00:00
|
|
|
if (authType === '2') {
|
2024-03-27 10:45:05 +00:00
|
|
|
document.getElementById('use_paged_search')?.addEventListener('change', onUsePagedSearchChange);
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
|
|
|
} else if (authType === '6') {
|
2024-03-27 10:45:05 +00:00
|
|
|
document.getElementById('oauth2_provider')?.addEventListener('change', () => onOAuth2Change(true));
|
|
|
|
document.getElementById('oauth2_use_custom_url')?.addEventListener('change', () => onOAuth2UseCustomURLChange(false));
|
2021-10-16 17:28:04 +00:00
|
|
|
onOAuth2Change(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-27 10:45:05 +00:00
|
|
|
if (document.querySelector('.admin.authentication')) {
|
2023-06-15 01:12:50 +00:00
|
|
|
$('#auth_name').on('input', function () {
|
2023-11-29 01:37:12 +00:00
|
|
|
// appSubUrl is either empty or is a path that starts with `/` and doesn't have a trailing slash.
|
2024-03-27 10:45:05 +00:00
|
|
|
document.getElementById('oauth2-callback-url').textContent = `${window.location.origin}${appSubUrl}/user/oauth2/${encodeURIComponent(this.value)}/callback`;
|
2023-06-15 01:12:50 +00:00
|
|
|
}).trigger('input');
|
|
|
|
}
|
|
|
|
|
2021-10-16 17:28:04 +00:00
|
|
|
// Notice
|
2024-03-27 10:45:05 +00:00
|
|
|
if (document.querySelector('.admin.notice')) {
|
2024-04-13 07:46:02 +00:00
|
|
|
const detailModal = document.getElementById('detail-modal');
|
2021-10-16 17:28:04 +00:00
|
|
|
|
|
|
|
// Attach view detail modals
|
|
|
|
$('.view-detail').on('click', function () {
|
2024-04-13 07:46:02 +00:00
|
|
|
const description = this.closest('tr').querySelector('.notice-description').textContent;
|
|
|
|
detailModal.querySelector('.content pre').textContent = description;
|
|
|
|
$(detailModal).modal('show');
|
2021-10-16 17:28:04 +00:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Select actions
|
2024-03-29 04:56:01 +00:00
|
|
|
const checkboxes = document.querySelectorAll('.select.table .ui.checkbox input');
|
|
|
|
|
2021-10-16 17:28:04 +00:00
|
|
|
$('.select.action').on('click', function () {
|
|
|
|
switch ($(this).data('action')) {
|
|
|
|
case 'select-all':
|
2024-03-29 04:56:01 +00:00
|
|
|
for (const checkbox of checkboxes) {
|
|
|
|
checkbox.checked = true;
|
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
break;
|
|
|
|
case 'deselect-all':
|
2024-03-29 04:56:01 +00:00
|
|
|
for (const checkbox of checkboxes) {
|
|
|
|
checkbox.checked = false;
|
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
break;
|
|
|
|
case 'inverse':
|
2024-03-29 04:56:01 +00:00
|
|
|
for (const checkbox of checkboxes) {
|
|
|
|
checkbox.checked = !checkbox.checked;
|
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
});
|
2024-03-27 10:45:05 +00:00
|
|
|
document.getElementById('delete-selection')?.addEventListener('click', async function (e) {
|
2023-03-14 03:34:09 +00:00
|
|
|
e.preventDefault();
|
2024-03-27 16:14:18 +00:00
|
|
|
this.classList.add('is-loading', 'disabled');
|
2024-02-25 12:36:11 +00:00
|
|
|
const data = new FormData();
|
2024-03-29 04:56:01 +00:00
|
|
|
for (const checkbox of checkboxes) {
|
|
|
|
if (checkbox.checked) {
|
|
|
|
data.append('ids[]', checkbox.closest('.ui.checkbox').getAttribute('data-id'));
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
2024-03-29 04:56:01 +00:00
|
|
|
}
|
2024-03-27 16:14:18 +00:00
|
|
|
await POST(this.getAttribute('data-link'), {data});
|
|
|
|
window.location.href = this.getAttribute('data-redirect');
|
2021-10-16 17:28:04 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|