forked from nextcloud/serverinfo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
183 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<?php | ||
/** | ||
* @copyright Copyright (c) 2016 Bjoern Schiessle <[email protected]> | ||
* | ||
* @license GNU AGPL version 3 or any later version | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program 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 Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
|
||
namespace OCA\ServerInfo\Settings; | ||
|
||
|
||
use OCP\IL10N; | ||
use OCP\Settings\ISection; | ||
|
||
class AdminSection implements ISection { | ||
|
||
/** @var IL10N */ | ||
private $l; | ||
|
||
public function __construct(IL10N $l) { | ||
$this->l = $l; | ||
} | ||
|
||
/** | ||
* returns the ID of the section. It is supposed to be a lower case string | ||
* | ||
* @returns string | ||
*/ | ||
public function getID() { | ||
return 'serverinfo'; | ||
} | ||
|
||
/** | ||
* returns the translated name as it should be displayed, e.g. 'LDAP / AD | ||
* integration'. Use the L10N service to translate it. | ||
* | ||
* @return string | ||
*/ | ||
public function getName() { | ||
return $this->l->t('Server Info'); | ||
} | ||
|
||
/** | ||
* @return int whether the form should be rather on the top or bottom of | ||
* the settings navigation. The sections are arranged in ascending order of | ||
* the priority values. It is required to return a value between 0 and 99. | ||
* | ||
* keep the server setting at the top, right after "server settings" | ||
*/ | ||
public function getPriority() { | ||
return 0; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<?php | ||
/** | ||
* @copyright Copyright (c) 2016 Bjoern Schiessle <[email protected]> | ||
* | ||
* @license GNU AGPL version 3 or any later version | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program 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 Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
|
||
namespace OCA\ServerInfo\Settings; | ||
|
||
|
||
use OCP\AppFramework\Http\TemplateResponse; | ||
use OCP\IL10N; | ||
use OCP\IURLGenerator; | ||
use OCP\Settings\ISettings; | ||
|
||
class AdminSettings implements ISettings { | ||
|
||
|
||
/** @var IL10N */ | ||
private $l; | ||
|
||
/** @var IURLGenerator */ | ||
private $urlGenerator; | ||
|
||
/** | ||
* Admin constructor. | ||
* | ||
* @param IL10N $l | ||
* @param IURLGenerator $urlGenerator | ||
*/ | ||
public function __construct(IL10N $l, IURLGenerator $urlGenerator) { | ||
$this->l = $l; | ||
$this->urlGenerator = $urlGenerator; | ||
} | ||
|
||
/** | ||
* @return TemplateResponse | ||
*/ | ||
public function getForm() { | ||
$monitoringEndPoint = $this->urlGenerator->getAbsoluteURL('ocs/v2.php/apps/serverinfo/api/v1/info'); | ||
$params = ['ocs' => $monitoringEndPoint]; | ||
|
||
return new TemplateResponse('serverinfo', 'settings-admin', $params); | ||
} | ||
|
||
/** | ||
* @return string the section ID, e.g. 'sharing' | ||
*/ | ||
public function getSection() { | ||
return 'serverinfo'; | ||
} | ||
|
||
/** | ||
* @return int whether the form should be rather on the top or bottom of | ||
* the admin section. The forms are arranged in ascending order of the | ||
* priority values. It is required to return a value between 0 and 100. | ||
* | ||
* keep the server setting at the top, right after "server settings" | ||
*/ | ||
public function getPriority() { | ||
return 0; | ||
} | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,32 @@ | ||
<?php | ||
/** | ||
* @copyright Copyright (c) 2016 Bjoern Schiessle <[email protected]> | ||
* | ||
* @license GNU AGPL version 3 or any later version | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program 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 Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
|
||
script('serverinfo', 'script'); | ||
script('serverinfo', 'smoothie'); | ||
script('serverinfo', 'Chart.min'); | ||
|
||
style('serverinfo', 'style'); | ||
?> | ||
|
||
<div class="section" id="cpuSection"> | ||
<h2><?php p($l->t('CPU load'));?></h2> | ||
<canvas id="cpuloadcanvas" width="600" height="150"></canvas> | ||
|
@@ -41,6 +70,4 @@ | |
<h2><?php p($l->t('External monitoring tool'));?></h2> | ||
<p> | ||
<?php p($l->t('You can connect a external monitoring tool by using this end point: ') . $_['ocs']);?> | ||
|
||
|
||
</div> |