33 Commits

Author SHA1 Message Date
80147b69eb progress bar - scan
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-08-01 14:15:12 +00:00
11d8475c8a do not show letsencrypt file not exists
All checks were successful
continuous-integration/drone/push Build is passing
2025-07-31 12:20:07 +00:00
8f684513fd install design
All checks were successful
continuous-integration/drone/push Build is passing
2025-07-31 11:30:09 +00:00
2ff3c846e9 small changes
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-07-29 08:49:11 +00:00
fca5a173dc changes, fixes
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-07-24 17:42:30 +00:00
5d79ecf1b7 Upload files to "img"
All checks were successful
continuous-integration/drone/push Build is passing
2025-07-24 11:23:48 +00:00
e876bf08da Upload files to "img"
All checks were successful
continuous-integration/drone/push Build is passing
2025-07-24 11:23:08 +00:00
b19872fa5b js response
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-07-22 16:01:22 +00:00
6566a32f6a subtitle, vpn undefined fix
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-07-21 11:21:11 +00:00
b23212df9c vpn and other changes
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-07-18 19:13:00 +00:00
669ae42c97 rename
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/tag Build is passing
2025-07-07 22:17:18 +00:00
b194724283 changes 2025-07-07 22:16:18 +00:00
e782254749 load app new design
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-07-05 16:05:49 +00:00
211ddc21ef Update Dockerfile
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-07-03 12:11:03 +00:00
7ae74eb72d Update Dockerfile 2025-07-03 12:09:33 +00:00
38b8c4a342 Update Dockerfile
All checks were successful
continuous-integration/drone/push Build is passing
2025-07-03 11:31:24 +00:00
6b70259829 Update Dockerfile
Some checks reported errors
continuous-integration/drone/push Build is failing
continuous-integration/drone/tag Build encountered an error
2025-07-03 11:27:31 +00:00
586dc4698f new design
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/tag Build is passing
2025-07-02 18:12:07 +00:00
hael
ed4c3593a4 Upload files to "img"
All checks were successful
continuous-integration/drone/push Build is passing
2025-06-27 11:07:19 +00:00
hael
10d3de84d6 Upload files to "img"
Some checks reported errors
continuous-integration/drone/push Build encountered an error
2025-06-27 11:04:29 +00:00
hael
91dc523420 Upload files to "img"
All checks were successful
continuous-integration/drone/push Build is passing
2025-06-27 11:04:11 +00:00
hael
06e9ca7249 Upload files to "img"
All checks were successful
continuous-integration/drone/push Build is passing
2025-06-27 11:03:52 +00:00
hael
c42d89bea9 Upload files to "img"
Some checks reported errors
continuous-integration/drone/push Build encountered an error
2025-06-27 11:03:28 +00:00
4de1511546 layout changes
All checks were successful
continuous-integration/drone/push Build is passing
2025-05-30 15:56:43 +00:00
99b248577e edit deployment data fix
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-05-29 12:46:17 +00:00
8aed85fba5 edit deployment data
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-05-29 10:56:45 +00:00
dab4cba11d design changes and more
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-05-29 06:50:17 +00:00
f5b93f5d39 restore original design
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-05-23 12:12:09 +00:00
5dacc36836 new template fields
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-05-21 07:42:04 +00:00
453f84f0e3 new design changes
Some checks reported errors
continuous-integration/drone/push Build encountered an error
2025-05-19 06:11:42 +00:00
6af1e18298 upgrade changes
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-05-16 08:52:20 +00:00
2b0415fcb1 new design first version
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-05-13 07:10:42 +00:00
4fb0051f95 letsencrypt rename
All checks were successful
continuous-integration/drone/push Build is passing
2025-05-07 16:17:50 +00:00
40 changed files with 2995 additions and 470 deletions

View File

