mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
412 lines
18 KiB
HTML
412 lines
18 KiB
HTML
{% extends ../base.html %}
|
|
|
|
{% block meta %}
|
|
{% end %}
|
|
|
|
{% block title %}Crafty Controller - {{ translate('serverDetails', 'serverDetails', data['lang']) }}{% end %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="content-wrapper">
|
|
|
|
<!-- Page Title Header Starts-->
|
|
<div class="row page-title-header">
|
|
<div class="col-12">
|
|
<div class="page-header">
|
|
<h4 class="page-title">
|
|
{{ translate('serverDetails', 'serverDetails', data['lang']) }} - {{
|
|
data['server_stats']['server_id']['server_name'] }}
|
|
<br />
|
|
<small>UUID: {{ data['server_stats']['server_id']['server_uuid'] }}</small>
|
|
</h4>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<!-- Page Title Header Ends-->
|
|
|
|
{% include "parts/details_stats.html" %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-12 grid-margin">
|
|
<div class="card">
|
|
<div class="card-body pt-0">
|
|
|
|
<span class="d-none d-sm-block">
|
|
{% include "parts/server_controls_list.html" %}
|
|
</span>
|
|
<span class="d-block d-sm-none">
|
|
{% include "parts/m_server_controls_list.html" %}
|
|
</span>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12 col-sm-12" style="overflow-x:auto;">
|
|
<div class="card">
|
|
<div class="card-header header-sm d-flex justify-content-between align-items-center">
|
|
<h4 class="card-title"><i class="fas fa-calendar"></i> {{ translate('serverSchedules',
|
|
'scheduledTasks', data['lang']) }} </h4>
|
|
{% if data['user_data']['hints'] %}
|
|
<span class="too_small" title="{{ translate('serverSchedules', 'cannotSee', data['lang']) }}" , data-content="{{ translate('serverSchedules', 'cannotSeeOnMobile', data['lang']) }}" , data-placement="bottom"></span>
|
|
{% end %}
|
|
<div>
|
|
<button onclick="location.href=`/panel/add_schedule?id={{ data['server_stats']['server_id']['server_id'] }}`" class="btn btn-info">{{ translate('serverSchedules', 'create', data['lang']) }}<i class="fas fa-pencil-alt"></i></button>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
<table class="table table-hover d-none d-lg-block responsive-table" id="schedule_table" width="100%" style="table-layout:fixed;">
|
|
<thead>
|
|
<tr class="rounded">
|
|
<th style="width: 2%; min-width: 10px;">{{ translate('serverSchedules', 'name', data['lang']) }}
|
|
</th>
|
|
<th style="width: 23%; min-width: 50px;">{{ translate('serverSchedules', 'action', data['lang'])
|
|
}}</th>
|
|
<th style="width: 40%; min-width: 50px;">{{ translate('serverSchedules', 'command',
|
|
data['lang']) }}</th>
|
|
<th style="width: 10%; min-width: 50px;">{{ translate('serverSchedules', 'interval',
|
|
data['lang']) }}</th>
|
|
<th style="width: 10%; min-width: 50px;">{{ translate('serverSchedules', 'nextRun',
|
|
data['lang']) }}</th>
|
|
<th style="width: 10%; min-width: 50px;">{{ translate('serverSchedules', 'enabled',
|
|
data['lang']) }}</th>
|
|
<th style="width: 10%; min-width: 50px;">{{ translate('serverSchedules', 'edit', data['lang'])
|
|
}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for schedule in data['schedules'] %}
|
|
<tr>
|
|
<td id="{{schedule.schedule_id}}" class="id">
|
|
<p>{{schedule.name}}</p>
|
|
</td>
|
|
<td id="{{schedule.action}}" class="action">
|
|
<p>{{schedule.action}}</p>
|
|
</td>
|
|
<td id="{{schedule.command}}" class="action" style="overflow: scroll; max-width: 30px;">
|
|
<p style="overflow: scroll;" class="no-scroll">{{schedule.command}}</p>
|
|
</td>
|
|
<td id="{{schedule.interval}}" class="action">
|
|
{% if schedule.interval_type != '' and schedule.interval_type != 'reaction' %}
|
|
<p>{{ translate('serverSchedules', 'every', data['lang']) }}</p>
|
|
<p>{{schedule.interval}} {{schedule.interval_type}}</p>
|
|
{% elif schedule.interval_type == 'reaction' %}
|
|
<p>{{schedule.interval_type}}<br><br>{{ translate('serverSchedules', 'child', data['lang'])}}:
|
|
{{ schedule.parent }}</p>
|
|
{% else %}
|
|
<p>Cron String:</p>
|
|
<p>{{schedule.cron_string}}</p>
|
|
{% end %}
|
|
</td>
|
|
<td id="{{schedule.start_time}}" class="action">
|
|
<p>{{schedule.next_run}}</p>
|
|
</td>
|
|
<td id="{{schedule.enabled}}" class="action">
|
|
<input style="width: 10px !important;" type="checkbox" class="schedule-enabled-toggle" data-schedule-id="{{schedule.schedule_id}}" data-schedule-enabled="{{ 'true' if schedule.enabled else 'false' }}">
|
|
</td>
|
|
<td id="{{schedule.action}}" class="action">
|
|
<button onclick="window.location.href='/panel/edit_schedule?id={{ data['server_stats']['server_id']['server_id'] }}&sch_id={{schedule.schedule_id}}'" class="btn btn-info">
|
|
<i class="fas fa-pencil-alt"></i>
|
|
</button>
|
|
<br>
|
|
<br>
|
|
<button data-sch={{ schedule.schedule_id }} class="btn btn-danger del_button">
|
|
<i class="fas fa-trash" aria-hidden="true"></i>
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
{% end %}
|
|
</tbody>
|
|
</table>
|
|
<hr />
|
|
<table class="table table-hover d-block d-lg-none" id="mini_schedule_table" width="100%" style="table-layout:fixed;">
|
|
<thead>
|
|
<tr class="rounded">
|
|
<th style="width: 25%; min-width: 50px;">{{ translate('serverSchedules', 'action', data['lang'])
|
|
}}</th>
|
|
<th style="max-width: 40%; min-width: 50px;">{{ translate('serverSchedules', 'command',
|
|
data['lang']) }}</th>
|
|
<th style="width: 10%; min-width: 50px;">{{ translate('serverSchedules', 'enabled',
|
|
data['lang']) }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for schedule in data['schedules'] %}
|
|
<tr data-toggle="modal" data-target="#task_details_{{schedule.schedule_id}}">
|
|
<td id="{{schedule.action}}" class="action">
|
|
<p>{{schedule.action}}</p>
|
|
</td>
|
|
<td id="{{schedule.command}}" class="action" style="overflow: scroll; max-width: 30px;">
|
|
<p style="overflow: scroll;">{{schedule.command}}</p>
|
|
</td>
|
|
<td id="{{schedule.enabled}}" class="action">
|
|
{% if schedule.enabled %}
|
|
<span class="text-success">
|
|
<i class="fas fa-check-square"></i> {{ translate('serverSchedules', 'yes', data['lang']) }}
|
|
</span>
|
|
{% else %}
|
|
<span class="text-danger">
|
|
<i class="far fa-times-square"></i> {{ translate('serverSchedules', 'no', data['lang']) }}
|
|
</span>
|
|
{% end %}
|
|
</td>
|
|
</tr>
|
|
<!-- Modal -->
|
|
<div class="modal fade" id="task_details_{{schedule.schedule_id}}" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="exampleModalLabel">{{ translate('serverSchedules', 'details',
|
|
data['lang']) }}</h5>
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<ul style="list-style: none;">
|
|
<li id="{{schedule.schedule_id}}" class="id" style="border-top: .1em solid gray;">
|
|
<h4>{{ translate('serverSchedules', 'name', data['lang']) }}</h4>
|
|
<p>{{schedule.schedule_id}}</p>
|
|
</li>
|
|
<li id="{{schedule.action}}" class="action" style="border-top: .1em solid gray;">
|
|
<h4>{{ translate('serverSchedules', 'action', data['lang']) }}</h4>
|
|
<p>{{schedule.action}}</p>
|
|
</li>
|
|
<li id="{{schedule.command}}" class="action" style="border-top: .1em solid gray;">
|
|
<h4>{{ translate('serverSchedules', 'command', data['lang']) }}</h4>
|
|
<p>{{schedule.command}}</p>
|
|
</li>
|
|
<li id="{{schedule.interval}}" class="action" style="border-top: .1em solid gray;">
|
|
{% if schedule.interval != '' %}
|
|
<h4>{{ translate('serverSchedules', 'interval', data['lang']) }}</h4>
|
|
<p>{{ translate('serverSchedules', 'every', data['lang']) }} {{schedule.interval}}
|
|
{{schedule.interval_type}}</p>
|
|
{% elif schedule.interval_type == 'reaction' %}
|
|
<h4>{{ translate('serverSchedules', 'interval', data['lang']) }}</h4>
|
|
<p>{{schedule.interval_type}}<br><br>{{ translate('serverSchedules', 'child',
|
|
data['lang']) }}: {{ schedule.parent }}</p>
|
|
{% else %}
|
|
<h4>{{ translate('serverSchedules', 'interval', data['lang']) }}</h4>
|
|
<p>{{ translate('serverSchedules', 'cron', data['lang']) }}: {{schedule.cron_string}}
|
|
</p>
|
|
{% end %}
|
|
</li>
|
|
<li id="{{schedule.start_time}}" class="action" style="border-top: .1em solid gray;">
|
|
<h4>{{ translate('serverSchedules', 'nextRun', data['lang']) }}</h4>
|
|
{% if schedule.next_run %}
|
|
<p>{{schedule.next_run}}</p>
|
|
{% else %}
|
|
<p>zzzzzzz</p>
|
|
{% end %}
|
|
</li>
|
|
<li id="{{schedule.enabled}}" class="action" style="border-top: .1em solid gray; border-bottom: .1em solid gray">
|
|
<h4>{{ translate('serverSchedules', 'enabled', data['lang']) }}</h4>
|
|
<input type="checkbox" class="schedule-enabled-toggle" data-schedule-id="{{schedule.schedule_id}}" data-schedule-enabled="{{ 'true' if schedule.enabled else 'false' }}">
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button onclick="window.location.href='/panel/edit_schedule?id={{ data['server_stats']['server_id']['server_id'] }}&sch_id={{schedule.schedule_id}}'" class="btn btn-info">
|
|
<i class="fas fa-pencil-alt"></i> {{ translate('serverSchedules', 'edit', data['lang'])
|
|
}}
|
|
</button>
|
|
<button data-sch={{ schedule.schedule_id }} class="btn btn-danger del_button">
|
|
<i class="fas fa-trash" aria-hidden="true"></i> {{ translate('serverSchedules',
|
|
'delete', data['lang']) }}
|
|
</button>
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">{{
|
|
translate('serverSchedules', 'close', data['lang']) }}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% end %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<style>
|
|
.popover-body {
|
|
color: white !important;
|
|
;
|
|
}
|
|
|
|
.toggle-handle {
|
|
background-color: white !important;
|
|
}
|
|
|
|
.toggle-on {
|
|
color: black !important;
|
|
}
|
|
|
|
.toggle {
|
|
height: 0px !important;
|
|
}
|
|
</style>
|
|
|
|
|
|
|
|
</div>
|
|
<style>
|
|
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
td::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
/* Hide scrollbar for IE, Edge and Firefox */
|
|
td {
|
|
-ms-overflow-style: none;
|
|
/* IE and Edge */
|
|
scrollbar-width: none;
|
|
/* Firefox */
|
|
}
|
|
</style>
|
|
<!-- content-wrapper ends -->
|
|
|
|
{% end %}
|
|
|
|
{% block js %}
|
|
<script>
|
|
|
|
function debounce(func, timeout = 300) {
|
|
let timer;
|
|
return (...args) => {
|
|
clearTimeout(timer);
|
|
timer = setTimeout(() => { func.apply(this, args); }, timeout);
|
|
};
|
|
}
|
|
|
|
$(() => {
|
|
$('.schedule-enabled-toggle').bootstrapToggle({
|
|
on: 'Yes',
|
|
off: 'No',
|
|
onstyle: 'success',
|
|
offstyle: 'danger',
|
|
})
|
|
$('.schedule-enabled-toggle').each(function () {
|
|
const enabled = JSON.parse(this.getAttribute('data-schedule-enabled'));
|
|
$(this).bootstrapToggle(enabled ? 'on' : 'off')
|
|
})
|
|
$('.schedule-enabled-toggle').change(function () {
|
|
const id = this.getAttribute('data-schedule-id');
|
|
const enabled = this.checked;
|
|
|
|
fetch(`/api/v2/servers/{{data['server_id']}}/tasks/${id}`, {
|
|
method: 'PATCH',
|
|
body: JSON.stringify({ enabled }),
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
})
|
|
});
|
|
})
|
|
|
|
const serverId = new URLSearchParams(document.location.search).get('id')
|
|
|
|
$(document).ready(function () {
|
|
console.log('ready for JS!')
|
|
$('#schedule_table').DataTable({
|
|
'order': [4, 'asc'],
|
|
}
|
|
);
|
|
|
|
});
|
|
$(document).ready(function () {
|
|
console.log('ready for JS!')
|
|
$('#mini_schedule_table').DataTable({
|
|
'order': [2, 'asc']
|
|
}
|
|
);
|
|
document.getElementById('mini_schedule_table_wrapper').hidden = true;
|
|
});
|
|
$(document).ready(function () {
|
|
$('[data-toggle="popover"]').popover();
|
|
if ($(window).width() < 1000) {
|
|
$('.too_small').popover("show");
|
|
document.getElementById('schedule_table_wrapper').hidden = true;
|
|
document.getElementById('mini_schedule_table_wrapper').hidden = false;
|
|
}
|
|
|
|
});
|
|
$(window).ready(function () {
|
|
$('body').click(function () {
|
|
$('.too_small').popover("hide");
|
|
});
|
|
});
|
|
$(window).resize(function () {
|
|
// This will execute whenever the window is resized
|
|
if ($(window).width() < 1000) {
|
|
$('.too_small').popover("show");
|
|
document.getElementById('schedule_table_wrapper').hidden = true;
|
|
document.getElementById('mini_schedule_table_wrapper').hidden = false;
|
|
}
|
|
else {
|
|
$('.too_small').popover("hide");
|
|
document.getElementById('schedule_table_wrapper').hidden = false;
|
|
document.getElementById('mini_schedule_table_wrapper').hidden = true;
|
|
} // New width
|
|
});
|
|
</script>
|
|
<script>
|
|
|
|
|
|
//used to get cookies from browser - this is part of tornados xsrf protection - it's for extra security
|
|
function getCookie(name) {
|
|
var r = document.cookie.match("\\b" + name + "=([^;]*)\\b");
|
|
return r ? r[1] : undefined;
|
|
}
|
|
|
|
$(document).ready(function () {
|
|
console.log("ready!");
|
|
|
|
});
|
|
$(".del_button").click(function () {
|
|
var sch_id = $(this).data('sch');
|
|
|
|
console.log(sch_id)
|
|
|
|
bootbox.confirm({
|
|
title: "{{ translate('serverSchedules', 'areYouSure', data['lang']) }}",
|
|
message: "{{ translate('serverSchedules', 'confirmDelete', data['lang']) }}",
|
|
buttons: {
|
|
cancel: {
|
|
label: '<i class="fas fa-times"></i> {{ translate("serverSchedules", "cancel", data['lang']) }}'
|
|
},
|
|
confirm: {
|
|
className: 'btn-outline-danger',
|
|
label: '<i class="fas fa-check"></i> {{ translate("serverSchedules", "confirm", data['lang']) }}'
|
|
}
|
|
},
|
|
callback: function (result) {
|
|
console.log(result);
|
|
if (result == true) {
|
|
del_task(sch_id, serverId);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
async function del_task(sch_id, id) {
|
|
var token = getCookie("_xsrf")
|
|
|
|
let res = await fetch(`/api/v2/servers/${id}/tasks/${sch_id}`, {
|
|
method: 'DELETE',
|
|
headers: {
|
|
'token': token,
|
|
},
|
|
});
|
|
let responseData = await res;
|
|
if (responseData.statusText === "OK") {
|
|
window.location.reload();
|
|
}
|
|
}
|
|
|
|
</script>
|
|
|
|
{% end %} |