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,94 @@
|
||||
<?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\Home;
|
||||
|
||||
class Data extends \Controllers\Base {
|
||||
use \Traits\DateRange;
|
||||
|
||||
public function getChart(int $apiKey): array {
|
||||
$request = $this->f3->get('REQUEST');
|
||||
$mode = $request['mode'];
|
||||
$modelMap = \Utils\Constants::get('CHART_MODEL_MAP');
|
||||
|
||||
$model = array_key_exists($mode, $modelMap) ? new $modelMap[$mode]() : null;
|
||||
|
||||
return $model ? $model->getData($apiKey) : [[], []];
|
||||
}
|
||||
|
||||
public function getStat(int $apiKey): array {
|
||||
$request = $this->f3->get('REQUEST');
|
||||
$dateRange = $this->getDatesRange($request);
|
||||
$mode = $request['mode'];
|
||||
|
||||
$model = new \Models\Dashboard();
|
||||
|
||||
$result = [
|
||||
'total' => null,
|
||||
'allTimeTotal' => null,
|
||||
];
|
||||
|
||||
switch ($mode) {
|
||||
case 'totalEvents':
|
||||
$result['total'] = $model->getTotalEvents($dateRange, $apiKey);
|
||||
$result['allTimeTotal'] = $model->getTotalEvents(null, $apiKey);
|
||||
break;
|
||||
case 'totalUsers':
|
||||
$result['total'] = $model->getTotalUsers($dateRange, $apiKey);
|
||||
$result['allTimeTotal'] = $model->getTotalUsers(null, $apiKey);
|
||||
break;
|
||||
case 'totalIps':
|
||||
$result['total'] = $model->getTotalIps($dateRange, $apiKey);
|
||||
$result['allTimeTotal'] = $model->getTotalIps(null, $apiKey);
|
||||
break;
|
||||
case 'totalCountries':
|
||||
$result['total'] = $model->getTotalCountries($dateRange, $apiKey);
|
||||
$result['allTimeTotal'] = $model->getTotalCountries(null, $apiKey);
|
||||
break;
|
||||
case 'totalUrls':
|
||||
$result['total'] = $model->getTotalResources($dateRange, $apiKey);
|
||||
$result['allTimeTotal'] = $model->getTotalResources(null, $apiKey);
|
||||
break;
|
||||
case 'totalUsersForReview':
|
||||
$result['total'] = $model->getTotalUsersForReview($dateRange, $apiKey);
|
||||
$result['allTimeTotal'] = $model->getTotalUsersForReview(null, $apiKey);
|
||||
break;
|
||||
case 'totalBlockedUsers':
|
||||
$result['total'] = $model->getTotalBlockedUsers($dateRange, $apiKey);
|
||||
$result['allTimeTotal'] = $model->getTotalBlockedUsers(null, $apiKey);
|
||||
break;
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
public function getTopTen(int $apiKey): array {
|
||||
$params = $this->f3->get('GET');
|
||||
$dateRange = $this->getDatesRange($params);
|
||||
$mode = $params['mode'];
|
||||
$modelMap = \Utils\Constants::get('TOP_TEN_MODELS_MAP');
|
||||
|
||||
$model = array_key_exists($mode, $modelMap) ? new $modelMap[$mode]() : null;
|
||||
$data = $model ? $model->getList($apiKey, $dateRange) : [];
|
||||
$total = count($data);
|
||||
|
||||
return [
|
||||
'draw' => $params['draw'] ?? 1,
|
||||
'recordsTotal' => $total,
|
||||
'recordsFiltered' => $total,
|
||||
'data' => $data,
|
||||
];
|
||||
}
|
||||
}
|
||||
@@ -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\Home;
|
||||
|
||||
class Navigation extends \Controllers\Base {
|
||||
use \Traits\ApiKeys;
|
||||
use \Traits\Navigation;
|
||||
|
||||
public function showIndexPage(): void {
|
||||
$this->redirectIfUnlogged('/login');
|
||||
|
||||
$pageController = new Page();
|
||||
$this->response = new \Views\Frontend();
|
||||
$this->response->data = $pageController->getPageParams();
|
||||
}
|
||||
|
||||
public function getDashboardStat(): array {
|
||||
$apiKey = $this->getCurrentOperatorApiKeyId();
|
||||
|
||||
return $apiKey ? (new Data())->getStat($apiKey) : [];
|
||||
}
|
||||
|
||||
public function getTopTen(): array {
|
||||
$apiKey = $this->getCurrentOperatorApiKeyId();
|
||||
|
||||
return $apiKey ? (new Data())->getTopTen($apiKey) : [];
|
||||
}
|
||||
|
||||
public function getChart(): array {
|
||||
$apiKey = $this->getCurrentOperatorApiKeyId();
|
||||
|
||||
return $apiKey ? (new Data())->getChart($apiKey) : [];
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
<?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\Home;
|
||||
|
||||
class Page extends \Controllers\Pages\Base {
|
||||
public $page = 'AdminHome';
|
||||
|
||||
public function getPageParams(): array {
|
||||
$pageParams = [
|
||||
'LOAD_DATATABLE' => true,
|
||||
'LOAD_AUTOCOMPLETE' => true,
|
||||
'HTML_FILE' => 'admin/home.html',
|
||||
'JS' => 'admin_dashboard.js',
|
||||
];
|
||||
|
||||
return parent::applyPageParams($pageParams);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
<?php
|
||||
|
||||
//
|
||||
Reference in New Issue
Block a user