mirror of
https://github.com/nextcloud/nextcloudpi.git
synced 2025-08-16 16:47:58 +00:00
336 lines
12 KiB
PHP
336 lines
12 KiB
PHP
<?php
|
|
/*
|
|
NextcloudPi Web Panel frontend
|
|
|
|
Copyleft 2017 by Ignacio Nunez Hernanz <nacho _a_t_ ownyourbits _d_o_t_ com>
|
|
GPL licensed (see end of file) * Use at your own risk!
|
|
|
|
More at https://ownyourbits.com/2017/02/13/nextcloud-ready-raspberry-pi-image/
|
|
|
|
**/
|
|
ob_start();
|
|
|
|
// check for encrypted data to present unlock dialog
|
|
exec("bash -c 'source /usr/local/etc/library.sh; needs_decrypt'", $output, $ret);
|
|
if ($ret == 0) {
|
|
header("Location: /decrypt");
|
|
exit();
|
|
}
|
|
|
|
// redirect to activation first time
|
|
exec("a2query -s ncp-activation", $output, $ret);
|
|
if ($ret == 0) {
|
|
header("Location: /activate");
|
|
exit();
|
|
}
|
|
|
|
ini_set('session.cookie_httponly', 1);
|
|
if (isset($_SERVER['HTTPS']))
|
|
ini_set('session.cookie_secure', 1);
|
|
session_start();
|
|
|
|
include('elements.php');
|
|
$modules_path = '/usr/local/etc/ncp-config.d/';
|
|
$l10nDir = "l10n";
|
|
|
|
// security headers
|
|
header("Content-Security-Policy: default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self'; object-src 'self';");
|
|
header("X-XSS-Protection: 1; mode=block");
|
|
header("X-Content-Type-Options: nosniff");
|
|
header("X-Robots-Tag: none");
|
|
header("X-Permitted-Cross-Domain-Policies: none");
|
|
header("X-Frame-Options: DENY");
|
|
header("Cache-Control: no-cache");
|
|
header('Pragma: no-cache');
|
|
header('Expires: -1');
|
|
|
|
// HTTP2 push headers
|
|
header("Link: </js/minified.js>; rel=preload; as=script;,</js/ncp.js>; rel=preload; as=script;,</css/ncp.css>; rel=preload; as=style;,</img/ncp-logo.svg>; rel=preload; as=image;, </img/loading-small.gif>; rel=preload; as=image;, rel=preconnect href=ncp-launcher.php;");
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html class="ng-csp" data-placeholder-focus="false" lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>NextcloudPi Panel</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
<meta name="referrer" content="never">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<link rel="icon" type="image/png" href="img/favicon.png"/>
|
|
<link rel="stylesheet" href="css/ncp.css">
|
|
</head>
|
|
<body id="body-user">
|
|
<?php
|
|
require("L10N.php");
|
|
try {
|
|
$l = new L10N($_SERVER["HTTP_ACCEPT_LANGUAGE"], $l10nDir, $modules_path);
|
|
} catch (Exception $e) {
|
|
die("<p class='error'>Error while loading localizations!</p>");
|
|
}
|
|
?>
|
|
<noscript>
|
|
<div id="nojavascript">
|
|
<div>
|
|
<?php sprintf($l->__("This application requires JavaScript for correct operation. Please %s enable JavaScript %s and reload the page."),
|
|
"<a href=\"http://enable-javascript.com/\" target=\"_blank\" rel=\"noreferrer\">", "</a>"); ?>
|
|
</div>
|
|
</div>
|
|
</noscript>
|
|
<div id="notification-container">
|
|
<?php
|
|
exec("ncp-test-updates", $output, $ret);
|
|
if ($ret == 0) {
|
|
$version = "v0.0.0";
|
|
$ver_file = '/var/run/.ncp-latest-version';
|
|
if (file_exists($ver_file))
|
|
$version = file_get_contents($ver_file);
|
|
echo '<div id="notification">';
|
|
echo '<div id="update-notification" class="row type-error closeable">';
|
|
echo "version " . $version . " is available";
|
|
echo '<a class="action close icon-close" href="#" alt="Dismiss"></a>';
|
|
echo '</div>';
|
|
echo '</div>';
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
<?php
|
|
if (file_exists('wizard') && !file_exists('wizard.cfg')) {
|
|
echo <<<HTML
|
|
<div id="first-run-wizard">
|
|
<div class='dialog'>
|
|
<br><br>
|
|
<h2 id="config-box-title">NextcloudPi First Run</h2>
|
|
<p>Click to start the configuration wizard</p>
|
|
<br>
|
|
<a href="wizard"><img class="wizard-btn" src="wizard/img/ncp-logo.svg" class="wizard"></a>
|
|
<br>
|
|
<a href="wizard"> <button type="button" class="wizard-btn" id="go-wizard">{$l->__("run")} </button></a>
|
|
<button type="button" class="first-run-close" id="skip-wizard" >{$l->__("skip")} </button>
|
|
<button type="button" class="first-run-close close-dialog-x">{$l->__("close")}</button>
|
|
<br><br>
|
|
</div>
|
|
</div>
|
|
HTML;
|
|
touch('wizard.cfg');
|
|
}
|
|
?>
|
|
|
|
<div id="confirmation-dialog" class="hidden">
|
|
<div class='dialog'>
|
|
<br><br>
|
|
<h2 id="config-box-title">Are you sure?</h2>
|
|
<br>
|
|
<p>Click OK to confirm this operation</p>
|
|
<br>
|
|
<button type="button" id="confirmation-dialog-ok"> OK </button>
|
|
<button type="button" class="confirmation-dialog-close"> Cancel </button>
|
|
<button type="button" class="confirmation-dialog-close close-dialog-x">Close</button>
|
|
<br><br>
|
|
</div>
|
|
</div>
|
|
|
|
<header role="banner"><div id="header">
|
|
<div id="header-left">
|
|
<a href="https://nextcloudpi.com" id="nextcloudpi" target="_blank" tabindex="1">
|
|
<div class="logo-icon">
|
|
<h1 class="hidden-visually">NextcloudPi</h1>
|
|
</div>
|
|
</a>
|
|
<a id=versionlink target="_blank" href="https://github.com/nextcloud/nextcloudpi/blob/master/changelog.md">
|
|
<?php
|
|
$version = "v0.0.0";
|
|
$ver_file = "/usr/local/etc/ncp-version";
|
|
if (file_exists($ver_file))
|
|
$version = file_get_contents($ver_file);
|
|
echo $version;
|
|
?>
|
|
</a>
|
|
<?php
|
|
// language selection drop
|
|
$selected_lang=$l->load_language_setting();
|
|
|
|
$fh = fopen('langs.cfg', 'r');
|
|
echo "<select id=\"language-selection\" name=\"language-selection\">";
|
|
while ($line = fgets($fh)) {
|
|
echo "<option value='" . $line . "' ";
|
|
if( $line == $selected_lang )
|
|
echo "selected='selected'";
|
|
echo ">". $line ."</option>";
|
|
}
|
|
echo "<option value=\"[new]\">new..</option>";
|
|
echo "</select>";
|
|
fclose($fh);
|
|
?>
|
|
</div>
|
|
<div id="header-right">
|
|
<div id="search-btn" title="<?php echo $l->__("Search"); ?>">
|
|
<div class="expand search-div">
|
|
<div class="icon-search"></div>
|
|
|
|
<input type="text" id="search-box" placeholder="find ncp-app" size="40">
|
|
</div>
|
|
</div>
|
|
<a href="https://nextcloudpi.com/" id="nextcloud-btn" target="_blank" tabindex="1" title="<?php echo $l->__("Launch Nextcloud"); ?>">
|
|
<div id="nc-button">
|
|
<div class="expand">
|
|
<div class="icon-nc-white"></div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
<div id="dashboard-btn" title="<?php echo $l->__("View System Info"); ?>">
|
|
<div class="expand">
|
|
<div class="icon-dashboard"></div>
|
|
</div>
|
|
</div>
|
|
<div id="backups-btn" title="<?php echo $l->__("Backups and snapshots"); ?>">
|
|
<div class="expand">
|
|
<div class="icon-backups"></div>
|
|
</div>
|
|
</div>
|
|
<div id="config-btn" title="<?php echo $l->__("Nextcloud Configuration"); ?>">
|
|
<div class="expand">
|
|
<div class="icon-config"></div>
|
|
</div>
|
|
</div>
|
|
<div id="logs-btn" title="<?php echo $l->__("Logs"); ?>">
|
|
<div class="expand">
|
|
<div class="icon-logs"></div>
|
|
</div>
|
|
</div>
|
|
<a href="wizard" title="<?php echo $l->__("NextcloudPi Wizard"); ?>">
|
|
<div class="wizard-btn">
|
|
<div class="expand">
|
|
<div class="icon-wizard-white"></div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
<a href="https://docs.nextcloudpi.com/" target="_blank" tabindex="1" title="<?php echo $l->__("NextcloudPi Wiki"); ?>">
|
|
<div id="nc-button">
|
|
<div class="expand">
|
|
<div class="icon-nc-info"></div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
<?php
|
|
// Skip section in docker container
|
|
if ( !file_exists( '/.docker-image' ) )
|
|
echo <<<HTML
|
|
<div id="poweroff" title="{$l->__("Power Off")}">
|
|
<div class="expand">
|
|
<div class="icon-power-white"></div>
|
|
</div>
|
|
</div>
|
|
HTML
|
|
?>
|
|
</div>
|
|
</header>
|
|
|
|
<div id="content-wrapper">
|
|
<div id="content" class="app-files" role="main">
|
|
<div id='overlay' class="hidden"></div>
|
|
<div id="app-navigation">
|
|
<div id="ncp-options">
|
|
<?php echo print_sidebar($l, false); ?>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="app-content">
|
|
<div id="app-navigation-toggle" class="icon-menu hidden"></div>
|
|
|
|
<div id="config-wrapper">
|
|
<?php echo print_config_forms($l); ?>
|
|
</div>
|
|
|
|
<div id="dashboard-wrapper" class="content-box <?php if(array_key_exists('app',$_GET) && $_GET['app'] != 'dashboard') echo 'hidden';?>">
|
|
<h2 class="text-title"><?php echo $l->__("System Info"); ?></h2>
|
|
<div id="dashboard-suggestions" class="table-wrapper"></div>
|
|
<div id="dashboard-table" class="outputbox table-wrapper"></div>
|
|
<div id="loading-info-gif" class="loading-section-gif"> <img src="img/loading-small.gif"> </div>
|
|
</div>
|
|
|
|
<div id="backups-wrapper" class="content-box <?php if(!array_key_exists('app',$_GET) || (array_key_exists('app',$_GET) && $_GET['app'] != 'backups')) echo 'hidden';?>">
|
|
<h2 class="text-title"><?php echo $l->__("Backups"); ?></h2>
|
|
<div id="backups-content" class="table-wrapper"></div>
|
|
<div id="loading-backups-gif" class="loading-section-gif"> <img src="img/loading-small.gif"> </div>
|
|
</div>
|
|
|
|
<div id="nc-config-wrapper" class="content-box <?php if(!array_key_exists('app',$_GET) || (array_key_exists('app',$_GET) && $_GET['app'] != 'config')) echo 'hidden';?>">
|
|
<h2 class="text-title"><?php echo $l->__("Nextcloud configuration"); ?></h2>
|
|
<div id="nc-config-box" class="table-wrapper">
|
|
<?php
|
|
// print Nextcloud config table
|
|
include( '/var/www/nextcloud/config/config.php' );
|
|
|
|
echo '<table class="dashtable">';
|
|
foreach ( $CONFIG as $key => $val )
|
|
{
|
|
echo '<tr>';
|
|
if ( gettype( $val ) == "array" )
|
|
{
|
|
echo "<td>$key</td>";
|
|
echo "<td><table>";
|
|
foreach ( $val as $k => $v )
|
|
echo "<tr><td>$k</td><td class=\"val-field\">$v</td></tr>";
|
|
echo '</table></td>';
|
|
}
|
|
else
|
|
echo "<td>$key</td><td class=\"val-field\">$val</td>";
|
|
echo '</tr>';
|
|
}
|
|
echo '</table>';
|
|
?>
|
|
</div>
|
|
</div>
|
|
<div id="logs-wrapper" class="content-box <?php if(!array_key_exists('app',$_GET) || (array_key_exists('app',$_GET) && $_GET['app'] != 'logs')) echo 'hidden';?>">
|
|
<h2 class="text-title"><?php echo $l->__("NextcloudPi logs"); ?></h2>
|
|
<div id="logs-content" class="table-wrapper">
|
|
<div id="logs-details-box" class="outputbox"><?php echo str_replace(array("\r\n", "\n", "\r"), '<br/>', file_get_contents('/var/log/ncp.log')) ?></div>
|
|
<div id="log-download-btn-wrapper"><input id="log-download-btn" type="button" value="Download"/></div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="poweroff-dialog" class='dialog primary hidden'>
|
|
<div id='poweroff-option_shutdown' class='button big-button'>
|
|
<img class="wizard-btn" src="img/poweroff.svg"> shut down
|
|
</div>
|
|
<div id='poweroff-option_reboot' class='button big-button'>
|
|
<img class="wizard-btn" src="img/reboot.svg"> reboot
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
include('csrf.php');
|
|
echo '<input type="hidden" id="csrf-token" name="csrf-token" value="' . getCSRFToken() . '"/>';
|
|
echo '<input type="hidden" id="csrf-token-ui" name="csrf-token-ui" value="' . getCSRFToken() . '"/>';
|
|
echo '<input type="hidden" id="csrf-token-dl" name="csrf-token-dl" value="' . getCSRFToken() . '"/>';
|
|
echo '<input type="hidden" id="csrf-token-cfg" name="csrf-token-cfg" value="' . getCSRFToken() . '"/>';
|
|
?>
|
|
<script src="js/minified.js"></script>
|
|
<script src="js/ncp.js"></script>
|
|
</body>
|
|
</html>
|
|
|
|
<!--
|
|
License
|
|
|
|
This script is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This script is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this script; if not, write to the
|
|
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
Boston, MA 02111-1307 USA
|
|
-->
|