mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 18:27:16 +00:00
127 lines
3.7 KiB
JavaScript
127 lines
3.7 KiB
JavaScript
function reassign(call, target_profile_id) {
|
|
let qsoids = [];
|
|
let elements = document.getElementsByName("cBox[]");
|
|
elements.forEach((item) => {
|
|
if (item.checked) {
|
|
qsoids.push(item.value);
|
|
}
|
|
});
|
|
$.ajax({
|
|
url: base_url + "index.php/debug/reassign",
|
|
type: "post",
|
|
data: { call: call, station_id: target_profile_id, qsoids: qsoids },
|
|
success: function (resu) {
|
|
if (resu.status) {
|
|
location.reload();
|
|
}
|
|
},
|
|
});
|
|
}
|
|
|
|
function toggleAll(source) {
|
|
if (source.checked) {
|
|
let elements = document.getElementsByName("cBox[]");
|
|
elements.forEach((item) => {
|
|
item.checked = true;
|
|
});
|
|
source.checked = true;
|
|
}
|
|
if (!source.checked) {
|
|
let elements = document.getElementsByName("cBox[]");
|
|
elements.forEach((item) => {
|
|
item.checked = false;
|
|
});
|
|
source.checked = false;
|
|
}
|
|
}
|
|
|
|
function updateCallsign(item) {
|
|
let text = item.options[item.selectedIndex].text;
|
|
let call = text.substr(
|
|
text.lastIndexOf("(") + 1,
|
|
text.lastIndexOf(")") - text.lastIndexOf("(") - 1
|
|
);
|
|
document.getElementById("station_call").innerHTML = call;
|
|
}
|
|
|
|
function version_check(callback) {
|
|
var latest_tag;
|
|
$('#version_check_button').prop("disabled", true).addClass("running");
|
|
$.ajax({
|
|
url: base_url + 'index.php/debug/wavelog_version', // get latest commit hash from current version
|
|
success: function(last_local_commit) {
|
|
$.ajax({
|
|
url: base_url + 'index.php/debug/wavelog_fetch', // Fetch Repo (don't merge!)-Head and get latest hash from there
|
|
type: 'GET',
|
|
success: function(data) {
|
|
// Extract the latest tag
|
|
last_repo_commit=data.latest_commit_hash;
|
|
|
|
// Compare database version with the latest tag
|
|
var is_latest_version = (last_local_commit === last_repo_commit);
|
|
|
|
// Call the callback function with the result
|
|
callback(is_latest_version, last_repo_commit);
|
|
$('#version_check_button').prop("disabled", false).removeClass("running");
|
|
},
|
|
error: function(xhr, status, error) {
|
|
console.error('ERROR fetching Git tags:', error);
|
|
callback(null, null);
|
|
$('#version_check_button').prop("disabled", false).removeClass("running");
|
|
}
|
|
});
|
|
},
|
|
error: function(xhr, status, error) {
|
|
console.error('ERROR fetching database version:', error);
|
|
callback(null, null);
|
|
}
|
|
});
|
|
}
|
|
|
|
function update_version_check(local_branch) {
|
|
version_check(function(is_latest_version, last_repo_commit) {
|
|
$('#version_check_result').removeClass('alert alert-success alert-warning alert-danger').text('');
|
|
$('#version_update_button').hide();
|
|
var timestamp = Date.now();
|
|
|
|
if (is_latest_version !== null && last_repo_commit != '') {
|
|
if (is_latest_version) {
|
|
$('#version_check_result').addClass('alert alert-success');
|
|
$('#version_check_result').html(lang_git_is_uptodate);
|
|
} else {
|
|
$('#version_check_result').addClass('alert alert-warning');
|
|
$('#version_check_result').html(lang_git_new_update_available.replace("%s", last_repo_commit));
|
|
$('#version_update_button').show();
|
|
}
|
|
} else {
|
|
$('#version_check_result').addClass('alert alert-warning');
|
|
$('#version_check_result').html(lang_git_remote_doesnt_know_branch);
|
|
}
|
|
|
|
$('#last_version_check').html(lang_git_last_version_check.replace("%s", new Date(timestamp).toUTCString()));
|
|
});
|
|
}
|
|
|
|
$(document).ready(function () {
|
|
$('#clear_cache_button').on('click', function () {
|
|
if (!confirm(decodeHtml(lang_cache_clean_confirm))) {
|
|
return;
|
|
}
|
|
|
|
$.ajax({
|
|
url: base_url + 'index.php/debug/clear_cache',
|
|
type: 'post',
|
|
success: function (resu) {
|
|
if (resu && resu.status) {
|
|
location.reload();
|
|
} else {
|
|
alert(decodeHtml(lang_cache_clear_failure));
|
|
}
|
|
},
|
|
error: function () {
|
|
alert(decodeHtml(lang_cache_clear_failure));
|
|
}
|
|
});
|
|
});
|
|
});
|