@@ -69,12 +69,12 @@ RUN apk --no-cache add php${PHP_VERSION} \
rm -rf /var/cache/apk/* rm -rf /var/cache/apk/*
COPY nginx.conf /etc/nginx/nginx.conf COPY nginx.conf /etc/nginx/nginx.conf
RUN mkdir -p /usr/share/nginx/html RUN mkdir -p /usr/share/nginx/html
COPY *.html /usr/share/nginx/html COPY *.html /usr/share/nginx/html
COPY *.php /usr/share/nginx/html COPY *.php /usr/share/nginx/html
COPY *.css /usr/share/nginx/html COPY *.css /usr/share/nginx/html
COPY *.js /usr/share/nginx/html COPY *.js /usr/share/nginx/html
COPY img /usr/share/nginx/html/img
RUN chown -R nginx:nginx /usr/share/nginx/html RUN chown -R nginx:nginx /usr/share/nginx/html
RUN mkdir -p /usr/share/nginx/html/shared RUN mkdir -p /usr/share/nginx/html/shared

142
common.js
View File

@@ -10,6 +10,7 @@ function check_deployments() {
apps.length = 0; // reset apps.length = 0; // reset
apps.push(...JSON.parse(data)); // push each element apps.push(...JSON.parse(data)); // push each element
console.log(apps); console.log(apps);
document.getElementById('installAppsBtn').click();
// manage // manage
html_data = ''; html_data = '';
@@ -18,13 +19,14 @@ function check_deployments() {
console.log(data[k]); console.log(data[k]);
service_name = data[k].name; service_name = data[k].name;
orig_service_name = data[k].orig_name; orig_service_name = data[k].orig_name;
content = data[k].content; version = data[k].version;
subtitle = data[k].subtitle;
installed = data[k].installed; installed = data[k].installed;
if (installed=='true') { if (installed=='true') {
html_data += '<div><a href="#" onclick="reinstall(\''+service_name+'\',\''+service_name+'\')">'+orig_service_name+'</a> - '+content+' - INSTALLED</div>'; html_data += '<div><a href="#" onclick="reinstall(\''+service_name+'\',\''+service_name+'\')">'+orig_service_name+'</a> - '+version+' - INSTALLED</div>';
} }
else { else {
html_data += '<div><a href="#" onclick="load_template(\''+service_name+'\',\''+service_name+'\')">'+orig_service_name+'</a> - '+content+'</div>'; html_data += '<div><a href="#" onclick="load_template(\''+service_name+'\',\''+service_name+'\')">'+orig_service_name+'</a> - '+version+'</div>';
} }
html_data += '<div id="'+service_name+'" class="deployment"></div>'; html_data += '<div id="'+service_name+'" class="deployment"></div>';
} }
@@ -88,7 +90,7 @@ function get_repositories() {
console.log('repositories: '+data); console.log('repositories: '+data);
if (data=="OK") { if (data=="OK") {
setTimeout(check_repositories, 500); setTimeout(check_repositories, 500);
get_deployments(); //get_deployments();
} }
else alert(data); else alert(data);
}); });
@@ -108,13 +110,29 @@ function check_vpn() {
var url = 'scan.php?op=check_vpn'; var url = 'scan.php?op=check_vpn';
jQuery.get(url, function(data) { jQuery.get(url, function(data) {
console.log('check_vpn: '+data); console.log('check_vpn: '+data);
if (data=="2") { if (data=="1") { // save_vpn has finished
const vpn_div = document.getElementById("vpn");
console.log(vpn_div);
if (vpn_div) {
vpn_div.innerHTML = 'VPN start process has finished';
//document.getElementById('installAppsBtn').click();
}
}
else if (data=="2") {
document.getElementById('vpnToggle').checked = true;
document.querySelector(".switch-label").textContent = "ON";
$('#vpn_off').hide(); $('#vpn_off').hide();
$('#vpn_on').show(); $('#vpn_on').show();
$('#pro_off').hide();
$('#pro_on').show();
} }
else { else {
document.getElementById('vpnToggle').checked = false;
document.querySelector(".switch-label").textContent = "OFF";
$('#vpn_on').hide(); $('#vpn_on').hide();
$('#vpn_off').show(); $('#vpn_off').show();
$('#pro_on').hide();
$('#pro_off').show();
} }
setTimeout(check_vpn, 10000); setTimeout(check_vpn, 10000);
}); });
@@ -126,6 +144,7 @@ function save_vpn() {
jQuery.get(url, function(data) { jQuery.get(url, function(data) {
console.log('save_vpn: '+data); console.log('save_vpn: '+data);
if (data=="OK") { if (data=="OK") {
check_vpn();
} }
//get_vpn(); //get_vpn();
}); });
@@ -155,27 +174,35 @@ function get_updates() {
}); });
} }
function check_upgrade() { function check_upgrade(service) {
var url = 'scan.php?op=check_upgrade'; var url = 'scan.php?op=check_upgrade&service='+service;
jQuery.get(url, function(data) { jQuery.get(url, function(data) {
console.log('check_upgrade: '+data); console.log('check_upgrade '+service+': '+data);
if (data=="WAIT" || data=="") { if (data!="") {
setTimeout(check_upgrade, 1000); jQuery("#status_"+service).html(data);
}
if (data!="OK") {
setTimeout(check_upgrade, 1000, service);
} }
else { else {
// TODO console.log('upgrade end: '+service);
jQuery("#status_"+service).html('Upgrade has finished');
//get_updates();
} }
}); });
} }
function upgrade(service) { function upgrade(service) {
var url = 'scan.php?op=upgrade&service='+service; var url = 'scan.php?op=upgrade&service='+service;
jQuery("#status_"+service).html('Upgrade has started');
console.log('upgrade start: '+service); console.log('upgrade start: '+service);
jQuery.get(url, function(data) { jQuery.get(url, function(data) {
console.log('upgrade end: '+service); console.log('check_upgrade '+service+': '+data);
if (data=="OK") { if (data=="OK") {
setTimeout(check_upgrade, 1000); setTimeout(check_upgrade, 1000, service);
} }
else jQuery("#status_"+service).html(data);
}); });
} }
@@ -226,11 +253,13 @@ function check_uninstall(additional) {
console.log('check_uninstall '+additional+': '+data); console.log('check_uninstall '+additional+': '+data);
if (data!="") { if (data!="") {
jQuery("#"+additional).html(data); jQuery("#"+additional).html(data);
jQuery("#popupText").html(data); // manage2
} }
if (data!="OK") { if (data!="OK") {
setTimeout(check_uninstall, 1000, additional); setTimeout(check_uninstall, 1000, additional);
} }
else { else {
jQuery("#popupText").html('Uninstall has finished'); // manage2
jQuery("#"+additional).html('Uninstall has finished'); jQuery("#"+additional).html('Uninstall has finished');
get_deployments(); get_deployments();
} }
@@ -244,22 +273,45 @@ function uninstall(additional) {
}); });
data = '<fieldset><form action="#" method="post"><div class="row">YOU ARE GOING TO UNINSTALL '+additional.toUpperCase()+'.<br>ARE YOU SURE? IF YES, PLEASE CLICK ON THE BUTTON BELOW.<br><br></div><div class="row"><div class="mb-3"><button class="btn btn-lg btn-primary btn-block" type="button" onclick="confirm_uninstall(\''+additional+'\')">Uninstall</button></div></div></form></fieldset>'; data = '<fieldset><form action="#" method="post"><div class="row">YOU ARE GOING TO UNINSTALL '+additional.toUpperCase()+'.<br>ARE YOU SURE? IF YES, PLEASE CLICK ON THE BUTTON BELOW.<br><br></div><div class="row"><div class="mb-3"><button class="btn btn-lg btn-primary btn-block" type="button" onclick="confirm_uninstall(\''+additional+'\')">Uninstall</button></div></div></form></fieldset>';
jQuery("#"+additional).html(data); jQuery("#"+additional).html(data);
jQuery("#popupText").html(data); // manage2
} }
function confirm_uninstall(additional) { function confirm_uninstall(additional) {
jQuery("#"+additional).html('Loading...'); jQuery("#"+additional).html('Loading...');
jQuery("#popupText").html('Loading'); // manage2
var url = 'scan.php?op=uninstall&additional='+additional; var url = 'scan.php?op=uninstall&additional='+additional;
jQuery.get(url, function(data) { jQuery.get(url, function(data) {
console.log('uninstall '+additional+': '+data); console.log('uninstall '+additional+': '+data);
if (data!="") { if (data!="") {
jQuery("#"+additional).html(data); jQuery("#"+additional).html(data);
jQuery("#popupText").html(data); // manage2
setTimeout(check_uninstall, 1000, additional); setTimeout(check_uninstall, 1000, additional);
} }
}); });
} }
function update_deployment(additional) {
//jQuery("#"+additional).html('Loading...');
pars = '';
jQuery('input.additional_'+additional).each(function(index) {
console.log('Field ' + $(this).attr('name') + ': ' + $(this).val());
//pars += '&'+$(this).attr('id') + '=' + $(this).val();
pars += '&'+$(this).attr('name') + '=' + $(this).val();
});
//console.log(pars);
var url = 'scan.php?op=edit&additional='+additional+pars;
jQuery.get(url, function(data) {
console.log('edit '+additional+': '+data);
if (data!="") {
jQuery("#"+additional).html(data);
jQuery("#popupText").html(data); // manage2
setTimeout(check_deployment, 1000, additional);
}
});
}
function request_letsencrypt(domain) { function request_letsencrypt(domain) {
var url = 'scan.php?op=letsencrypt&domain='+domain; var url = 'scan.php?op=request_letsencrypt&domain='+domain;
jQuery.get(url, function(data) { jQuery.get(url, function(data) {
console.log('letsencrypt '+domain); console.log('letsencrypt '+domain);
if (data!="") { if (data!="") {
@@ -284,7 +336,7 @@ function check_deployment(additional) {
var url = 'scan.php?op=check_deployment&additional='+additional; var url = 'scan.php?op=check_deployment&additional='+additional;
jQuery.get(url, function(data) { jQuery.get(url, function(data) {
console.log('check_deployment '+additional); console.log('check_deployment '+additional);
//console.log('check_deployment data: '+data); console.log('check_deployment data: '+data);
if (data!="") { if (data!="") {
jQuery("#"+additional).html(data); jQuery("#"+additional).html(data);
jQuery("#popupText").html(data); // manage2 jQuery("#popupText").html(data); // manage2
@@ -306,6 +358,7 @@ function deploy(additional) {
console.log('deploy '+additional+': '+data); console.log('deploy '+additional+': '+data);
if (data!="") { if (data!="") {
jQuery("#"+additional).html(data); jQuery("#"+additional).html(data);
jQuery("#popupText").html(data); // manage2
setTimeout(check_deployment, 1000, additional); setTimeout(check_deployment, 1000, additional);
} }
}); });
@@ -324,6 +377,7 @@ function redeploy(additional) {
console.log('redeploy '+additional+': '+data); console.log('redeploy '+additional+': '+data);
if (data!="") { if (data!="") {
jQuery("#"+additional).html(data); jQuery("#"+additional).html(data);
jQuery("#popupText").html(data); // manage2
setTimeout(check_deployment, 1000, additional); setTimeout(check_deployment, 1000, additional);
} }
}); });
@@ -350,6 +404,61 @@ function get_services() {
}); });
} }
function get_proxy_html() {
proxy_html = `
<fieldset>
<legend>Enable proxy</legend>
<div class="input-group">
<form class="form-install" action="#" method="post" id="save_vpn">
<div class="row">
<div class="mb-3">
<label for="vpn_domain">Please add domain url to download the VPN hash from (default: https://portal.safebox.network):</label>
<input type="text" class="form-control" name="VPN_DOMAIN" id="vpn_domain" value="https://portal.safebox.network">
<div class="invalid-feedback">
Please enter a valid domain.
</div>
</div>
</div>
<div class="row">
<div class="mb-3">
<label for="vpn_pass">Please type in the generated VPN passkey (8 digits):</label>
<input type="text" class="form-control" name="VPN_PASS" id="vpn_pass" value="" maxlength="8" size="10">
</div>
</div>
<div class="row">
<div class="mb-3">
<label for="letsencrypt_mail">Please add the letsencrypt mail address:</label>
<input type="email" class="form-control" name="LETSENCRYPT_MAIL" id="letsencrypt_mail" value="">
<div class="invalid-feedback">
Please enter a valid email.
</div>
</div>
</div>
<div class="row">
<div class="mb-3">
<label for="letsencrypt_servername">Please add letsencrypt server name (default is letsencrypt but you can add zerossl too):</label>
<input type="text" class="form-control" name="LETSENCRYPT_SERVERNAME" id="letsencrypt_servername" value="letsencrypt">
</div>
</div>
<div class="row buttons">
<div class="mb-3">
<button class="btn btn-lg btn-primary btn-block" type="button" id="vpn_save_btn"> Save </button>
</div>
</div>
</form>
</div>
</fieldset>
<script>
jQuery('#vpn_save_btn').click(function() {
console.log('vpn save');
save_vpn();
jQuery('#vpn').html('VPN start process in progress. Please wait...');
});
</script>
`;
jQuery("#vpn").html(proxy_html);
}
function check_containers() { function check_containers() {
var url = 'scan.php?op=check_containers'; var url = 'scan.php?op=check_containers';
jQuery.get(url, function(data) { jQuery.get(url, function(data) {
@@ -374,8 +483,8 @@ function get_containers() {
jQuery(document).ready(function(){ jQuery(document).ready(function(){
get_repositories(); get_repositories();
get_deployments();
get_system(); get_system();
get_services();
check_vpn(); check_vpn();
jQuery('#deployments_btn').click(function() { jQuery('#deployments_btn').click(function() {
@@ -384,6 +493,7 @@ jQuery(document).ready(function(){
}); });
jQuery('#services_btn').click(function() { jQuery('#services_btn').click(function() {
get_services();
jQuery('#deployments').hide(); jQuery('#deployments').hide();
jQuery('#services').toggle(); jQuery('#services').toggle();
}); });

View File

@@ -141,23 +141,24 @@ function show_service($name, $containers) {
} }
function show_service_update($name, $update, $uptodate, $error) { function show_service_update($name, $update, $uptodate, $error) {
$str = '<table id="update_'.$name.'">';
$str .= "<tr><th>{$name}</th></tr>";
$str = "";
$update = trim($update); $update = trim($update);
if (!empty($update)) { if (!empty($update)) {
$arr = explode(" ",$update); $arr = explode(" ",$update);
foreach ($arr as $container) { foreach ($arr as $container) {
$str .= "<tr><td>&nbsp;</td><td>".$container."</td><td>UPDATE AVAILABLE</td><td><a href=\"#\" onclick=\"upgrade('{$name}')\">UPDATE</a></td></tr>"; $str .= "<tr><td>&nbsp;</td><td>".$container."</td><td><div id=\"status_".$name."\">UPDATE AVAILABLE</div></td><td>&nbsp;</td></tr>";
} }
$update_str = "<a href=\"javascript:void(0)\" onclick=\"upgrade('{$name}')\">UPDATE</a>";
} }
$uptodate = trim($uptodate); $uptodate = trim($uptodate);
if (!empty($uptodate)) { if (!empty($uptodate)) {
$arr = explode(" ",$uptodate); $arr = explode(" ",$uptodate);
foreach ($arr as $container) { foreach ($arr as $container) {
$str .= "<tr><td>&nbsp;</td><td>".$container."</td><td>Already up to date</td><td><a href=\"#\" onclick=\"upgrade('{$name}')\">FORCE UPDATE</a></td></tr>"; $str .= "<tr><td>&nbsp;</td><td>".$container."</td><td><div id=\"status_".$name."\">Already up to date</div></td><td>&nbsp;</td></tr>";
} }
$update_str = "<a href=\"javacript:void(0)\" onclick=\"upgrade('{$name}')\">FORCE UPDATE</a>";
} }
$error = trim($error); $error = trim($error);
@@ -165,13 +166,15 @@ function show_service_update($name, $update, $uptodate, $error) {
$arr = explode(" ",$error); $arr = explode(" ",$error);
foreach ($arr as $container) { foreach ($arr as $container) {
//$str .= "<tr><td>&nbsp;</td><td>".$container."</td><td>N/A</td><td></td></tr>"; //$str .= "<tr><td>&nbsp;</td><td>".$container."</td><td>N/A</td><td></td></tr>";
$str .= "<tr><td>&nbsp;</td><td>".$container."</td><td>N/A</td><td><a href=\"#\" onclick=\"upgrade('{$name}')\">TRY UPDATE</a></td></tr>"; $str .= "<tr><td>&nbsp;</td><td>".$container."</td><td><div id=\"status_".$name."\">N/A</div></td><td>&nbsp;</td></tr>";
} }
$update_str = "<a href=\"javascript:void(0)\" onclick=\"upgrade('{$name}')\">TRY UPDATE</a>";
} }
$str .= '</table>'; echo '<table id="update_'.$name.'">';
echo "<tr><th>{$name}</th><th>&nbsp;</th><th>&nbsp;</th><th>{$update_str}</th></tr>";
echo $str; echo $str;
echo '</table>';
} }
// not in use // not in use

BIN
img/app.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 760 B

BIN
img/app2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 608 B

6
img/apps1.svg Normal file
View File

@@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.9998 13.2999C11.8698 13.2999 11.7398 13.2699 11.6198 13.1999L2.78985 8.0899C2.42985 7.8799 2.30983 7.41987 2.51983 7.05987C2.72983 6.69987 3.17983 6.57985 3.54983 6.78985L11.9998 11.6799L20.3998 6.81988C20.7598 6.60988 21.2198 6.7399 21.4298 7.0899C21.6398 7.4499 21.5098 7.90987 21.1598 8.11987L12.3899 13.1999C12.2599 13.2599 12.1298 13.2999 11.9998 13.2999Z" fill="#7C7D81"/>
<path d="M12 22.36C11.59 22.36 11.25 22.02 11.25 21.61V12.54C11.25 12.13 11.59 11.79 12 11.79C12.41 11.79 12.75 12.13 12.75 12.54V21.61C12.75 22.02 12.41 22.36 12 22.36Z" fill="#7C7D81"/>
<path d="M12.0001 22.75C11.1201 22.75 10.2501 22.56 9.56012 22.18L4.22012 19.21C2.77012 18.41 1.64014 16.48 1.64014 14.82V9.16998C1.64014 7.50998 2.77012 5.59002 4.22012 4.78002L9.56012 1.82C10.9301 1.06 13.0701 1.06 14.4401 1.82L19.7801 4.78997C21.2301 5.58997 22.3601 7.51999 22.3601 9.17999V14.83C22.3601 16.49 21.2301 18.41 19.7801 19.22L14.4401 22.18C13.7501 22.56 12.8801 22.75 12.0001 22.75ZM12.0001 2.74999C11.3701 2.74999 10.7501 2.88 10.2901 3.13L4.95013 6.09997C3.99013 6.63997 3.14014 8.06999 3.14014 9.17999V14.83C3.14014 15.93 3.99013 17.37 4.95013 17.91L10.2901 20.88C11.2001 21.39 12.8001 21.39 13.7101 20.88L19.0501 17.91C20.0101 17.37 20.8601 15.94 20.8601 14.83V9.17999C20.8601 8.07999 20.0101 6.63997 19.0501 6.09997L13.7101 3.13C13.2501 2.88 12.6301 2.74999 12.0001 2.74999Z" fill="#7C7D81"/>
<path d="M17.0002 13.9905C16.5902 13.9905 16.2502 13.6505 16.2502 13.2405V10.0206L7.13018 4.76055C6.77018 4.55055 6.65016 4.09054 6.86016 3.74054C7.07016 3.38054 7.52018 3.26052 7.88018 3.47052L17.3702 8.95056C17.6002 9.08056 17.7502 9.33052 17.7502 9.60052V13.2606C17.7502 13.6506 17.4102 13.9905 17.0002 13.9905Z" fill="#7C7D81"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

6
img/apps2.svg Normal file
View File

@@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.9998 13.2999C11.8698 13.2999 11.7398 13.2699 11.6198 13.1999L2.78985 8.0899C2.42985 7.8799 2.30983 7.41987 2.51983 7.05987C2.72983 6.69987 3.17983 6.57985 3.54983 6.78985L11.9998 11.6799L20.3998 6.81988C20.7598 6.60988 21.2198 6.7399 21.4298 7.0899C21.6398 7.4499 21.5098 7.90987 21.1598 8.11987L12.3899 13.1999C12.2599 13.2599 12.1298 13.2999 11.9998 13.2999Z" fill="#101010"/>
<path d="M12 22.36C11.59 22.36 11.25 22.02 11.25 21.61V12.54C11.25 12.13 11.59 11.79 12 11.79C12.41 11.79 12.75 12.13 12.75 12.54V21.61C12.75 22.02 12.41 22.36 12 22.36Z" fill="#101010"/>
<path d="M12.0001 22.75C11.1201 22.75 10.2501 22.56 9.56012 22.18L4.22012 19.21C2.77012 18.41 1.64014 16.48 1.64014 14.82V9.16998C1.64014 7.50998 2.77012 5.59002 4.22012 4.78002L9.56012 1.82C10.9301 1.06 13.0701 1.06 14.4401 1.82L19.7801 4.78997C21.2301 5.58997 22.3601 7.51999 22.3601 9.17999V14.83C22.3601 16.49 21.2301 18.41 19.7801 19.22L14.4401 22.18C13.7501 22.56 12.8801 22.75 12.0001 22.75ZM12.0001 2.74999C11.3701 2.74999 10.7501 2.88 10.2901 3.13L4.95013 6.09997C3.99013 6.63997 3.14014 8.06999 3.14014 9.17999V14.83C3.14014 15.93 3.99013 17.37 4.95013 17.91L10.2901 20.88C11.2001 21.39 12.8001 21.39 13.7101 20.88L19.0501 17.91C20.0101 17.37 20.8601 15.94 20.8601 14.83V9.17999C20.8601 8.07999 20.0101 6.63997 19.0501 6.09997L13.7101 3.13C13.2501 2.88 12.6301 2.74999 12.0001 2.74999Z" fill="#101010"/>
<path d="M17.0002 13.9905C16.5902 13.9905 16.2502 13.6505 16.2502 13.2405V10.0206L7.13018 4.76055C6.77018 4.55055 6.65016 4.09054 6.86016 3.74054C7.07016 3.38054 7.52018 3.26052 7.88018 3.47052L17.3702 8.95056C17.6002 9.08056 17.7502 9.33052 17.7502 9.60052V13.2606C17.7502 13.6506 17.4102 13.9905 17.0002 13.9905Z" fill="#101010"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

4
img/backup1.svg Normal file
View File

@@ -0,0 +1,4 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.32 12.7504H15C12.51 12.7504 11.25 11.3404 11.25 8.55045V5.68045C11.25 4.66045 11.37 3.20045 12.43 2.40045C13.32 1.74045 14.6 1.69045 16.49 2.24045C18.97 2.96045 21.04 5.03045 21.76 7.51045C22.31 9.39045 22.26 10.6804 21.6 11.5604C20.8 12.6304 19.34 12.7504 18.32 12.7504ZM14.28 3.36045C13.87 3.36045 13.55 3.44045 13.34 3.60045C12.95 3.89045 12.76 4.57045 12.76 5.68045V8.56045C12.76 10.8004 13.62 11.2604 15.01 11.2604H18.33C19.43 11.2604 20.11 11.0704 20.41 10.6804C20.76 10.2204 20.73 9.30045 20.34 7.95045C19.76 5.98045 18.06 4.27045 16.09 3.70045C15.35 3.47045 14.75 3.36045 14.28 3.36045Z" fill="#7C7D81"/>
<path d="M11.0699 22.7503C10.5399 22.7503 9.99988 22.7103 9.45988 22.6203C5.36988 21.9603 2.03988 18.6403 1.37988 14.5503C0.529883 9.29032 3.91988 4.33032 9.10988 3.27032C9.51988 3.19032 9.90988 3.45032 9.99988 3.85032C10.0799 4.26032 9.81988 4.65032 9.41988 4.74032C5.02988 5.64032 2.14988 9.84032 2.87988 14.3103C3.43988 17.7703 6.24988 20.5803 9.70988 21.1403C14.1999 21.8603 18.3899 18.9703 19.2799 14.5603C19.3599 14.1503 19.7599 13.8903 20.1599 13.9703C20.5699 14.0503 20.8299 14.4503 20.7499 14.8503C19.7999 19.5203 15.7199 22.7503 11.0699 22.7503Z" fill="#7C7D81"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

4
img/backup2.svg Normal file
View File

@@ -0,0 +1,4 @@
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.05105 10.4495C1.05105 15.5708 5.03278 19.5654 10.0865 19.6166C15.1913 19.6166 19.2241 15.6732 19.2241 10.5519C19.2241 5.43059 15.2423 1.38477 10.1886 1.38477C5.13487 1.38477 1.05105 5.32816 1 10.5007L1.05105 10.4495Z" stroke="#101010" stroke-width="1.5" stroke-miterlimit="10"/>
<path d="M12.0262 6.45442C11.5158 7.1714 11.4647 7.99081 12.0262 8.50293C12.5367 9.06628 13.3535 9.06628 14.1702 8.50293C14.936 9.78326 14.8849 12.3951 12.9451 13.9315C11.2095 15.3143 8.55498 15.1606 6.97249 13.6242C5.39001 12.0366 5.23687 9.42477 6.61516 7.63231C8.14659 5.68622 10.75 5.68622 12.0262 6.4032V6.45442Z" fill="#101010"/>
</svg>

After

Width:  |  Height:  |  Size: 730 B

BIN
img/bell.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 652 B

View File

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
img/disk.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 709 B

4
img/disk1.svg Normal file
View File

@@ -0,0 +1,4 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.32 12.7504H15C12.51 12.7504 11.25 11.3404 11.25 8.55045V5.68045C11.25 4.66045 11.37 3.20045 12.43 2.40045C13.32 1.74045 14.6 1.69045 16.49 2.24045C18.97 2.96045 21.04 5.03045 21.76 7.51045C22.31 9.39045 22.26 10.6804 21.6 11.5604C20.8 12.6304 19.34 12.7504 18.32 12.7504ZM14.28 3.36045C13.87 3.36045 13.55 3.44045 13.34 3.60045C12.95 3.89045 12.76 4.57045 12.76 5.68045V8.56045C12.76 10.8004 13.62 11.2604 15.01 11.2604H18.33C19.43 11.2604 20.11 11.0704 20.41 10.6804C20.76 10.2204 20.73 9.30045 20.34 7.95045C19.76 5.98045 18.06 4.27045 16.09 3.70045C15.35 3.47045 14.75 3.36045 14.28 3.36045Z" fill="#7C7D81"/>
<path d="M11.0699 22.7503C10.5399 22.7503 9.99988 22.7103 9.45988 22.6203C5.36988 21.9603 2.03988 18.6403 1.37988 14.5503C0.529883 9.29032 3.91988 4.33032 9.10988 3.27032C9.51988 3.19032 9.90988 3.45032 9.99988 3.85032C10.0799 4.26032 9.81988 4.65032 9.41988 4.74032C5.02988 5.64032 2.14988 9.84032 2.87988 14.3103C3.43988 17.7703 6.24988 20.5803 9.70988 21.1403C14.1999 21.8603 18.3899 18.9703 19.2799 14.5603C19.3599 14.1503 19.7599 13.8903 20.1599 13.9703C20.5699 14.0503 20.8299 14.4503 20.7499 14.8503C19.7999 19.5203 15.7199 22.7503 11.0699 22.7503Z" fill="#7C7D81"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
img/disk2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 517 B

4
img/disk2.svg Normal file
View File

@@ -0,0 +1,4 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.32 12.7504H15C12.51 12.7504 11.25 11.3404 11.25 8.55045V5.68045C11.25 4.66045 11.37 3.20045 12.43 2.40045C13.32 1.74045 14.6 1.69045 16.49 2.24045C18.97 2.96045 21.04 5.03045 21.76 7.51045C22.31 9.39045 22.26 10.6804 21.6 11.5604C20.8 12.6304 19.34 12.7504 18.32 12.7504ZM14.28 3.36045C13.87 3.36045 13.55 3.44045 13.34 3.60045C12.95 3.89045 12.76 4.57045 12.76 5.68045V8.56045C12.76 10.8004 13.62 11.2604 15.01 11.2604H18.33C19.43 11.2604 20.11 11.0704 20.41 10.6804C20.76 10.2204 20.73 9.30045 20.34 7.95045C19.76 5.98045 18.06 4.27045 16.09 3.70045C15.35 3.47045 14.75 3.36045 14.28 3.36045Z" fill="#101010"/>
<path d="M11.0699 22.7503C10.5399 22.7503 9.99988 22.7103 9.45988 22.6203C5.36988 21.9603 2.03988 18.6403 1.37988 14.5503C0.529883 9.29032 3.91988 4.33032 9.10988 3.27032C9.51988 3.19032 9.90988 3.45032 9.99988 3.85032C10.0799 4.26032 9.81988 4.65032 9.41988 4.74032C5.02988 5.64032 2.14988 9.84032 2.87988 14.3103C3.43988 17.7703 6.24988 20.5803 9.70988 21.1403C14.1999 21.8603 18.3899 18.9703 19.2799 14.5603C19.3599 14.1503 19.7599 13.8903 20.1599 13.9703C20.5699 14.0503 20.8299 14.4503 20.7499 14.8503C19.7999 19.5203 15.7199 22.7503 11.0699 22.7503Z" fill="#101010"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
img/globe.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 747 B

BIN
img/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
img/monitor.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 708 B

4
img/monitor1.svg Normal file
View File

@@ -0,0 +1,4 @@
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.05105 10.4495C1.05105 15.5708 5.03278 19.5654 10.0865 19.6166C15.1913 19.6166 19.2241 15.6732 19.2241 10.5519C19.2241 5.43059 15.2423 1.38477 10.1886 1.38477C5.13487 1.38477 1.05105 5.32816 1 10.5007L1.05105 10.4495Z" stroke="#7C7D81" stroke-width="1.5" stroke-miterlimit="10"/>
<path d="M12.0262 6.45442C11.5158 7.1714 11.4647 7.99081 12.0262 8.50293C12.5367 9.06628 13.3535 9.06628 14.1702 8.50293C14.936 9.78326 14.8849 12.3951 12.9451 13.9315C11.2095 15.3143 8.55498 15.1606 6.97249 13.6242C5.39001 12.0366 5.23687 9.42477 6.61516 7.63231C8.14659 5.68622 10.75 5.68622 12.0262 6.4032V6.45442Z" fill="#7C7D81"/>
</svg>

After

Width:  |  Height:  |  Size: 730 B

BIN
img/monitor2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 B

4
img/monitor2.svg Normal file
View File

@@ -0,0 +1,4 @@
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.05105 10.4495C1.05105 15.5708 5.03278 19.5654 10.0865 19.6166C15.1913 19.6166 19.2241 15.6732 19.2241 10.5519C19.2241 5.43059 15.2423 1.38477 10.1886 1.38477C5.13487 1.38477 1.05105 5.32816 1 10.5007L1.05105 10.4495Z" stroke="#101010" stroke-width="1.5" stroke-miterlimit="10"/>
<path d="M12.0262 6.45442C11.5158 7.1714 11.4647 7.99081 12.0262 8.50293C12.5367 9.06628 13.3535 9.06628 14.1702 8.50293C14.936 9.78326 14.8849 12.3951 12.9451 13.9315C11.2095 15.3143 8.55498 15.1606 6.97249 13.6242C5.39001 12.0366 5.23687 9.42477 6.61516 7.63231C8.14659 5.68622 10.75 5.68622 12.0262 6.4032V6.45442Z" fill="#101010"/>
</svg>

After

Width:  |  Height:  |  Size: 730 B

BIN
img/off.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 684 B

BIN
img/on.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 701 B

BIN
img/settings.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 660 B

4
img/settings1.svg Normal file
View File

@@ -0,0 +1,4 @@
<svg width="19" height="21" viewBox="0 0 19 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.0632 10.6142C18.0632 11.7655 18.0632 12.8209 18.0632 13.9722C18.0632 15.4113 17.5238 16.4667 16.3551 17.1383C14.5571 18.2896 12.6693 19.4409 10.8713 20.4963C9.70261 21.1679 8.53391 21.1679 7.36523 20.4963C5.56726 19.345 3.76928 18.2896 1.97131 17.1383C0.80263 16.3708 0.17334 15.3154 0.17334 13.8763C0.17334 11.6696 0.17334 9.46292 0.17334 7.16031C0.17334 5.72118 0.80263 4.66579 1.97131 3.89825C3.76928 2.74694 5.56726 1.69158 7.36523 0.540273C8.53391 -0.131322 9.70261 -0.227264 10.8713 0.540273C12.6693 1.69158 14.5571 2.74694 16.3551 3.89825C17.5238 4.56985 18.0632 5.72118 18.0632 7.16031C18.0632 8.31162 18.0632 9.36698 18.0632 10.5183V10.6142ZM16.7147 10.6142C16.7147 9.4629 16.7147 8.31159 16.7147 7.25623C16.7147 6.39275 16.3551 5.72115 15.7258 5.33738C13.9279 4.18608 12.0399 3.03479 10.1521 1.88349C9.43288 1.49972 8.80365 1.49972 8.08446 1.88349C6.28649 3.03479 4.48843 4.09016 2.60056 5.24147C1.88137 5.72118 1.52182 6.39275 1.52182 7.25623C1.52182 9.4629 1.52182 11.7655 1.52182 13.9722C1.52182 14.8357 1.88137 15.5072 2.60056 15.9869C4.39853 17.1383 6.19659 18.1936 8.08446 19.3449C8.80365 19.8246 9.52275 19.7287 10.2419 19.3449C12.0399 18.1936 13.838 17.1383 15.7258 15.9869C16.445 15.5072 16.8046 14.9316 16.8046 14.0681C16.8046 12.9168 16.8046 11.8614 16.8046 10.7101L16.7147 10.6142Z" fill="#7C7D81"/>
<path d="M9.16305 14.7404C7.00548 14.7404 5.29736 12.9174 5.29736 10.6148C5.29736 8.31221 7.00548 6.48926 9.16305 6.48926C11.3206 6.48926 13.0287 8.31221 13.0287 10.6148C13.0287 12.9174 11.3206 14.7404 9.16305 14.7404ZM11.6803 10.6148C11.6803 9.17569 10.6014 7.92839 9.16305 7.92839C7.81457 7.92839 6.64584 9.07974 6.64584 10.6148C6.64584 12.054 7.72467 13.3012 9.16305 13.3012C10.5115 13.3012 11.6803 12.1499 11.6803 10.6148Z" fill="#7C7D81"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

BIN
img/settings2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 487 B

4
img/settings2.svg Normal file
View File

@@ -0,0 +1,4 @@
<svg width="19" height="21" viewBox="0 0 19 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.0632 10.6142C18.0632 11.7655 18.0632 12.8209 18.0632 13.9722C18.0632 15.4113 17.5238 16.4667 16.3551 17.1383C14.5571 18.2896 12.6693 19.4409 10.8713 20.4963C9.70261 21.1679 8.53391 21.1679 7.36523 20.4963C5.56726 19.345 3.76928 18.2896 1.97131 17.1383C0.80263 16.3708 0.17334 15.3154 0.17334 13.8763C0.17334 11.6696 0.17334 9.46292 0.17334 7.16031C0.17334 5.72118 0.80263 4.66579 1.97131 3.89825C3.76928 2.74694 5.56726 1.69158 7.36523 0.540273C8.53391 -0.131322 9.70261 -0.227264 10.8713 0.540273C12.6693 1.69158 14.5571 2.74694 16.3551 3.89825C17.5238 4.56985 18.0632 5.72118 18.0632 7.16031C18.0632 8.31162 18.0632 9.36698 18.0632 10.5183V10.6142ZM16.7147 10.6142C16.7147 9.4629 16.7147 8.31159 16.7147 7.25623C16.7147 6.39275 16.3551 5.72115 15.7258 5.33738C13.9279 4.18608 12.0399 3.03479 10.1521 1.88349C9.43288 1.49972 8.80365 1.49972 8.08446 1.88349C6.28649 3.03479 4.48843 4.09016 2.60056 5.24147C1.88137 5.72118 1.52182 6.39275 1.52182 7.25623C1.52182 9.4629 1.52182 11.7655 1.52182 13.9722C1.52182 14.8357 1.88137 15.5072 2.60056 15.9869C4.39853 17.1383 6.19659 18.1936 8.08446 19.3449C8.80365 19.8246 9.52275 19.7287 10.2419 19.3449C12.0399 18.1936 13.838 17.1383 15.7258 15.9869C16.445 15.5072 16.8046 14.9316 16.8046 14.0681C16.8046 12.9168 16.8046 11.8614 16.8046 10.7101L16.7147 10.6142Z" fill="#101010"/>
<path d="M9.16305 14.7404C7.00548 14.7404 5.29736 12.9174 5.29736 10.6148C5.29736 8.31221 7.00548 6.48926 9.16305 6.48926C11.3206 6.48926 13.0287 8.31221 13.0287 10.6148C13.0287 12.9174 11.3206 14.7404 9.16305 14.7404ZM11.6803 10.6148C11.6803 9.17569 10.6014 7.92839 9.16305 7.92839C7.81457 7.92839 6.64584 9.07974 6.64584 10.6148C6.64584 12.054 7.72467 13.3012 9.16305 13.3012C10.5115 13.3012 11.6803 12.1499 11.6803 10.6148Z" fill="#101010"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

BIN
img/upgrade.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
img/x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 B

BIN
img/x2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 291 B

BIN
img/yellow_corner.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -1,175 +1,167 @@
<!doctype html> <!DOCTYPE html>
<html lang="en"> <html lang="hu">
<head> <head>
<!-- Required meta tags --> <meta charset="UTF-8" />
<meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>Safebox - INSTALLER TOOL</title>
<title>INSTALLER TOOL</title> <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Switzer:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap"/>
<!-- Bootstrap CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.2.1/dist/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous"> <link rel="stylesheet" href="style.css?t=1" />
<!-- Custom styles for this template -->
<link href="installer.css?t=3" rel="stylesheet">
</head> </head>
<body id="installer" class="text-center"> <body id="installer">
<div class="container-fluid"> <div class="main" >
<div class="col-md-12"> <div id="myAppsContainer">
<div class="logo">
<img src="/img/logo.png" alt="Safebox"/>
<span>Safebox</span>
</div>
<h3 style="text-align:center">No any previous deployed environment has found</h3>
<div class="main-header">
<h1>Base settings</h1>
</div>
<form class="form-install" action="install.php" method="post"> <form class="form-install" action="install.php" method="post">
<!-- base settings -->
<h1>No any previous deployed environment found</h1> <div class="input-row">
<label for="user_auth">User auth (homeguard) enable?</label>
<fieldset> <div class="input-container">
<legend>Base settings</legend>
<div class="row">
<div class="mb-3">
<label for="user_auth">User auth (homeguard) enable?</label>
<select class="custom-select d-block w-100" name="USER_AUTH" id="user_auth"> <select class="custom-select d-block w-100" name="USER_AUTH" id="user_auth">
<option value="yes">Yes</option> <option value="yes">Yes</option>
<option value="no" selected>No</option> <option value="no" selected>No</option>
</select> </select>
</div> </div>
</div> </div>
<div id="div_user_auth" class="hidden"> <div id="div_user_auth" class="hidden">
<div class="row"> <div class="input-row">
<div class="mb-3">
<label for="auth_username">Username:</label> <label for="auth_username">Username:</label>
<div class="input-container">
<input type="text" class="form-control" name="AUTH_USERNAME" id="auth_username" value="" maxlength="20" size="20"> <input type="text" class="form-control" name="AUTH_USERNAME" id="auth_username" value="" maxlength="20" size="20">
</div> </div>
</div> </div>
<div class="row"> <div class="input-row">
<div class="mb-3">
<label for="auth_password">Password:</label> <label for="auth_password">Password:</label>
<div class="input-container">
<input type="text" class="form-control" name="AUTH_PASSWORD" id="auth_password" value="" maxlength="20" size="20"> <input type="text" class="form-control" name="AUTH_PASSWORD" id="auth_password" value="" maxlength="20" size="20">
</div> </div>
</div> </div>
<div class="row"> <div class="input-row">
<div class="mb-3">
<label for="auth_role">Role:</label> <label for="auth_role">Role:</label>
<div class="input-container">
<select class="custom-select d-block w-100" name="AUTH_ROLE" id="auth_role"> <select class="custom-select d-block w-100" name="AUTH_ROLE" id="auth_role">
<option value="admin">Admin</option> <option value="admin">Admin</option>
</select> </select>
</div> </div>
</div> </div>
</div> </div>
<div class="row"> <div class="input-row">
<div class="mb-3"> <label for="vpn">Proxy enable?</label>
<label for="vpn">Proxy enable?</label> <div class="input-container">
<select class="custom-select d-block w-100" name="VPN_PROXY" id="vpn"> <select class="custom-select d-block w-100" name="VPN_PROXY" id="vpn">
<option value="yes">Yes</option> <option value="yes">Yes</option>
<option value="no" selected>No</option> <option value="no" selected>No</option>
</select> </select>
</div> </div>
</div> </div>
<div id="div_vpn" class="hidden"> <div id="div_vpn" class="hidden">
<div class="row"> <div class="input-row">
<div class="mb-3"> <label for="vpn_domain">Please add domain url to download the VPN hash from:</label>
<label for="vpn_domain">Please add domain url to download the VPN hash from (default: https://portal.safebox.network):</label> <div class="input-container">
<input type="text" class="form-control" name="VPN_DOMAIN" id="vpn_domain" value="https://portal.safebox.network"> <input type="text" class="form-control" name="VPN_DOMAIN" id="vpn_domain" value="https://portal.safebox.network" placeholder="https://portal.safebox.network" size="40">
<div class="invalid-feedback"> </div>
Please enter a valid domain.
</div>
</div>
</div> </div>
<div class="row"> <div class="input-row">
<div class="mb-3"> <label for="vpn_pass">Please type in the generated VPN passkey (8 digits):</label>
<label for="vpn_pass">Please type in the generated VPN passkey (8 digits):</label> <div class="input-container">
<input type="text" class="form-control" name="VPN_PASS" id="vpn_pass" value="" maxlength="8" size="10"> <input type="text" class="form-control" name="VPN_PASS" id="vpn_pass" value="" maxlength="8" size="10">
</div> </div>
</div> </div>
<div class="row"> <div class="input-row">
<div class="mb-3"> <label for="letsencrypt_mail">Please add the letsencrypt mail address:</label>
<label for="letsencrypt_mail">Please add the letsencrypt mail address:</label> <div class="input-container">
<input type="email" class="form-control" name="LETSENCRYPT_MAIL" id="letsencrypt_mail" value=""> <input type="email" class="form-control" name="LETSENCRYPT_MAIL" id="letsencrypt_mail" value="">
<div class="invalid-feedback"> </div>
Please enter a valid email.
</div>
</div>
</div> </div>
<div class="row"> <div class="input-row">
<div class="mb-3"> <label for="letsencrypt_servername">Please add letsencrypt server name (default is letsencrypt but you can add zerossl too):</label>
<label for="letsencrypt_servername">Please add letsencrypt server name (default is letsencrypt but you can add zerossl too):</label> <div class="input-container">
<input type="text" class="form-control" name="LETSENCRYPT_SERVERNAME" id="letsencrypt_servername" value="letsencrypt"> <input type="text" class="form-control" name="LETSENCRYPT_SERVERNAME" id="letsencrypt_servername" value="letsencrypt" placeholder="letsencrypt">
</div> </div>
</div> </div>
</div> </div>
<div class="row"> <div class="input-row">
<div class="mb-3"> <label for="diagnostic">Diagnostic mode enable?</label>
<label for="diagnostic">Diagnostic mode enable?</label> <div class="input-container">
<select class="custom-select d-block w-100" name="DIAGNOSTIC" id="diagnostic"> <select class="custom-select d-block w-100" name="DIAGNOSTIC" id="diagnostic">
<option value="yes">Yes</option> <option value="yes">Yes</option>
<option value="no" selected>No</option> <option value="no" selected>No</option>
</select> </select>
</div> </div>
</div> </div>
</fieldset> <!-- base settings end -->
<br>
<fieldset> <br>
<legend><a href="javascript:void()" id="advanced">Advanced settings</a></legend> <div class="main-header">
<h1 id="advanced" style="cursor:pointer">Advanced settings</h1>
</div>
<!-- advanced settings -->
<div id="advanced_div" style="display:none"> <div id="advanced_div" style="display:none">
<div class="row"> <div class="input-row">
<div class="mb-3">
<label for="registry">Please fill in the docker registry name (default:safebox):</label> <label for="registry">Please fill in the docker registry name (default:safebox):</label>
<input type="registry" class="form-control" name="DOCKER_REGISTRY_URL" id="registry" value="safebox" required> <div class="input-container">
<div class="invalid-feedback"> <input type="registry" class="form-control" name="DOCKER_REGISTRY_URL" id="registry" value="safebox" placeholder="safebox" required>
Please enter a valid registry url.
</div> </div>
</div> </div>
</div> <div class="input-row">
<div class="row">
<div class="mb-3">
<label for="smarthost">Smarthost proxy?</label> <label for="smarthost">Smarthost proxy?</label>
<select class="custom-select d-block w-100" name="SMARTHOST_PROXY" id="smarthost"> <div class="input-container">
<option value="yes" selected>Yes</option> <select class="custom-select d-block w-100" name="SMARTHOST_PROXY" id="smarthost">
<option value="no">No</option> <option value="yes" selected>Yes</option>
</select> <option value="no">No</option>
</div> </select>
</div>
<div id="div_smarthost">
<div class="row">
<div class="mb-3">
<label for="domain">Please fill in the domain name</label>
<input type="domain" class="form-control" name="DOMAIN" id="domain" value="localhost">
<div class="invalid-feedback">
Please enter a valid domain.
</div> </div>
</div>
</div> </div>
<div class="row"> <div id="div_smarthost">
<div class="mb-3"> <div class="input-row">
<label for="local_backend">Would you like to run local backend?</label> <label for="domain">Please fill in the domain name</label>
<select class="custom-select d-block w-100" name="LOCAL_BACKEND" id="local_backend"> <div class="input-container">
<option value="yes">Yes</option> <input type="domain" class="form-control" name="DOMAIN" id="domain" value="localhost">
<option value="no" selected>No</option> </div>
</select> </div>
</div> <div class="input-row">
<label for="local_backend">Would you like to run local backend?</label>
<div class="input-container">
<select class="custom-select d-block w-100" name="LOCAL_BACKEND" id="local_backend">
<option value="yes">Yes</option>
<option value="no" selected>No</option>
</select>
</div>
</div>
</div> </div>
</div> <div class="input-row">
<div class="row">
<div class="mb-3">
<label for="localproxy">Local proxy?</label> <label for="localproxy">Local proxy?</label>
<select class="custom-select d-block w-100" name="LOCAL_PROXY" id="localproxy"> <div class="input-container">
<option value="yes" selected>Yes</option> <select class="custom-select d-block w-100" name="LOCAL_PROXY" id="localproxy">
<option value="no">No</option> <option value="yes" selected>Yes</option>
</select> <option value="no">No</option>
</div> </select>
</div> </div>
<div class="row"> </div>
<div class="mb-3"> <div class="input-row">
<label for="cron">Cron?</label> <label for="cron">Cron?</label>
<select class="custom-select d-block w-100" name="CRON" id="cron"> <div class="input-container">
<option value="yes">Yes</option> <select class="custom-select d-block w-100" name="CRON" id="cron">
<option value="no">No</option> <option value="yes">Yes</option>
</select> <option value="no">No</option>
</div> </select>
</div>
</div>
</div> </div>
</div> <!-- advanced settings end -->
</fieldset> <button class="save-button" type="submit">Start install</button>
<br>
<button class="btn btn-lg btn-primary btn-block" type="submit">Start install</button>
</form> </form>
</div> </div>
</div> </div>
<br>
<br>
<!-- Optional JavaScript --> <!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS --> <!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script> <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>

View File

@@ -1,5 +1,5 @@
.hidden {display:none} .hidden {display:none}
fieldset {border: 1px solid #049dff; padding-left: 40px; padding-right: 20px} fieldset {border: 1px solid #049dff; padding-left: 40px; padding-right: 20px; border-radius: 10px; width: 100%}
legend {width: auto;text-align: left !important; padding: 10px; color: #049dff;} legend {width: auto;text-align: left !important; padding: 10px; color: #049dff;}
fieldset.sub_block {border: 1px solid black; margin:-20px 0px 20px -15px} fieldset.sub_block {border: 1px solid black; margin:-20px 0px 20px -15px}
fieldset.sub_block legend {color: black} fieldset.sub_block legend {color: black}
@@ -132,3 +132,55 @@ body#scan{
transform: rotate(135deg); transform: rotate(135deg);
} }
} }
.info-container {
position: relative;
display: inline-block;
font-family: Arial, sans-serif;
}
.info-icon {
background-color: #007BFF;
color: white;
border-radius: 50%;
padding: 4px 8px;
cursor: pointer;
font-weight: bold;
font-size: 14px;
text-align: center;
line-height: 1;
display: inline-block;
}
.tooltip {
visibility: hidden;
background-color: #333;
color: #fff;
text-align: left;
border-radius: 4px;
padding: 8px;
position: absolute;
z-index: 1;
bottom: 125%; /* above the icon */
left: 50%;
transform: translateX(-50%);
opacity: 0;
transition: opacity 0.3s;
white-space: nowrap;
}
.tooltip::after {
content: "";
position: absolute;
top: 100%; /* bottom of tooltip */
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #333 transparent transparent transparent;
}
.info-container:hover .tooltip {
visibility: visible;
opacity: 1;
}

