2022-01-28 22:00:11 +01:00
|
|
|
import $ from 'jquery';
|
|
|
|
|
2020-08-28 03:36:37 +02:00
|
|
|
const $service = $('#service_type');
|
|
|
|
const $user = $('#auth_username');
|
|
|
|
const $pass = $('#auth_password');
|
|
|
|
const $token = $('#auth_token');
|
2020-09-22 00:42:22 +02:00
|
|
|
const $mirror = $('#mirror');
|
2021-04-09 00:25:57 +02:00
|
|
|
const $lfs = $('#lfs');
|
|
|
|
const $lfsSettings = $('#lfs_settings');
|
|
|
|
const $lfsEndpoint = $('#lfs_endpoint');
|
2020-09-22 00:42:22 +02:00
|
|
|
const $items = $('#migrate_items').find('input[type=checkbox]');
|
2020-08-28 03:36:37 +02:00
|
|
|
|
2021-11-09 10:27:25 +01:00
|
|
|
export default function initRepoMigration() {
|
2020-08-28 03:36:37 +02:00
|
|
|
checkAuth();
|
2021-04-09 00:25:57 +02:00
|
|
|
setLFSSettingsVisibility();
|
2020-08-28 03:36:37 +02:00
|
|
|
|
|
|
|
$user.on('keyup', () => {checkItems(false)});
|
|
|
|
$pass.on('keyup', () => {checkItems(false)});
|
|
|
|
$token.on('keyup', () => {checkItems(true)});
|
2020-09-22 00:42:22 +02:00
|
|
|
$mirror.on('change', () => {checkItems(true)});
|
2021-04-09 00:25:57 +02:00
|
|
|
$('#lfs_settings_show').on('click', () => { $lfsEndpoint.show(); return false });
|
|
|
|
$lfs.on('change', setLFSSettingsVisibility);
|
2020-08-28 03:36:37 +02:00
|
|
|
|
|
|
|
const $cloneAddr = $('#clone_addr');
|
|
|
|
$cloneAddr.on('change', () => {
|
|
|
|
const $repoName = $('#repo_name');
|
|
|
|
if ($cloneAddr.val().length > 0 && $repoName.val().length === 0) { // Only modify if repo_name input is blank
|
|
|
|
$repoName.val($cloneAddr.val().match(/^(.*\/)?((.+?)(\.git)?)$/)[3]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkAuth() {
|
|
|
|
const serviceType = $service.val();
|
|
|
|
|
2020-09-09 20:29:10 +02:00
|
|
|
checkItems(serviceType !== 1);
|
2020-08-28 03:36:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function checkItems(tokenAuth) {
|
|
|
|
let enableItems;
|
|
|
|
if (tokenAuth) {
|
|
|
|
enableItems = $token.val() !== '';
|
|
|
|
} else {
|
|
|
|
enableItems = $user.val() !== '' || $pass.val() !== '';
|
|
|
|
}
|
|
|
|
if (enableItems && $service.val() > 1) {
|
2020-09-22 00:42:22 +02:00
|
|
|
if ($mirror.is(':checked')) {
|
|
|
|
$items.not('[name="wiki"]').attr('disabled', true);
|
|
|
|
$items.filter('[name="wiki"]').attr('disabled', false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$items.attr('disabled', false);
|
2020-08-28 03:36:37 +02:00
|
|
|
} else {
|
2020-09-22 00:42:22 +02:00
|
|
|
$items.attr('disabled', true);
|
2020-08-28 03:36:37 +02:00
|
|
|
}
|
|
|
|
}
|
2021-04-09 00:25:57 +02:00
|
|
|
|
|
|
|
function setLFSSettingsVisibility() {
|
|
|
|
const visible = $lfs.is(':checked');
|
|
|
|
$lfsSettings.toggle(visible);
|
|
|
|
$lfsEndpoint.hide();
|
|
|
|
}
|