2019-12-10 04:57:57 -05:00
|
|
|
|
/**
|
|
|
|
|
* Converts a long string of bytes into a readable format e.g KB, MB, GB, TB, YB
|
|
|
|
|
*
|
|
|
|
|
* @param {Int} num The number of bytes.
|
|
|
|
|
*/
|
|
|
|
|
function readableBytes(bytes) {
|
|
|
|
|
var i = Math.floor(Math.log(bytes) / Math.log(1024)),
|
|
|
|
|
sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
|
|
|
|
|
|
|
|
|
|
return (bytes / Math.pow(1024, i)).toFixed(2) * 1 + ' ' + sizes[i];
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-08 03:59:58 -05:00
|
|
|
|
const confirmBtn = $('.mini.confirm.modal .positive.button')
|
2019-12-09 05:14:31 -05:00
|
|
|
|
|
2019-12-08 03:59:58 -05:00
|
|
|
|
function showConfirm(title, content, callFn, extData) {
|
|
|
|
|
const modal = $('.mini.confirm.modal')
|
|
|
|
|
modal.children('.header').text(title)
|
|
|
|
|
modal.children('.content').text(content)
|
2019-12-09 05:14:31 -05:00
|
|
|
|
if (confirmBtn.hasClass('loading')) {
|
2019-12-08 03:59:58 -05:00
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
modal.modal({
|
|
|
|
|
closable: true,
|
|
|
|
|
onApprove: function () {
|
|
|
|
|
confirmBtn.toggleClass('loading')
|
|
|
|
|
callFn(extData)
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
}).modal('show')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function showFormModal(modelSelector, formID, URL, getData) {
|
|
|
|
|
$(modelSelector).modal({
|
|
|
|
|
closable: true,
|
|
|
|
|
onApprove: function () {
|
|
|
|
|
let success = false
|
|
|
|
|
const btn = $(modelSelector + ' .positive.button')
|
|
|
|
|
const form = $(modelSelector + ' form')
|
|
|
|
|
if (btn.hasClass('loading')) {
|
|
|
|
|
return success
|
|
|
|
|
}
|
|
|
|
|
form.children('.message').remove()
|
|
|
|
|
btn.toggleClass('loading')
|
|
|
|
|
const data = getData ? getData() : $(formID).serializeArray().reduce(function (obj, item) {
|
2019-12-08 10:18:29 -05:00
|
|
|
|
obj[item.name] = (item.name.endsWith('_id') || item.name === 'id') ? parseInt(item.value) : item.value;
|
2019-12-08 03:59:58 -05:00
|
|
|
|
return obj;
|
|
|
|
|
}, {});
|
|
|
|
|
$.post(URL, JSON.stringify(data)).done(function (resp) {
|
|
|
|
|
if (resp.code == 200) {
|
|
|
|
|
if (resp.message) {
|
2019-12-11 05:03:49 -05:00
|
|
|
|
$.suiAlert({
|
|
|
|
|
title: '操作成功',
|
|
|
|
|
type: 'success',
|
|
|
|
|
description: resp.message,
|
|
|
|
|
time: '3',
|
|
|
|
|
position: 'top-center',
|
|
|
|
|
});
|
2019-12-08 03:59:58 -05:00
|
|
|
|
}
|
|
|
|
|
window.location.reload()
|
|
|
|
|
} else {
|
|
|
|
|
form.append(`<div class="ui negative message"><div class="header">操作失败</div><p>` + resp.message + `</p></div>`)
|
|
|
|
|
}
|
|
|
|
|
}).fail(function (err) {
|
|
|
|
|
form.append(`<div class="ui negative message"><div class="header">网络错误</div><p>` + err.responseText + `</p></div>`)
|
|
|
|
|
}).always(function () {
|
|
|
|
|
btn.toggleClass('loading')
|
|
|
|
|
});
|
|
|
|
|
return success
|
|
|
|
|
}
|
|
|
|
|
}).modal('show')
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-08 10:18:29 -05:00
|
|
|
|
function addServer() {
|
|
|
|
|
showFormModal('.server.modal', '#serverForm', '/api/server')
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-08 03:59:58 -05:00
|
|
|
|
function logout(id) {
|
|
|
|
|
$.post('/api/logout', JSON.stringify({ id: id })).done(function (resp) {
|
|
|
|
|
if (resp.code == 200) {
|
|
|
|
|
$.suiAlert({
|
|
|
|
|
title: '注销成功',
|
|
|
|
|
type: 'success',
|
2019-12-11 05:03:49 -05:00
|
|
|
|
description: '如需继续访问请使用 GitHub 再次登录',
|
2019-12-08 03:59:58 -05:00
|
|
|
|
time: '3',
|
|
|
|
|
position: 'top-center',
|
|
|
|
|
});
|
|
|
|
|
window.location.reload()
|
|
|
|
|
} else {
|
|
|
|
|
$.suiAlert({
|
|
|
|
|
title: '注销失败',
|
|
|
|
|
description: resp.code + ':' + resp.message,
|
|
|
|
|
type: 'error',
|
|
|
|
|
time: '3',
|
|
|
|
|
position: 'top-center',
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}).fail(function (err) {
|
2019-12-11 05:03:49 -05:00
|
|
|
|
$.suiAlert({
|
|
|
|
|
title: '网络错误',
|
|
|
|
|
description: err.responseText,
|
|
|
|
|
type: 'error',
|
|
|
|
|
time: '3',
|
|
|
|
|
position: 'top-center',
|
|
|
|
|
});
|
2019-12-08 03:59:58 -05:00
|
|
|
|
})
|
|
|
|
|
}
|