View File

@@ -1,155 +1,369 @@
<!doctype html> <!DOCTYPE html>
<html lang="en"> <html lang="hu">
<head> <head>
<!-- Required meta tags --> <meta charset="UTF-8" />
<meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>Safebox</title>
<title>INSTALLER TOOL</title> <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Switzer:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap"/>
<!-- Bootstrap CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.2.1/dist/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous"> <link rel="stylesheet" href="style.css?t=1" />
<!-- Custom styles for this template -->
<link href="installer.css?t=5" rel="stylesheet">
</head> </head>
<body id="manage" class="text-center"> <body>
<div class="container-fluid"> <div class="sidebar">
<div class="col-md-12"> <div>
<div class="logo">
<img src="/img/logo.png" alt="Safebox"/>
<span>Safebox</span>
</div>
<div class="menu">
<div class="menu-item" style="margin-bottom:20px">
<img src="/img/globe.png" data-src="/img/globe.png" data-hover="/img/globe.png" alt="VPN" />
<div class="menu-label">
<span id="vpnBtn">VPN</span>
<label class="switch">
<input type="checkbox" id="vpnToggle">
<span class="slider-text"><span class="switch-label">OFF</span></span>
</label>
</div>
</div>
<h1>Found deployed environment</h1> <!--
<div class="menu-item"><i class="fas fa-th"></i><span>Applications</span></div>
<div style="text-align:left;float:left;width:33%"> <div class="menu-item"><i class="fas fa-hdd"></i><span>Disk Management</span></div>
<a href="javascript:void()" id="vpn_btn">VPN</a> <div class="menu-item"><i class="fas fa-chart-line"></i><span>Monitor</span></div>
Status: <div class="menu-item active"><i class="fas fa-cog"></i><span>Settings</span></div>
<span id="vpn_on" class="hidden green"><b>ON</b></span> -->
<span id="vpn_off" class="hidden red"><b>OFF</b></span> <div class="menu-item" id="installAppsBtn"><img src="/img/apps1.svg" data-src="/img/apps1.svg" data-hover="/img/apps2.svg" alt="Applications" /><span>Applications</span></div>
</div> <div class="menu-item" id="backupBtn"><img src="/img/backup1.svg" data-src="/img/backup1.svg" data-hover="/img/backup2.svg" alt="Backup" /><span>Backup</span></div>
<div style="text-align:center;float:left;width:34%"> <div class="menu-item" id="diskBtn"><img src="/img/disk1.svg" data-src="/img/disk1.svg" data-hover="/img/disk2.svg" alt="Disk Management" /><span>Disk Management</span></div>
<a href="manage.html" id="refresh_btn">REFRESH</a> <div class="menu-item" id="monitorBtn"><img src="/img/monitor1.svg" data-src="/img/monitor1.svg" data-hover="/img/monitor2.svg" alt="Monitor" /><span>Monitor</span></div>
</div> <div class="menu-item has-submenu" id="settingsBtn"><img src="/img/settings1.svg" data-src="/img/settings1.svg" data-hover="/img/settings2.svg" alt="Settings" /><span>Settings</span><span class="arrow">&#9662;</span></div>
<div style="text-align:right;float:right"> <div class="submenu" id="settingsSubmenu">
<a href="javascript:void()" id="settings_btn">SETTINGS</a> <div id="servicesBtn" class="submenu-item">Services</div>
</div> <div id="repositoriesBtn" class="submenu-item">Repositories</div>
<div style="float:none;clear:both"/> <div id="systemservicesBtn" class="submenu-item">System services</div>
<div id="vpn" class="hidden">
<fieldset>
<legend>Enable proxy</legend>
<form class="form-install" action="#" method="post" id="save_vpn">
<div class="row">
<div class="mb-3">
<label for="vpn_domain">Please add domain url to download the VPN hash from (default: https://portal.safebox.network):</label>
<input type="text" class="form-control" name="VPN_DOMAIN" id="vpn_domain" value="https://portal.safebox.network">
<div class="invalid-feedback">
Please enter a valid domain.
</div>
</div>
</div>
<div class="row">
<div class="mb-3">
<label for="vpn_pass">Please type in the generated VPN passkey (8 digits):</label>
<input type="text" class="form-control" name="VPN_PASS" id="vpn_pass" value="" maxlength="8" size="10">
</div>
</div>
<div class="row">
<div class="mb-3">
<label for="letsencrypt_mail">Please add the letsencrypt mail address:</label>
<input type="email" class="form-control" name="LETSENCRYPT_MAIL" id="letsencrypt_mail" value="">
<div class="invalid-feedback">
Please enter a valid email.
</div>
</div>
</div>
<div class="row">
<div class="mb-3">
<label for="letsencrypt_servername">Please add letsencrypt server name (default is letsencrypt but you can add zerossl too):</label>
<input type="text" class="form-control" name="LETSENCRYPT_SERVERNAME" id="letsencrypt_servername" value="letsencrypt">
</div>
</div>
<div class="row">
<div class="mb-3">
<button class="btn btn-lg btn-primary btn-block" type="submit" id="vpn_save_btn"> Save </button> &nbsp;
<button class="btn btn-lg btn-primary btn-block" type="button" id="vpn_cancel_btn"> Cancel </button>
</div>
</div>
</form>
</fieldset>
<br>
</div>
<div id="settings" class="hidden">
<fieldset>
<legend>Repositories</legend>
<div id="repositories" style="text-align:left">Loading...</div>
<hr>
<form class="form-install" action="#" method="post" id="add_repo">
<div class="row">
<div class="mb-3" style="text-align:left">
<label for="registry">Please add a new GIT repository URL: </label>
<input type="registry" class="form-control" name="repository" id="repository" size="100" value="" required>
<div class="invalid-feedback">
Please enter a valid repository url.
</div>
</div>
</div>
<div class="row">
<div class="mb-3">
<button class="btn btn-lg btn-primary btn-block" type="submit" id="repo_add_btn"> Add </button>
</div>
</div>
</form>
</fieldset>
<fieldset>
<legend>System services</legend>
<div id="system" style="text-align:left">Loading...</div>
</fieldset>
<fieldset>
<legend>Updates</legend>
<div style="text-align:left">
<a href="javascript:void()" id="update_btn">Search for updates</a>
</div> </div>
<div id="updates" style="text-align:left"> </div>
</div>
<div class="yellow-row">
<div class="yellow-box">
<div id="pro_off">
<h4>Safebox Pro</h4>
<p>Enjoy benefits and unlock more feature such as remote access, geo-redundant backups etc. <br><br>
<a href="" class="details">Read details</a><br><br>
<img src="/img/upgrade.png" alt="Upgrade now" width="100%"/>
</p>
</div>
<div id="pro_on" class="hidden">
<h4>Login</h4>
<p>Enjoy benefits and unlock more feature such as remote access, geo-redundant backups etc. <br><br>
<a href="" class="details">Read details</a><br><br>
</p>
</div>
</div>
<div class="yellow-corner">
<img src="img/yellow_corner.png" alt=""/>
</div>
</div>
</div>
<div class="main" >
<div id="myAppsContainer">
Loading applications. Please wait...
</div>
<div id="popup" class="popup hidden">
<div class="popup-content">
<div id="popupText" class="deployment"></div>
</div> </div>
</fieldset> </div>
<br> </div>
</div>
<div id="default">
<fieldset>
<legend><a href="javascript:void()" id="deployments_btn">Deployments</a></legend>
<div id="deployments" style="text-align:left">Loading...</div>
</fieldset>
<fieldset>
<legend><a href="javascript:void()" id="services_btn">Services</a></legend>
<div id="services" style="text-align:left;display:none;">Loading...</div>
</fieldset>
<fieldset>
<legend>Disk management</legend>
</fieldset>
<fieldset>
<legend>Monitor</legend>
</fieldset>
</div>
</div>
</div>
<br>
<br>
<script> <script>
// apps array beállítása common.js-ben // apps array beállítása common.js-ben
const apps = []; // GLOBAL VARIABLE const apps = []; // GLOBAL VARIABLE
document.addEventListener('DOMContentLoaded', function() {
updateActive();
const myAppsBtn = document.getElementById('myAppsBtn');
const installAppsBtn = document.getElementById('installAppsBtn');
const backupBtn = document.getElementById('backupBtn');
const diskBtn = document.getElementById('diskBtn');
const monitorBtn = document.getElementById('monitorBtn');
const settingsBtn = document.getElementById('settingsBtn');
const vpnBtn = document.getElementById('vpnBtn');
const myAppsContainer = document.getElementById('myAppsContainer');
const popup = document.getElementById('popup');
const popupText = document.getElementById('popupText');
const closeBtn = document.querySelector('.close');
function updateActive() {
document.querySelectorAll('.menu-item').forEach(item => {
const img = item.querySelector('img');
img.src = img.dataset.src;
});
document.querySelectorAll('.menu-item.active').forEach(item => {
const img = item.querySelector('img');
img.src = img.dataset.hover;
});
}
//Appok betöltése
function renderApps(all) {
myAppsContainer.classList.remove('hidden');
popup.classList.add('hidden');
myAppsContainer.innerHTML = '<div class="main-header"><h1>Applications</h1><button id="updatesBtn"><i class="fas fa-bell"></i> Notification</button></div><div id="appsContainer"></div>';
const appsContainer = document.getElementById('appsContainer');
const updatesBtn = document.getElementById('updatesBtn');
updatesBtn.addEventListener('click', () => renderUpdates());
apps.forEach(app => {
//if ((all==false && app.installed=='true') || (all==true && app.installed!='true')) {
const appDiv = document.createElement('div');
appDiv.className = 'app';
if (app.installed=='true') more = 'Installed';
else more = 'More';
appDiv.innerHTML = `
<div class="app-img"><img src="${app.image}" alt="${app.name}" title="${app.orig_name} ${app.version}"></div>
<div class="app-label">${app.subtitle}</div>
<div class="app-name">${app.orig_name}</div>
<button class="more-btn">${more}</button>
`;
appDiv.addEventListener('click', () => {
popupText.textContent = `You clicked on ${app.name} ${app.version}!`;
if (app.installed=='true') reinstall(app.name, 'popupText');
else load_template(app.name,'popupText');
popup.classList.remove('hidden');
myAppsContainer.classList.add('hidden');
});
appsContainer.appendChild(appDiv);
//}
});
}
//TODO: Ilyen függvényeket kell csinálni és a listenerekhez adni az egyes részeket
function renderText(title) {
myAppsContainer.classList.remove('hidden');
popup.classList.add('hidden');
//TODO: itt kell a buttont editálni és így kell hozzáadni hozzá mindent
myAppsContainer.innerHTML = `
<div class="main-header">
<h1>${title}</h1>
<button id="updatesBtn"><i class="fas fa-bell"></i> Notification</button>
</div>
<label>Under development...</label>
`;
const submitButton = document.getElementById('submitButton');
const textInput = document.getElementById('textInput');
if (submitButton && textInput) {
submitButton.addEventListener('click', () => {
const value = textInput.value.trim();
if (value) {
alert(`Beírt szöveg: ${value}`);
textInput.value = '';
} else {
alert('Kérlek írj be valamit!');
}
});
}
}
function renderVPN() {
myAppsContainer.classList.remove('hidden');
popup.classList.add('hidden');
myAppsContainer.innerHTML = `
<div class="main-header">
<h1>VPN</h1>
</div>
<div id="vpn" class="innerDiv">
Loading...
</div>
`;
get_proxy_html();
}
function renderServices() {
myAppsContainer.innerHTML = `
<div class="main-header">
<h1>Services</h1>
</div>
<div id="services" class="innerDiv">
Loading...
</div>
`;
get_services();
}
function renderUpdates() {
myAppsContainer.innerHTML = `
<div class="main-header">
<h1>Updates</h1>
</div>
<div id="updates" class="innerDiv">
Looking for updates... Please wait...
</div>
`;
get_updates();
}
function renderSystemServices() {
myAppsContainer.innerHTML = `
<div class="main-header">
<h1>System services</h1>
</div>
<div id="system" class="innerDiv">
Loading...
</div>
`;
get_system();
}
function renderSettings() {
const submenu = document.getElementById("settingsSubmenu");
const isVisible = submenu.style.display === "flex";
submenu.style.display = isVisible ? "none" : "flex";
settingsBtn.classList.toggle("open", !isVisible);
myAppsContainer.classList.remove('hidden');
popup.classList.add('hidden');
myAppsContainer.innerHTML = `
<div class="main-header">
<h1>Settings</h1>
<button id="updatesBtn"><i class="fas fa-bell"></i> Notification</button>
</div>
<div class="input-row">
<label>Docker registry name</label>
<div class="input-container">
<input type="text" placeholder="Enter name" />
<button class="clear-btn" onclick="this.previousElementSibling.value = ''">×</button>
</div>
</div>
<div class="input-row">
<label>Enable logging</label>
<div class="input-container">
<select>
<option>Yes</option>
<option>No</option>
</select>
</div>
</div>
<div class="input-row">
<label>Backup folder</label>
<div class="input-container">
<input type="text" placeholder="Path to backup" />
<button class="clear-btn" onclick="this.previousElementSibling.value = ''">×</button>
</div>
</div>
<div class="input-row">
<label>Send alerts</label>
<div class="input-container">
<select>
<option>Yes</option>
<option>No</option>
</select>
</div>
</div>
<button class="save-button">Save Settings</button>
`;
const servicesBtn = document.getElementById('servicesBtn');
const repositoriesBtn = document.getElementById('repositoriesBtn');
const systemservicesBtn = document.getElementById('systemservicesBtn');
const updatesBtn = document.getElementById('updatesBtn');
servicesBtn.addEventListener('click', () => renderServices());
repositoriesBtn.addEventListener('click', () => renderRepositories());
systemservicesBtn.addEventListener('click', () => renderSystemServices());
updatesBtn.addEventListener('click', () => renderUpdates());
}
function renderRepositories() {
myAppsContainer.innerHTML = `
<div class="main-header">
<h1>Repositories</h1>
</div>
<div id="repositories" style="text-align:left">Loading...</div>
<br>
<form class="form-install" action="#" method="post" id="add_repo">
<div class="input-row">
<label for="registry">Please add a new GIT repository URL: </label>
<div class="input-container">
<input type="registry" name="repository" id="repository" size="100" value="" required>
<button class="clear-btn" onclick="this.previousElementSibling.value = ''">×</button>
</div>
<!--<div class="invalid-feedback">
Please enter a valid repository url.
</div>-->
</div>
<div class="row">
<button class="save-button" type="submit" id="repo_add_btn"> Add </button>
</div>
</form>
`;
jQuery('#add_repo').submit(function() {
jQuery('#repositories').html('Loading...');
add_repository();
return false;
});
get_repositories();
}
function activate(btn) {
//myAppsBtn.classList.remove('active');
installAppsBtn.classList.remove('active');
backupBtn.classList.remove('active');
diskBtn.classList.remove('active');
monitorBtn.classList.remove('active');
settingsBtn.classList.remove('active');
btn.classList.add('active');
updateActive();
}
//myAppsBtn.addEventListener('click', () => {renderApps(false); activate(myAppsBtn);});
installAppsBtn.addEventListener('click', () => {renderApps(true); activate(installAppsBtn);});
backupBtn.addEventListener('click', () => {renderText('Backup'); activate(backupBtn);});
diskBtn.addEventListener('click', () => {renderText('Disk Management'); activate(diskBtn)});
monitorBtn.addEventListener('click', () => {renderText('Monitor'); activate(monitorBtn)});
settingsBtn.addEventListener('click', () => {renderSettings(); activate(settingsBtn)});
vpnBtn.addEventListener('click', () => renderVPN());
// renderApps(true);
const vpnToggle = document.getElementById("vpnToggle");
const vpnLabel = document.querySelector(".switch-label");
function updateStatus() {
vpnLabel.textContent = vpnToggle.checked ? "ON" : "OFF";
}
vpnToggle.addEventListener("change", updateStatus);
// Alapállapot beállítása
updateStatus();
});
</script> </script>
<!-- Optional JavaScript --> <!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS --> <!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script> <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.6/dist/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.6/dist/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.2.1/dist/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.2.1/dist/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
<script src="common.js"></script> <script src="common.js?t=30"></script>
</body> </body>
</html> </html>

View File

@@ -3,7 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Control Panel</title> <title>Safebox</title>
<style> <style>
:root { :root {
--bg-color: #ffffff; --bg-color: #ffffff;
@@ -32,6 +32,16 @@
justify-content: space-between; justify-content: space-between;
padding: 10px 20px; padding: 10px 20px;
} }
table {border: 1px solid orange; width:100%;}
table th {padding-left: 20px; text-align: left; color: orange; width: 25%;}
table td {padding-left: 20px; text-align:left; width: 25%;}
label {text-align: left !important;}
a, a:hover, a:visited {color: orange}
fieldset {border: 1px solid #ffffff; padding-left: 20px; padding-right: 20px; border-radius: 10px;}
legend {width: auto;text-align: left !important; padding: 10px; color: #ffffff;}
.profile { .profile {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@@ -46,6 +56,13 @@
object-fit: cover; object-fit: cover;
border-radius: 50%; border-radius: 50%;
} }
.settings {
display: flex;
flex-direction: column;
align-items: center;
font-weight: bold;
gap: 5px;
}
.logo { .logo {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@@ -63,6 +80,7 @@
margin: 0; margin: 0;
padding: 0; padding: 0;
font-size: 24px; font-size: 24px;
color: var(--text-color);
} }
.toggle { .toggle {
cursor: pointer; cursor: pointer;
@@ -86,6 +104,11 @@
.toggle.active::after { .toggle.active::after {
transform: translateX(20px); transform: translateX(20px);
} }
div#themeToggle {
position: fixed;
top: 10px;
right: 10px;
}
.buttons { .buttons {
display: flex; display: flex;
justify-content: center; justify-content: center;
@@ -94,13 +117,59 @@
cursor: pointer; cursor: pointer;
} }
.buttons button { .buttons button {
padding: 10px 20px; min-width: 150px;
padding: 10px 10px;
background: none; background: none;
border: 1px solid var(--button-border); border: 1px solid var(--button-border);
border-radius: 10px; border-radius: 10px;
cursor: pointer; cursor: pointer;
color: var(--text-color); color: var(--text-color);
} }
.buttons button.active, .buttons button:hover {
color: orange;
border: 1px solid orange;
}
.left-buttons {
display: flex;
justify-content: center;
gap: 10px;
margin: 20px 0;
cursor: pointer;
}
.left-buttons button {
min-width: 120px;
padding: 5px 5px;
background: none;
border: 1px solid var(--button-border);
border-radius: 10px;
cursor: pointer;
color: var(--text-color);
}
.container-frame {
border: 1px solid;
border-radius: 10px;
padding: 0px;
margin: 5px;
height: 98vh;
}
.container {
clear:both;
float:none;
padding-bottom: 10px;
margin: 5px;
height: 88vh;
}
.leftside {
float:left;
width:10%;
}
.rightside {
float:right;
width:90%;
display: flex;
flex-direction: column;
height: 88vh;
}
.my-apps { .my-apps {
flex: 1; flex: 1;
background-color: var(--app-bg); background-color: var(--app-bg);
@@ -110,12 +179,17 @@
justify-content: flex-start; justify-content: flex-start;
align-items: flex-start; align-items: flex-start;
gap: 40px; gap: 40px;
min-width: 92%; min-width: 96%;
max-width: 92%; max-width: 96%;
margin: 0 auto; margin: 0 auto;
border-radius: 10px; border-radius: 10px;
box-sizing: border-box; box-sizing: border-box;
} }
.my-apps-container {
width:100%;
display: flex;
flex-wrap: wrap;
}
.app { .app {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@@ -129,13 +203,21 @@
object-fit: contain; object-fit: contain;
margin-bottom: 10px; margin-bottom: 10px;
} }
.innerDiv {
width:100%;
}
footer { footer {
position: fixed;
bottom: 0;
left: 0;
width: 97%;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
padding: 20px; padding: 20px;
font-size: 14px; font-size: 14px;
} z-index: 1000;
}
.footer-links { .footer-links {
display: flex; display: flex;
gap: 15px; gap: 15px;
@@ -197,7 +279,7 @@
padding: 30px; padding: 30px;
border-radius: 15px; border-radius: 15px;
width: 80%; width: 80%;
text-align: center; text-align: left;
position: relative; position: relative;
animation: fadeIn 0.3s ease; animation: fadeIn 0.3s ease;
} }
@@ -234,7 +316,10 @@
} }
.input-group input { .input-group input {
padding: 10px; min-width:260px;
margin-top: 5px;
margin-bottom: 5px;
padding: 5px;
border: 1px solid var(--button-border); border: 1px solid var(--button-border);
border-radius: 10px; border-radius: 10px;
background: none; background: none;
@@ -334,7 +419,69 @@
[data-theme="dark"] .custom-select { [data-theme="dark"] .custom-select {
background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpolyline points='1 1 7 7 13 1' style='fill:none;stroke:white;stroke-width:2' /%3E%3C/svg%3E"); background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpolyline points='1 1 7 7 13 1' style='fill:none;stroke:white;stroke-width:2' /%3E%3C/svg%3E");
} }
#popup .input-group {
display: block;
}
#popup .row {
display: flex;
}
.info-container {
position: relative;
display: inline-block;
font-family: Arial, sans-serif;
margin: 5px 0px 0px 5px;
}
.info-icon {
background-color: #007BFF;
color: white;
border-radius: 50%;
padding: 4px 8px;
cursor: pointer;
font-weight: bold;
font-size: 14px;
text-align: center;
line-height: 1;
display: inline-block;
}
.tooltip {
visibility: hidden;
background-color: #333;
color: #fff;
text-align: left;
border-radius: 4px;
padding: 8px;
position: absolute;
z-index: 1;
bottom: 125%; /* above the icon */
left: 50%;
transform: translateX(-50%);
opacity: 0;
transition: opacity 0.3s;
white-space: nowrap;
}
.tooltip::after {
content: "";
position: absolute;
top: 100%; /* bottom of tooltip */
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #333 transparent transparent transparent;
}
.info-container:hover .tooltip {
visibility: visible;
opacity: 1;
}
@media (max-width: 768px) { @media (max-width: 768px) {
header { header {
flex-direction: column; flex-direction: column;
@@ -386,38 +533,68 @@
} }
} }
</style> </style>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.2.1/dist/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<!-- Custom styles for this template -->
<link href="installer.css?t=5" rel="stylesheet">
</head> </head>
<body> <body>
<header> <div class="container-frame">
<div class="profile" id="profileSection"> <div class="container">
<img src="image.png" alt="Profilkép"> <div class="leftside">
<div>Pro</div>
</div>
<div class="logo"> <div class="logo">
<img src="image.png" alt="Logo"> <img src="image.png" alt="Logo">
<div><h1>Control Panel</h1></div> <div>
<h1>Safebox</h1>
</div>
</div> </div>
<div class="toggle" id="themeToggle"></div> <div class="profile" id="profileSection">
</header> <!--<img src="image.png" alt="Profilkép">-->
<div id="vpnBtn">Pro</div>
<div class="buttons"> </div>
<button id="myAppsBtn">My Apps</button> <div style="text-align:center">
<button id="installAppsBtn">Install Apps</button> Proxy&nbsp;status
<button id="backupBtn">Backup</button> <span id="vpn_on" class="hidden green"><b>ON</b></span>
<button id="diskBtn">Disk Management</button> <span id="vpn_off" class="hidden red"><b>OFF</b></span>
<button id="monitorBtn">Monitor</button> </div>
<div class="left-buttons">
<button id="servicesBtn">Services</button>
</div>
<div class="settings">Settings</div>
<div class="left-buttons">
<button id="repositoriesBtn">Repositories</button>
</div>
<div class="left-buttons">
<button id="systemservicesBtn">System services</button>
</div>
<br>
<br>
<div style="text-align:center;">
<a href="manage2.html" id="refresh_btn">REFRESH</a>
<br>
<br>
<a href="manage.html" id="old_btn">OLD DESIGN</a>
</div>
</div>
<div class="rightside">
<div class="buttons">
<button id="myAppsBtn">My Apps</button>
<button id="installAppsBtn">Install Apps</button>
<button id="updatesBtn">Updates</button>
<button id="backupBtn">Backup</button>
<button id="diskBtn">Disk Management</button>
<button id="monitorBtn">Monitor</button>
<div class="toggle" id="themeToggle"></div>
</div>
<div class="my-apps"><div id="myAppsContainer" class="my-apps-container"></div></div>
</div>
</div> </div>
<div class="my-apps" id="myAppsContainer"></div>
<div id="popup" class="popup hidden"> <div id="popup" class="popup hidden">
<div class="popup-content"> <div class="popup-content">
<span class="close">&times;</span> <span class="close">&times;</span>
<div class="input-group">
<div id="popupText" class="deployment">Load app template here</div> <div id="popupText" class="deployment">Load app template here</div>
</div>
</div> </div>
</div> </div>
<footer> <footer>
@@ -429,15 +606,18 @@
<div class="footer-center"> <div class="footer-center">
<p>Want to access your services remotely?</p> <p>Want to access your services remotely?</p>
<p><strong><a href="#">Go Pro!</a></strong></p> <p class="hidden" id="pro_off"><strong><a href="#">Get Pro!</a></strong></p>
<p class="hidden" id="pro_on"><strong><a href="#">Pro settings</a></strong></p>
</div> </div>
<div class="footer-social"> <div class="footer-social">
<a href="#">GitHub</a> <a href="#">Discord</a>
<a href="#">X</a> <a href="#">X</a>
</div> </div>
</footer> </footer>
</div>
<script> <script>
const toggle = document.getElementById('themeToggle'); const toggle = document.getElementById('themeToggle');
toggle.addEventListener('click', () => { toggle.addEventListener('click', () => {
@@ -449,6 +629,8 @@
} }
toggle.classList.toggle('active'); toggle.classList.toggle('active');
}); });
// default dark
document.documentElement.setAttribute('data-theme', 'dark');
</script> </script>
<script> <script>
@@ -463,6 +645,12 @@
const diskBtn = document.getElementById('diskBtn'); const diskBtn = document.getElementById('diskBtn');
const monitorBtn = document.getElementById('monitorBtn'); const monitorBtn = document.getElementById('monitorBtn');
const vpnBtn = document.getElementById('vpnBtn');
const servicesBtn = document.getElementById('servicesBtn');
const updatesBtn = document.getElementById('updatesBtn');
const repositoriesBtn = document.getElementById('repositoriesBtn');
const systemservicesBtn = document.getElementById('systemservicesBtn');
const myAppsContainer = document.getElementById('myAppsContainer'); const myAppsContainer = document.getElementById('myAppsContainer');
const popup = document.getElementById('popup'); const popup = document.getElementById('popup');
const popupText = document.getElementById('popupText'); const popupText = document.getElementById('popupText');
@@ -476,10 +664,10 @@
const appDiv = document.createElement('div'); const appDiv = document.createElement('div');
appDiv.className = 'app'; appDiv.className = 'app';
appDiv.innerHTML = ` appDiv.innerHTML = `
<img src="${app.image}" alt="${app.name}" title="${app.orig_name}">${app.orig_name} <img src="${app.image}" alt="${app.name}" title="${app.orig_name} ${app.version}">${app.orig_name}
`; `;
appDiv.addEventListener('click', () => { appDiv.addEventListener('click', () => {
popupText.textContent = `You clicked on ${app.name}!`; popupText.textContent = `You clicked on ${app.name} ${app.version}!`;
if (app.installed=='true') reinstall(app.name, 'popupText'); if (app.installed=='true') reinstall(app.name, 'popupText');
else load_template(app.name,'popupText'); else load_template(app.name,'popupText');
popup.classList.remove('hidden'); popup.classList.remove('hidden');
@@ -530,12 +718,89 @@
} }
} }
myAppsBtn.addEventListener('click', () => renderApps(false)); function renderVPN() {
installAppsBtn.addEventListener('click', () => renderApps(true)); myAppsContainer.innerHTML = `
<div id="vpn" class="innerDiv">
Loading...
</div>
`;
get_proxy_html();
}
function renderServices() {
myAppsContainer.innerHTML = `
<div id="services" class="innerDiv">
Loading...
</div>
`;
get_services();
}
function renderUpdates() {
myAppsContainer.innerHTML = `
<div id="updates" class="innerDiv">
Looking for updates... Please wait...
</div>
`;
get_updates();
}
function renderRepositories() {
myAppsContainer.innerHTML = `
<div class="input-group">
<fieldset>
<legend>Repositories</legend>
<div id="repositories" style="text-align:left">Loading...</div>
<hr>
<form class="form-install" action="#" method="post" id="add_repo">
<div class="row">
<div class="mb-3" style="text-align:left">
<label for="registry">Please add a new GIT repository URL: </label>
<input type="registry" class="form-control" name="repository" id="repository" size="100" value="" required>
<div class="invalid-feedback">
Please enter a valid repository url.
</div>
</div>
</div>
<div class="row">
<div class="mb-3">
<button class="btn btn-lg btn-primary btn-block" type="submit" id="repo_add_btn"> Add </button>
</div>
</div>
</form>
</fieldset>
</div>
`;
}
function renderSystemServices() {
myAppsContainer.innerHTML = `
<div id="system">
Loading...
</div>
`;
get_system();
}
function activate(btn) {
myAppsBtn.classList.remove('active');
installAppsBtn.classList.remove('active');
btn.classList.add('active');
}
myAppsBtn.addEventListener('click', () => {renderApps(false); activate(myAppsBtn);});
installAppsBtn.addEventListener('click', () => {renderApps(true); activate(installAppsBtn);});
backupBtn.addEventListener('click', () => renderText('Backup')); backupBtn.addEventListener('click', () => renderText('Backup'));
diskBtn.addEventListener('click', () => renderText('Disk Management')); diskBtn.addEventListener('click', () => renderText('Disk Management'));
monitorBtn.addEventListener('click', () => renderText('Monitor')); monitorBtn.addEventListener('click', () => renderText('Monitor'));
vpnBtn.addEventListener('click', () => renderVPN());
servicesBtn.addEventListener('click', () => renderServices());
updatesBtn.addEventListener('click', () => renderUpdates());
repositoriesBtn.addEventListener('click', () => renderRepositories());
systemservicesBtn.addEventListener('click', () => renderSystemServices());
closeBtn.addEventListener('click', () => { closeBtn.addEventListener('click', () => {
popup.classList.add('hidden'); popup.classList.add('hidden');
}); });
@@ -562,6 +827,6 @@
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script> <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.6/dist/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.6/dist/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.2.1/dist/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.2.1/dist/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
<script src="common.js?t=4"></script> <script src="common.js?t=9"></script>
</body> </body>
</html> </html>

