feat(cloudron): add tirreno package artifacts
- Add CloudronStack/output/CloudronPackages-Artifacts/tirreno/ directory and its contents - Includes package manifest, Dockerfile, source code, documentation, and build artifacts - Add tirreno-1761840148.tar.gz as a build artifact - Add tirreno-cloudron-package-1761841304.tar.gz as the Cloudron package - Include all necessary files for the tirreno Cloudron package This adds the complete tirreno Cloudron package artifacts to the repository.
This commit is contained in:
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Tirreno ~ Open source user analytics
|
||||
* Copyright (c) Tirreno Technologies Sàrl (https://www.tirreno.com)
|
||||
*
|
||||
* Licensed under GNU Affero General Public License version 3 of the or any later version.
|
||||
* For full copyright and license information, please see the LICENSE
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @copyright Copyright (c) Tirreno Technologies Sàrl (https://www.tirreno.com)
|
||||
* @license https://opensource.org/licenses/AGPL-3.0 AGPL License
|
||||
* @link https://www.tirreno.com Tirreno(tm)
|
||||
*/
|
||||
|
||||
namespace Controllers\Admin\ISP;
|
||||
|
||||
class Data extends \Controllers\Base {
|
||||
use \Traits\ApiKeys;
|
||||
|
||||
public function checkIfOperatorHasAccess(int $ispId): bool {
|
||||
$apiKey = $this->getCurrentOperatorApiKeyId();
|
||||
$model = new \Models\Isp();
|
||||
|
||||
return $model->checkAccess($ispId, $apiKey);
|
||||
}
|
||||
|
||||
public function getFullIspInfoById(int $ispId): array {
|
||||
$apiKey = $this->getCurrentOperatorApiKeyId();
|
||||
$model = new \Models\Isp();
|
||||
$result = $model->getFullIspInfoById($ispId, $apiKey);
|
||||
$result['lastseen'] = \Utils\ElapsedDate::short($result['lastseen']);
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
private function getNumberOfIpsByIspId(int $ispId): int {
|
||||
$apiKey = $this->getCurrentOperatorApiKeyId();
|
||||
$model = new \Models\Isp();
|
||||
|
||||
return $model->getIpCountById($ispId, $apiKey);
|
||||
}
|
||||
|
||||
public function getIspDetails(int $ispId): array {
|
||||
$result = [];
|
||||
$data = $this->getFullIspInfoById($ispId);
|
||||
|
||||
if (array_key_exists('asn', $data)) {
|
||||
$result = [
|
||||
'asn' => $data['asn'],
|
||||
'total_fraud' => $data['total_fraud'],
|
||||
'total_visit' => $data['total_visit'],
|
||||
'total_account' => $data['total_account'],
|
||||
'total_ip' => $this->getNumberOfIpsByIspId($ispId),
|
||||
];
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Tirreno ~ Open source user analytics
|
||||
* Copyright (c) Tirreno Technologies Sàrl (https://www.tirreno.com)
|
||||
*
|
||||
* Licensed under GNU Affero General Public License version 3 of the or any later version.
|
||||
* For full copyright and license information, please see the LICENSE
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @copyright Copyright (c) Tirreno Technologies Sàrl (https://www.tirreno.com)
|
||||
* @license https://opensource.org/licenses/AGPL-3.0 AGPL License
|
||||
* @link https://www.tirreno.com Tirreno(tm)
|
||||
*/
|
||||
|
||||
namespace Controllers\Admin\ISP;
|
||||
|
||||
class Navigation extends \Controllers\Base {
|
||||
use \Traits\ApiKeys;
|
||||
use \Traits\Navigation;
|
||||
|
||||
public function showIndexPage(): void {
|
||||
$this->redirectIfUnlogged();
|
||||
|
||||
$pageController = new Page();
|
||||
$this->response = new \Views\Frontend();
|
||||
$this->response->data = $pageController->getPageParams();
|
||||
}
|
||||
|
||||
public function getIspDetails(): array {
|
||||
$dataController = new Data();
|
||||
$ispId = $this->f3->get('REQUEST.ispId');
|
||||
$hasAccess = $dataController->checkIfOperatorHasAccess($ispId);
|
||||
|
||||
if (!$hasAccess) {
|
||||
$this->f3->error(404);
|
||||
}
|
||||
|
||||
return $dataController->getIspDetails($ispId);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Tirreno ~ Open source user analytics
|
||||
* Copyright (c) Tirreno Technologies Sàrl (https://www.tirreno.com)
|
||||
*
|
||||
* Licensed under GNU Affero General Public License version 3 of the or any later version.
|
||||
* For full copyright and license information, please see the LICENSE
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @copyright Copyright (c) Tirreno Technologies Sàrl (https://www.tirreno.com)
|
||||
* @license https://opensource.org/licenses/AGPL-3.0 AGPL License
|
||||
* @link https://www.tirreno.com Tirreno(tm)
|
||||
*/
|
||||
|
||||
namespace Controllers\Admin\ISP;
|
||||
|
||||
class Page extends \Controllers\Pages\Base {
|
||||
public $page = 'AdminIsp';
|
||||
|
||||
public function getPageParams(): array {
|
||||
$dataController = new Data();
|
||||
$ispId = $this->integerParam($this->f3->get('PARAMS.ispId'));
|
||||
$hasAccess = $dataController->checkIfOperatorHasAccess($ispId);
|
||||
|
||||
if (!$hasAccess) {
|
||||
$this->f3->error(404);
|
||||
}
|
||||
|
||||
$isp = $dataController->getFullIspInfoById($ispId);
|
||||
$pageTitle = $this->getInternalPageTitleWithPostfix(strval($isp['asn']));
|
||||
|
||||
$pageParams = [
|
||||
'LOAD_DATATABLE' => true,
|
||||
'LOAD_JVECTORMAP' => true,
|
||||
'LOAD_AUTOCOMPLETE' => true,
|
||||
'HTML_FILE' => 'admin/isp.html',
|
||||
'ISP' => $isp,
|
||||
'PAGE_TITLE' => $pageTitle,
|
||||
'LOAD_UPLOT' => true,
|
||||
'LOAD_ACCEPT_LANGUAGE_PARSER' => true,
|
||||
'JS' => 'admin_isp.js',
|
||||
];
|
||||
|
||||
return parent::applyPageParams($pageParams);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
<?php
|
||||
|
||||
//
|
||||
Reference in New Issue
Block a user