853
manage2B.html Normal file

File diff suppressed because one or more lines are too long

157
manage_old.html Normal file
View File

@@ -0,0 +1,157 @@
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>INSTALLER TOOL</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.2.1/dist/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<!-- Custom styles for this template -->
<link href="installer.css?t=7" rel="stylesheet">
</head>
<body id="manage" class="text-center">
<div class="container-fluid">
<div class="col-md-12">
<h1>Found deployed environment</h1>
<div style="text-align:left;float:left;width:33%">
<a href="javascript:void()" id="vpn_btn">VPN</a>
Status:
<span id="vpn_on" class="hidden green"><b>ON</b></span>
<span id="vpn_off" class="hidden red"><b>OFF</b></span>
</div>
<div style="text-align:center;float:left;width:34%">
<a href="manage.html" id="refresh_btn">REFRESH</a>
/
<a href="manage2.html" id="new_btn">NEW DESIGN</a>
</div>
<div style="text-align:right;float:right">
<a href="javascript:void()" id="settings_btn">SETTINGS</a>
</div>
<div style="float:none;clear:both"/>
<div id="vpn" class="hidden">
<fieldset>
<legend>Enable proxy</legend>
<form class="form-install" action="#" method="post" id="save_vpn">
<div class="row">
<div class="mb-3">
<label for="vpn_domain">Please add domain url to download the VPN hash from (default: https://portal.safebox.network):</label>
<input type="text" class="form-control" name="VPN_DOMAIN" id="vpn_domain" value="https://portal.safebox.network">
<div class="invalid-feedback">
Please enter a valid domain.
</div>
</div>
</div>
<div class="row">
<div class="mb-3">
<label for="vpn_pass">Please type in the generated VPN passkey (8 digits):</label>
<input type="text" class="form-control" name="VPN_PASS" id="vpn_pass" value="" maxlength="8" size="10">
</div>
</div>
<div class="row">
<div class="mb-3">
<label for="letsencrypt_mail">Please add the letsencrypt mail address:</label>
<input type="email" class="form-control" name="LETSENCRYPT_MAIL" id="letsencrypt_mail" value="">
<div class="invalid-feedback">
Please enter a valid email.
</div>
</div>
</div>
<div class="row">
<div class="mb-3">
<label for="letsencrypt_servername">Please add letsencrypt server name (default is letsencrypt but you can add zerossl too):</label>
<input type="text" class="form-control" name="LETSENCRYPT_SERVERNAME" id="letsencrypt_servername" value="letsencrypt">
</div>
</div>
<div class="row">
<div class="mb-3">
<button class="btn btn-lg btn-primary btn-block" type="submit" id="vpn_save_btn"> Save </button> &nbsp;
<button class="btn btn-lg btn-primary btn-block" type="button" id="vpn_cancel_btn"> Cancel </button>
</div>
</div>
</form>
</fieldset>
<br>
</div>
<div id="settings" class="hidden">
<fieldset>
<legend>Repositories</legend>
<div id="repositories" style="text-align:left">Loading...</div>
<hr>
<form class="form-install" action="#" method="post" id="add_repo">
<div class="row">
<div class="mb-3" style="text-align:left">
<label for="registry">Please add a new GIT repository URL: </label>
<input type="registry" class="form-control" name="repository" id="repository" size="100" value="" required>
<div class="invalid-feedback">
Please enter a valid repository url.
</div>
</div>
</div>
<div class="row">
<div class="mb-3">
<button class="btn btn-lg btn-primary btn-block" type="submit" id="repo_add_btn"> Add </button>
</div>
</div>
</form>
</fieldset>
<fieldset>
<legend>System services</legend>
<div id="system" style="text-align:left">Loading...</div>
</fieldset>
<fieldset>
<legend>Updates</legend>
<div style="text-align:left">
<a href="javascript:void()" id="update_btn">Search for updates</a>
</div>
<div id="updates" style="text-align:left">
</div>
</fieldset>
<br>
</div>
<div id="default">
<fieldset>
<legend><a href="javascript:void()" id="deployments_btn">Deployments</a></legend>
<div id="deployments" style="text-align:left">Loading...</div>
</fieldset>
<fieldset>
<legend><a href="javascript:void()" id="services_btn">Services</a></legend>
<div id="services" style="text-align:left;display:none;">Loading...</div>
</fieldset>
<fieldset>
<legend>Disk management</legend>
</fieldset>
<fieldset>
<legend>Monitor</legend>
</fieldset>
</div>
</div>
</div>
<br>
<br>
<script>
// apps array beállítása common.js-ben
const apps = []; // GLOBAL VARIABLE
</script>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.6/dist/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.2.1/dist/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
<script src="common.js?t=5"></script>
</body>
</html>

212
scan.html
View File

@@ -1,51 +1,116 @@
<!doctype html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<!-- Required meta tags --> <meta charset="UTF-8" />
<meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>Safebox - INSTALLER TOOL</title>
<title>INSTALLER TOOL</title> <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Switzer:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap"/>
<!-- Bootstrap CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.2.1/dist/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous"> <link rel="stylesheet" href="style.css?t=3" />
<!-- Custom styles for this template -->
<link href="installer.css?t=1" rel="stylesheet">
</head> </head>
<body id="scan" class="text-center"> <body id="scan" class="text-center">
<div class="container-fluid"> <div class="main">
<div class="col-md-12"> <div id="myAppsContainer">
<h1>Scanning your device for any previous installed versions</h1> <div class="logo" style="margin-top:100px">
<div class="row d-flex justify-content-center mt-100"> <img src="/img/logo.png" alt="Safebox"/>
<div class="progress blue" data-value="100"> <span>Safebox</span>
<span class="progress-left">
<span class="progress-bar"></span>
</span>
<span class="progress-right">
<span class="progress-bar"></span>
</span>
<div class="progress-value"></div>
</div>
</div> </div>
<div><a href="install.html" class="stop">STOP AND START INSTALL</a></div> <div class="progress-box">
<br> <div class="progress-title">Scanning your device</div>
<br> <div class="progress-description" id="info">Looking for any previously installed version</div>
<div id="redis"></div> <div class="progress-container-shadow">
<div id="previous"></div> </div>
</div> <div class="progress-container">
</div> <div class="progress-bar" id="progressBar"></div>
<div class="progress-text" id="progressText">0%</div>
</div>
</div>
<div class="controls">
<button onclick="document.location='install.html'" class="save-button">STOP AND START INSTALL</button>
</div>
</div>
</div>
<!-- Optional JavaScript --> <!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS --> <!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script> <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.6/dist/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.6/dist/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.2.1/dist/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.2.1/dist/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
<script> <script>
$(function() { const progressBar = document.getElementById('progressBar');
const progressText = document.getElementById('progressText');
let currentProgress = 0;
let progressInterval;
function updateProgress(percentage) {
// Clamp percentage between 0 and 99.9 (never reach 100)
percentage = Math.max(0, Math.min(99.9, percentage));
progressBar.style.width = percentage + '%';
progressText.textContent = Math.round(percentage) + '%';
currentProgress = percentage;
}
function setProgress(percentage) {
clearInterval(progressInterval);
updateProgress(percentage);
startProgress();
}
function startProgress() {
clearInterval(progressInterval);
const duration = 60000; // 60 seconds
const startTime = Date.now() - (currentProgress / 100) * duration;
progressInterval = setInterval(() => {
const elapsed = Date.now() - startTime;
// Use exponential approach to 100% - gets slower as it approaches
let progress = (1 - Math.exp(-4 * elapsed / duration)) * 100;
// Ensure it never reaches 100%
progress = Math.min(progress, 99.9);
updateProgress(progress);
// Stop when we've been running for 60+ seconds
if (elapsed >= duration) {
clearInterval(progressInterval);
}
}, 100); // Update every 100ms
}
function resetProgress() {
clearInterval(progressInterval);
updateProgress(0);
}
// Example: Simulate loading with custom speeds
function simulateLoading(duration = 3000) {
clearInterval(progressInterval);
const startTime = Date.now();
progressInterval = setInterval(() => {
const elapsed = Date.now() - startTime;
const progress = Math.min((elapsed / duration) * 100, 99.9);
updateProgress(progress);
if (elapsed >= duration) {
clearInterval(progressInterval);
}
}, 16); // ~60fps
}
function redirectToInstall() { function redirectToInstall() {
window.location.href = 'install.html'; setProgress(100);
window.location.href = 'install.html';
} }
function redirectToManage() { function redirectToManage() {
window.location.href = 'manage.html'; setProgress(100);
window.location.href = 'manage.html';
} }
function start_system() { function start_system() {
@@ -53,11 +118,11 @@ function start_system() {
$.get(url, function(data){ $.get(url, function(data){
console.log('start_system: '+data); console.log('start_system: '+data);
if (data=='OK') { if (data=='OK') {
$("#previous").html('Scanning for previous install. Please wait...'); $("#info").html('Scanning for previous install. Please wait...');
check_system(); check_system();
} }
else { else {
$("#previous").html('Scanning for previous install has aborted...'); $("#info").html('Scanning for previous install has aborted...');
} }
}); });
} }
@@ -67,11 +132,12 @@ function check_system() {
$.get(url, function(data){ $.get(url, function(data){
console.log('check_system: '+data); console.log('check_system: '+data);
if (data=='NEW') { if (data=='NEW') {
$("#previous").html('No previous install has found...'); $("#info").html('No previous install has found...');
setTimeout(redirectToInstall, 3000); setTimeout(redirectToInstall, 3000);
} }
else if (data=='EXISTS') { else if (data=='EXISTS') {
$("#previous").html('Previous install has found...'); $("#info").html('Previous install has found...');
setProgress(80);
setTimeout(redirectToManage, 3000); setTimeout(redirectToManage, 3000);
} }
else if (data=='WAIT') { else if (data=='WAIT') {
@@ -89,11 +155,11 @@ function check_redis() {
$.get(url, function(data){ $.get(url, function(data){
console.log('check_redis: '+data); console.log('check_redis: '+data);
if (data=='OK') { if (data=='OK') {
$("#redis").html('Redis server - OK'); $("#info").html('Redis server - OK');
start_system(); start_system();
} }
else { else {
$("#redis").html('Redis server is not available...'); $("#info").html('Redis server is not available...');
setTimeout(check_redis, 1000); setTimeout(check_redis, 1000);
} }
}); });
@@ -105,11 +171,11 @@ function check_directory() {
$.get(url, function(data){ $.get(url, function(data){
console.log('check_directory: '+data); console.log('check_directory: '+data);
if (data=='OK') { if (data=='OK') {
$("#redis").html('Connection is ready - OK'); $("#info").html('Connection is ready - OK');
start_system(); start_system();
} }
else { else {
$("#redis").html('Shared directory is not available...'); $("#info").html('Shared directory is not available...');
} }
}); });
} }
@@ -126,73 +192,17 @@ function check_interface() {
check_directory(); check_directory();
} }
else { else {
$("#redis").html('Invalid interface definition...'); $("#info").html('Invalid interface definition...');
} }
}); });
} }
check_interface(); // Initialize
updateProgress(0);
startProgress();
//setTimeout(redirectToManage, 10000); check_interface();
$(".progress").each(function() {
var value = $(this).attr('data-value');
var left = $(this).find('.progress-left .progress-bar');
var right = $(this).find('.progress-right .progress-bar');
if (value > 0) {
/*
angle1 = getRotationDegrees(right);
angle2 = getRotationDegrees(left);
console.log(angle1);
console.log(angle2);
idx=1
while (idx < 50) {
angle1 = getRotationDegrees(right);
angle2 = getRotationDegrees(left);
console.log(angle1);
console.log(angle2);
$('div.progress-value').html(angle2);
idx++;
}
*/
/*
if (value <= 50) {
right.css('transform', 'rotate(' + percentageToDegrees(value) + 'deg)')
} else {
right.css('transform', 'rotate(180deg)')
left.css('transform', 'rotate(' + percentageToDegrees(value - 50) + 'deg)')
}
*/
}
})
function percentageToDegrees(percentage) {
return percentage / 100 * 360
}
/**
* Returns rotation in degrees when obtaining transform-styles using javascript
* http://stackoverflow.com/questions/8270612/get-element-moz-transformrotate-value-in-jquery
*/
function getRotationDegrees(obj) {
var matrix = obj.css("-webkit-transform") ||
obj.css("-moz-transform") ||
obj.css("-ms-transform") ||
obj.css("-o-transform") ||
obj.css("transform");
if(matrix !== 'none') {
var values = matrix.split('(')[1].split(')')[0].split(',');
var a = values[0];
var b = values[1];
var angle = Math.round(Math.atan2(b, a) * (180/Math.PI));
} else { var angle = 0; }
return angle;
}
});
</script> </script>
</body> </body>
</html> </html>

200
scan.php
View File

@@ -144,12 +144,16 @@ switch ($_GET["op"]) {
else { else {
foreach ($data["DEPLOYMENTS"] as $service_name => $content) { foreach ($data["DEPLOYMENTS"] as $service_name => $content) {
$orig_service_name = $service_name; $orig_service_name = $service_name;
$service_name = strtolower($service_name); $service_name = strtolower($service_name);
//echo base64_decode($content); $version = $content["version"];
$subtitle = $content["subtitle"];
if (empty($subtitle) || $subtitle == "null") $subtitle = "";
$icon = $content["icon"];
if (empty($icon) || $icon == "null") $icon = "img/default_logo.png"; // default icon image
if (array_key_exists($service_name,$data["INSTALLED_SERVICES"])) $installed = "true"; if (array_key_exists($service_name,$data["INSTALLED_SERVICES"])) $installed = "true";
else $installed = "false"; else $installed = "false";
if (!empty($deployments)) $deployments .= ", "; if (!empty($deployments)) $deployments .= ", ";
$deployments .= '{"name": "'.$service_name.'", "orig_name": "'.$orig_service_name.'", "image": "image.png", "content": "'.$content.'", "installed": "'.$installed.'"}'; $deployments .= '{"name": "'.$service_name.'", "orig_name": "'.$orig_service_name.'", "image": "'.$icon.'", "version": "'.$version.'", "subtitle": "'.$subtitle.'", "installed": "'.$installed.'"}';
} }
if (!empty($deployments)) $deployments = "[{$deployments}]"; if (!empty($deployments)) $deployments = "[{$deployments}]";
} }
@@ -178,13 +182,29 @@ switch ($_GET["op"]) {
if ($key=="deployment") { if ($key=="deployment") {
if ($data["STATUS"]=="0") { // ask if ($data["STATUS"]=="0") { // ask
$template = json_decode(base64_decode($data["TEMPLATE"])); $template = json_decode(base64_decode($data["TEMPLATE"]));
echo "<fieldset><form action=\"#\" method=\"post\" id=\"deploy_{$template->name}_form\"><br>";
echo '<div id="letsencrypt">'; echo '
<div class="app-details">
<div class="header-block">
<div class="logo-and-text">
<div class="applogo">
<img src="'.$template->icon.'">
</div>
<div class="text-content">
<h1 class="title">'.$template->name.'</h1>
<h2 class="subtitle">'.$template->subtitle.'</h2>
<p class="description">'.$template->description.'</p>
</div>
</div>
<button id="updatesBtn" class="notification-btn"><i class="fas fa-bell"></i> Notification</button>
</div>
';
if ($reinstall) { if ($reinstall) {
echo '<div id="letsencrypt">';
//var_dump($template); //var_dump($template);
$letsencrypt = check_letsencrypt(); $letsencrypt = check_letsencrypt();
if (empty($letsencrypt)) echo "LETSENCRYPT file doesn't exists..."; if (empty($letsencrypt)) echo ""; //echo "LETSENCRYPT file doesn't exists...<br><br>";
elseif ($letsencrypt=="ERROR") echo "LETSENCRYPT file: read JSON error..."; elseif ($letsencrypt=="ERROR") echo "LETSENCRYPT file: read JSON error...<br><br>";
else { else {
$domain = ""; $domain = "";
foreach ($template->fields as $field) { foreach ($template->fields as $field) {
@@ -192,45 +212,85 @@ switch ($_GET["op"]) {
} }
if (!empty($domain)) show_letsencrypt($letsencrypt, $domain); if (!empty($domain)) show_letsencrypt($letsencrypt, $domain);
} }
echo '</div>';
} }
echo '</div>'; $more = 0;
echo "<form action=\"#\" method=\"post\" id=\"deploy_{$template->name}_form\">";
echo "<div class=\"app-fields\">";
foreach ($template->fields as $field) { foreach ($template->fields as $field) {
if ($field->advanced) $more = 1;
echo "<div class=\"app-field ".($field->advanced ? "advanced" : "")."\">";
if (!empty($field->title)) echo "<div class=\"row\"><h3>".$field->title."</h3></div>";
if (isset($field->generated)) { if (isset($field->generated)) {
echo "<input type=\"hidden\" value=\"generated:{$field->generated}\" name=\"{$field->key}\" id=\"{$template->name}_{$field->key}\" class=\"additional_{$template->name}\">"; echo "<input type=\"hidden\" value=\"generated:{$field->generated}:{$field->value}\" name=\"{$field->key}\" id=\"{$template->name}_{$field->key}\" class=\"additional_{$template->name}\">";
} }
else { else {
echo "<div class=\"row\"><div class=\"mb-3\"><label>".$field->description."</label> echo "<div class=\"row\">";
<input ".($field->required=="true" ? "required" : "")." type=\"".(!empty($field->type) ? $field->type : "text")."\" value=\"{$field->value}\" name=\"{$field->key}\" id=\"{$template->name}_{$field->key}\" class=\"additional_{$template->name}\"> echo "<label>".$field->description."</label>
</div></div>"; <div class=\"input-container\"><input ".($field->required=="true" ? "required" : "")." type=\"".(!empty($field->type) ? $field->type : "text")."\" value=\"{$field->value}\" name=\"{$field->key}\" id=\"{$template->name}_{$field->key}\" class=\"additional_{$template->name}\"></div>
<div class=\"info-container\">
";
if (!empty($field->info)) echo "
<span class=\"info-icon\">i</span>
<div class=\"tooltip\">{$field->info}</div>
";
echo "</div>";
echo "</div>";
if (!empty($field->details)) echo "<div class=\"row\"><i>".$field->details."</i></div>";
} }
echo "</div>";
} }
echo "</div>";
echo "<div class=\"row buttons\">";
echo " if ($more) {
<div class=\"row\"> echo "
<div class=\"mb-3\"> <div class=\"mb-3\" style=\"margin-right:30px;\">
<button class=\"btn btn-lg btn-primary btn-block\" type=\"button\" id=\"more_{$template->name}_btn\">More</button>
</div>";
}
if ($reinstall) {
echo "
<div class=\"mb-3\" style=\"margin-right:30px;\">
<button class=\"btn btn-lg btn-primary btn-block\" type=\"submit\" id=\"update_{$template->name}_btn\" onclick=\"update_deployment('{$template->name}')\">Update</button>
</div>";
}
echo "
<div class=\"mb-3\" style=\"margin-right:30px;\">
<button class=\"btn btn-lg btn-primary btn-block\" type=\"submit\" id=\"deploy_{$template->name}_btn\">".($reinstall ? "Reinstall" : "Install")."</button> <button class=\"btn btn-lg btn-primary btn-block\" type=\"submit\" id=\"deploy_{$template->name}_btn\">".($reinstall ? "Reinstall" : "Install")."</button>
</div>"; </div>";
if ($reinstall) { if ($reinstall) {
echo " echo "
<div class=\"mb-3\" style=\"margin-left:30px;\"> <div class=\"mb-3\" style=\"margin-right:30px;\">
<button class=\"btn btn-lg btn-primary btn-block\" type=\"button\" id=\"uninstall_{$template->name}_btn\" onclick=\"uninstall('{$template->name}')\">Uninstall</button> <button class=\"btn btn-lg btn-primary btn-block\" type=\"button\" id=\"uninstall_{$template->name}_btn\" onclick=\"uninstall('{$template->name}')\">Uninstall</button>
</div>"; </div>";
} }
echo "<div class=\"mb-3\" style=\"margin-left:30px;\"> echo "<div class=\"mb-3\" style=\"margin-left:200px;float:\">
<button class=\"btn btn-lg btn-primary btn-block\" type=\"button\" id=\"cancel_{$template->name}_btn\">Cancel</button> <button class=\"btn btn-lg btn-primary btn-block\" type=\"button\" id=\"cancel_{$template->name}_btn\">Cancel</button>
</div>"; </div>"; // buttons
echo " echo "
</div> </div>
</form></fieldset> </form>
</div>
<script> <script>
jQuery('.advanced').each(function() {
jQuery(this).hide();
});
jQuery('#more_{$template->name}_btn').click(function() {
currentText = jQuery(this).text();
jQuery(this).text(currentText === 'More' ? 'Less' : 'More');
jQuery('.advanced').each(function() {
jQuery(this).toggle();
});
});
jQuery('#deploy_{$template->name}_form').submit(function() { jQuery('#deploy_{$template->name}_form').submit(function() {
".($reinstall ? "redeploy" : "deploy")."('{$template->name}'); ".($reinstall ? "redeploy" : "deploy")."('{$template->name}');
return false; return false;
}); });
jQuery('#cancel_{$template->name}_btn').click(function() { jQuery('#cancel_{$template->name}_btn').click(function() {
$('div#{$template->name}').html(''); jQuery('div#{$template->name}').html('');
document.getElementById('popup').classList.add('hidden'); // manage2 document.getElementById('myAppsContainer').classList.remove('hidden'); // manage3
document.getElementById('popup').classList.add('hidden'); // manage2
}); });
</script> </script>
"; ";
@@ -263,23 +323,24 @@ switch ($_GET["op"]) {
else echo ""; // no deployment, finished else echo ""; // no deployment, finished
} }
break; break;
case "letsencrypt": case "request_letsencrypt":
$domain = $_GET["domain"]; $domain = $_GET["domain"];
$arr = array($domain => array("status" => "requested")); $arr = array($domain => array("date" => date("Y-m-d H:i:s"), "status" => "requested"));
$json = json_encode($arr, JSON_UNESCAPED_SLASHES|JSON_PRETTY_PRINT); $json = json_encode($arr, JSON_UNESCAPED_SLASHES|JSON_PRETTY_PRINT);
if (set_output("letsencrypt",$json)) echo "LETSENCRYPT in progress for {$domain}.<br><br>"; if (set_output("request_letsencrypt",$json)) echo "LETSENCRYPT in progress for {$domain}.<br><br>";
else echo "ERROR"; else echo "ERROR";
break; break;
case "check_letsencrypt": case "check_letsencrypt":
$domain = $_GET["domain"]; $domain = $_GET["domain"];
$letsencrypt = check_letsencrypt(); $letsencrypt = check_letsencrypt();
if (empty($letsencrypt)) echo "LETSENCRYPT file doesn't exists..."; if (empty($letsencrypt)) echo ""; //echo "LETSENCRYPT file doesn't exists...";
elseif ($letsencrypt=="ERROR") echo "LETSENCRYPT file: read JSON error..."; elseif ($letsencrypt=="ERROR") echo "LETSENCRYPT file: read JSON error...";
else { else {
show_letsencrypt($letsencrypt, $domain); show_letsencrypt($letsencrypt, $domain);
} }
break; break;
case "edit": // update deployment after edit
case "redeploy": case "redeploy":
case "deploy": case "deploy":
if ($key=check_deploy($_GET["additional"])) { if ($key=check_deploy($_GET["additional"])) {
@@ -294,6 +355,11 @@ switch ($_GET["op"]) {
foreach ($fields as $field_key => $field_value) { foreach ($fields as $field_key => $field_value) {
$field_arr = explode(":",$field_value); $field_arr = explode(":",$field_value);
if ($field_arr[0]=="generated") { if ($field_arr[0]=="generated") {
if ($_GET["op"]=="edit") {
$fields[$field_key] = $field_arr[2]; // replace with previously stored value
continue; // do NOT regenerate values
}
if (intval($field_arr[3])==0) $len = 10; // default length if (intval($field_arr[3])==0) $len = 10; // default length
else $len = $field_arr[3]; else $len = $field_arr[3];
@@ -380,23 +446,51 @@ switch ($_GET["op"]) {
echo $text; echo $text;
break; break;
case "check_upgrade": case "check_upgrade":
$arr = check_response("upgrade"); $arr = check_deploy($_GET["service"]);
if (!empty($arr)) { if (!empty($arr)) { // deployment in progress
foreach ($arr as $key=>$data) { foreach ($arr as $key=>$data) {
if ($key=="upgrade") { if ($key=="deploy-".$_GET["service"]) {
var_dump($arr); if ($data["STATUS"]=="1") {
//remove_response("$key"); echo "Install in progress... You can't uninstall while in progress...";
}
elseif ($data["STATUS"]=="2") {
echo "Install has finished... You can upgrade now.";
//echo "<script>get_deployments();</script>";
remove_response("$key");
}
} }
} }
} }
else echo "WAIT"; else { // no upgrade in progress -> upgrade
$key = "upgrade-".$_GET["service"];
$arr = check_response($key);
if (!empty($arr)) {
$data = $arr[$key];
if ($data["STATUS"]=="1") {
echo "Upgrade in progress... Please wait... ".date("Y-m-d H:i:s");
}
elseif ($data["STATUS"]=="2") {
echo "OK";
remove_response("$key");
}
}
else echo "Upgrade in progress... Please wait...";
}
break; break;
case "upgrade": case "upgrade":
$arr = array("NAME" => $_GET["service"], "ACTION" => "upgrade"); if ($key=check_deploy($_GET["service"])) {
$json = json_encode($arr, JSON_UNESCAPED_SLASHES|JSON_PRETTY_PRINT); $text="Deploy/uninstall of {$_GET["service"]} has started. Please wait...";
}
else {
//$text="Deploy/uninstall of {$_GET["service"]} in progress... Please wait...";
if (set_output("upgrade",$json)) echo "OK"; $arr = array("NAME" => $_GET["service"], "ACTION" => "upgrade");
else echo "ERROR"; $json = json_encode($arr, JSON_UNESCAPED_SLASHES|JSON_PRETTY_PRINT);
if (set_output("upgrade",$json)) $text = "OK";
else $text = "ERROR";
}
echo $text;
break; break;
case "repositories": case "repositories":
$arr = array("STATUS" => 0); $arr = array("STATUS" => 0);
@@ -431,21 +525,29 @@ switch ($_GET["op"]) {
else echo "ERROR"; else echo "ERROR";
break; break;
case "check_vpn": case "check_vpn":
$key = "check_vpn"; $arr = check_response("save_vpn");
$arr = array("STATUS" => 0); if (!empty($arr)) {
$json = json_encode($arr, JSON_UNESCAPED_SLASHES|JSON_PRETTY_PRINT); $data = $arr["save_vpn"];
set_output($key,$json); echo $data["STATUS"];
sleep(1); if ($data["STATUS"]=="1") remove_response("save_vpn"); // vpn start has finished
$arr = check_response($key); }
if (!empty($arr)) { else {
$data = $arr[$key]; $key = "check_vpn";
echo $data["STATUS"]; $arr = array("STATUS" => 0);
remove_response("$key"); $json = json_encode($arr, JSON_UNESCAPED_SLASHES|JSON_PRETTY_PRINT);
} set_output($key,$json);
else echo "NO"; sleep(1);
$arr = check_response($key);
if (!empty($arr)) {
$data = $arr[$key];
echo $data["STATUS"];
remove_response("$key");
}
else echo "NO";
}
break; break;
case "save_vpn": case "save_vpn":
remove_response("save_repository"); //remove_response("save_repository"); // ???
$arr = array( $arr = array(
"VPN_DOMAIN" => $_GET["vpn_domain"], "VPN_DOMAIN" => $_GET["vpn_domain"],

723
style.css Normal file
View File

@@ -0,0 +1,723 @@
:root {
--highlight-color: #F9DB54;
}
body {
margin: 0;
font-family: 'Switzer', sans-serif;
font-weight: 500;
font-size: 16px;
background-color: #000;
color: white;
display: flex;
height: 100vh;
}
h4 {
font-size: 16px;
}
table {border: 1px solid var(--highlight-color); width:100%;}
table th {padding-left: 20px; text-align: left; color: var(--highlight-color); width: 25%;}
table td {padding-left: 20px; text-align:left; width: 25%;}
.progress-box {
max-width: 300px;
margin: auto;
text-align: center;
align-items: center;
border: 2px solid #41464f;
padding: 30px 30px 0px 30px;
border-radius: 20px;
}
.progress-container-shadow {
width: 300px;
height: 40px;
background-color: var(--highlight-color);
border-radius: 5px;
overflow: hidden;
position: relative;
margin: 40px auto 0px auto;
}
.progress-container-shadow::after {
content: "";
position: absolute;
inset: 0;
background-color: rgba(0, 0, 0, 0.5);
pointer-events: none;
}
.progress-container {
width: 280px;
height: 40px;
border-radius: 5px;
overflow: hidden;
position: relative;
margin: 0px;
top:-45px;
left:5px;
}
.progress-bar {
height: 100%;
background-color: var(--highlight-color);
width: 0%;
border-radius: 5px;
transition: width 0.3s ease;
position: relative;
}
.progress-text {
font-size: 20px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-weight: bold;
color: #000000;
z-index: 10;
}
.progress-title {
text-align: left;
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
}
.progress-description {
text-align: left;
font-size: 16px;
margin-bottom: 10px;
color: #999;
min-height: 40px;
}
.controls {
text-align: center;
}
.sidebar {
width: 250px;
background-color: #101214;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 20px 0;
margin: 20px;
border-radius: 20px;
transition: width 0.3s;
}
.logo {
text-align: center;
margin-bottom: 40px;
font-size: 24px;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.logo img {
height: 30px;
}
.menu {
display: flex;
flex-direction: column;
gap: 5px;
padding: 0 10px;
}
.vpn-item {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 20px;
cursor: pointer;
color: white;
transition: color 0.3s;
}
.menu-item {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 20px;
cursor: pointer;
color: white;
transition: color 0.3s;
}
.menu-item:hover {
color: var(--highlight-color);
}
.menu-item i {
font-size: 18px;
}
.menu-item span {
display: inline;
}
.menu-item img {
width: 24px;
}
.menu-item.active {
background-color: var(--highlight-color);
color: black;
border-radius: 10px;
font-weight: bold;
}
.menu-item.active:hover {
color: black;
}
.menu-item span.arrow {
margin-left: auto;
color: gray;
font-size: 20px;
transition: transform 0.3s ease;
}
.menu-item.open .arrow {
transform: rotate(180deg);
}
.submenu {
display: none;
margin-left: 40px;
flex-direction: column;
margin-bottom: 10px;
}
.submenu-item {
padding: 5px 14px;
font-size: 14px;
color: #ffffff;
cursor: pointer;
border-radius: 10px;
}
.submenu-item:hover {
color: #000000;
background-color: var(--highlight-color);
}
/* Switch container */
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 26px;
}
/* Hide native checkbox */
.switch input {
opacity: 0;
width: 0;
height: 0;
}
/* Slider background */
.slider-text {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
border-radius: 26px;
transition: background-color 0.3s;
display: flex !important;
align-items: center;
justify-content: flex-end; /* default: OFF on the right */
padding: 0 8px;
font-size: 12px;
font-weight: bold;
color: #fff;
}
/* Circle */
.slider-text::before {
content: "";
position: absolute;
height: 22px;
width: 22px;
left: 2px;
top: 2px;
background-color: white;
border-radius: 50%;
transition: transform 0.3s;
}
/* Checked: move dot, change background and text alignment */
.switch input:checked + .slider-text {
background-color: #4CAF50;
justify-content: flex-start;
}
/* Dot animation */
.switch input:checked + .slider-text::before {
transform: translateX(34px);
}
/* Status label */
.status-label {
font-size: 12px;
color: #888;
min-width: 28px;
text-align: left;
}
.details {
color: white;
text-decoration: none;
}
.yellow-row {
max-width:250px;
display: flex;
align-items: flex-start;
box-sizing: border-box;
margin: 0px;
width: 100%;
padding: 0 20px;
}
.yellow-box {
background-color: var(--highlight-color);
color: black;
text-align: left;
margin: 0px;
padding: 10px 18px;
border-radius: 20px 20px 0px 20px;
font-weight: bold;
font-size: 12px;
}
.yellow-corner {
padding:0px;
border: 0px;
display: flex;
margin: 0px;
margin-top: auto;
align-items: flex-end;
}
.main {
flex: 1;
padding: 30px;
display: flex;
flex-direction: column;
overflow-y: auto;
}
#appsContainer {
display: flex;
flex-wrap: wrap;
gap: 16px;
padding: 0px;
}
.app {
border: 1px solid #41464f;
border-radius: 15px;
text-align: left;
padding: 20px;
width: 130px;
min-height: 200px;
text-align: left;
display: flex;
flex-direction: column;
align-items: left;
}
.app-img {
padding: 0px;
}
.app img {
border-radius: 15px;
background-color: #101214;
width: 70px;
height: 70px;
object-fit: contain;
margin-bottom: 20px;
padding: 30px;
}
.app-label {
font-size: 10px;
color: #cccccc;
margin-bottom: 10px;
align-items: left;
text-align: left;
}
.app-name {
font-size: 16px;
font-weight: bold;
margin-bottom: 30px;
}
.more-btn {
background-color: inherit;
color: #cccccc;
border: 1px solid #cccccc;
border-radius: 15px;
padding: 18px;
font-size: 16px;
font-weight: 400;
cursor: pointer;
width: 100%;
font-weight: bold;
}
.more-btn:hover {
color: var(--highlight-color);
border: 1px solid var(--highlight-color);
}
.app-details {
padding: 0px 50px;
}
.app-fields {
border: 1px solid #41464f;
border-radius: 15px;
text-align: left;
padding: 20px;
margin: 30px 0px 10px 0px;
display: flex;
flex-direction: column;
align-items: left;
}
.app-fields .row {
display: block;
justify-content: space-between;
align-items: center;
padding: 5px 20px;
border-radius: 10px;
gap: 10px;
}
#letsencrypt {
padding-top: 20px;
}
.header-block {
display: flex;
justify-content: space-between;
align-items: flex-start;
padding: 20px 0px;
}
.logo-and-text {
display: flex;
align-items: flex-start;
gap: 16px;
}
.applogo img {
border-radius: 15px;
background-color: #101214;
width: 70px;
height: 70px;
object-fit: contain;
padding: 40px;
}
.text-content {
display: flex;
flex-direction: column;
}
.title {
font-size: 28px;
font-weight: bold;
margin: 0;
}
.subtitle {
font-size: 18px;
margin: 4px 0;
color: #999;
}
.description {
font-size: 16px;
margin: 20px 0 0;
color: #999;
line-height: 1.5;
}
.notification-btn {
background-color: var(--highlight-color);
color: black;
border: none;
padding: 10px 20px;
border-radius: 10px;
cursor: pointer;
font-weight: bold;
display: flex;
align-items: center;
gap: 10px;
}
.main-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
}
.main-header h1 {
margin: 0;
font-size: 28px;
}
.main-header button {
background-color: var(--highlight-color);
color: black;
border: none;
padding: 10px 20px;
border-radius: 10px;
cursor: pointer;
font-weight: bold;
display: flex;
align-items: center;
gap: 10px;
}
.input-row, .input-group {
display: flex;
justify-content: space-between;
align-items: center;
border: 1px solid #41464f;
padding: 15px 20px;
margin-bottom: 15px;
border-radius: 10px;
gap: 10px;
}
.input-container {
display: flex;
align-items: center;
gap: 5px;
flex: 1;
justify-content: flex-end;
position: relative;
}
.input-row input,
.input-row select,
.row input,
.row select {
background: transparent;
border: 1px solid #41464f;
padding: 8px 30px 8px 8px;
border-radius: 10px;
color: white;
transition: color 0.2s;
max-width: 40%;
box-sizing: border-box;
}
.row input,
.row select {
padding: 12px 30px 12px 12px;
font-size: 16px;
}
.input-row input:focus,
.input-row select:focus,
.row input,
.row select {
outline: none;
background-color: black;
color: var(--highlight-color);
}
.input-row select,
.row select {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5-5 5 5zM7 14l5 5 5-5z"/></svg>');
background-repeat: no-repeat;
background-position: right 8px center;
background-size: 16px;
padding-right: 32px;
}
.info-container {
position: relative;
left: -18px;
top: -22px;
display: inline-block;
font-family: Arial, sans-serif;
margin: 0px;
width: 0px;
}
.info-icon {
background-color: var(--highlight-color);
color: black;
border-radius: 50%;
padding: 1px 4px;
cursor: pointer;
font-weight: bold;
font-size: 10px;
text-align: center;
line-height: 1;
display: inline-block;
}
.tooltip {
visibility: hidden;
background-color: #333;
border-radius: 5px;
padding: 4px 8px;
position: absolute;
z-index: 1;
bottom: 100%; /* above the icon */
left: 50%;
transform: translateX(-78%);
opacity: 0;
transition: opacity 0.3s;
/*white-space: nowrap;*/
text-align: right;
width: 300px;
}
.tooltip::after {
content: "";
position: absolute;
top: 100%; /* bottom of tooltip */
left: 80%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #333 transparent transparent transparent;
}
.info-container:hover .tooltip {
visibility: visible;
opacity: 1;
}
.clear-btn {
position: absolute;
right: 8px;
background: transparent;
border: none;
color: white;
cursor: pointer;
font-size: 16px;
padding: 0;
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
user-select: none;
}
.save-button {
background-color: var(--highlight-color);
color: black;
border: none;
padding: 15px 30px;
font-size: 16px;
border-radius: 10px;
font-weight: bold;
cursor: pointer;
margin-top: 30px;
align-self: flex-start;
}
.save-button:hover {
background-color: #f5c300;
}
.buttons .btn {
background-color: black;
border: 1px solid #999;
color: #999;
padding: 10px 15px;
font-size: 14px;
border-radius: 5px;
font-weight: bold;
cursor: pointer;
margin-top: 10px;
align-self: flex-start;
}
.buttons .btn:hover {
border: 1px solid #f5c300;
color: #f5c300;
}
.hidden {
display: none;
}
.popup {
width: 100%;
}
.popup-content {
width: 100%;
text-align: left;
}
#popup .row {
display: flex;
}
@media (max-width: 768px) {
.sidebar {
width: 80px;
padding: 20px 5px;
}
.logo {
font-size: 0;
}
.logo span {
display: none;
}
.menu-item {
justify-content: center;
gap: 0;
}
.menu-item span {
display: none;
}
.yellow-box {
font-size: 0;
padding: 10px;
}
.input-row {
flex-direction: column;
align-items: flex-start;
}
.input-container {
width: 100%;
justify-content: flex-start;
}
.input-row input,
.input-row select {
max-width: 100%;
}
}