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:
2025-10-30 11:43:06 -05:00
parent 0ce353ea9d
commit 91d52d2de5
1692 changed files with 202851 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?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 Models\Grid\Logbook;
class Grid extends \Models\Grid\Base\Grid {
public function __construct(int $apiKey) {
parent::__construct();
$this->apiKey = $apiKey;
$this->idsModel = new Ids($apiKey);
$this->query = new Query($apiKey);
}
public function getAllLogbookEvents() {
return $this->getGrid();
}
}

View File

@@ -0,0 +1,19 @@
<?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 Models\Grid\Logbook;
class Ids extends \Models\Grid\Base\Ids {
}

View File

@@ -0,0 +1,110 @@
<?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 Models\Grid\Logbook;
class Query extends \Models\Grid\Base\Query {
protected $defaultOrder = 'event_logbook.error_type DESC, event_logbook.id DESC';
protected $dateRangeField = 'event_logbook.started';
protected $allowedColumns = ['ip', 'started', 'error_type', 'error_text'];
public function getData(): array {
$queryParams = $this->getQueryParams();
$query = (
'SELECT
event_logbook.id,
event_logbook.ip,
event_logbook.error_type,
event_logbook.error_text,
event_logbook.raw,
event_logbook.started,
event_error_type.name AS error_name,
event_error_type.value AS error_value
FROM
event_logbook
LEFT JOIN event_error_type
ON (event_logbook.error_type = event_error_type.id)
WHERE
event_logbook.key = :api_key
%s'
);
$this->applySearch($query, $queryParams);
$this->applyOrder($query);
$this->applyLimit($query, $queryParams);
return [$query, $queryParams];
}
public function getTotal(): array {
$queryParams = $this->getQueryParams();
$query = (
'SELECT
COUNT(event_logbook.id) AS count
FROM
event_logbook
LEFT JOIN event_error_type
ON (event_logbook.error_type = event_error_type.id)
WHERE
event_logbook.key = :api_key
%s'
);
$this->applySearch($query, $queryParams);
return [$query, $queryParams];
}
private function applySearch(string &$query, array &$queryParams): void {
//Add dates into request
$this->applyDateRange($query, $queryParams);
$search = $this->f3->get('REQUEST.search');
$searchConditions = '';
if (is_array($search) && isset($search['value']) && is_string($search['value']) && $search['value'] !== '') {
$extra = '';
//TODO: use isIp function here
if (filter_var($search['value'], FILTER_VALIDATE_IP) !== false) {
$extra = ' event_logbook.ip = :search_ip_value OR ';
$queryParams[':search_ip_value'] = $search['value'];
}
$searchConditions .= (
" AND
(
$extra
LOWER(event_logbook.raw::text) LIKE LOWER(:search_value) OR
LOWER(event_logbook.error_text) LIKE LOWER(:search_value) OR
LOWER(event_error_type.name) LIKE LOWER(:search_value)
)"
);
$queryParams[':search_value'] = '%' . $search['value'] . '%';
}
//Add search and ids into request
$query = sprintf($query, $searchConditions);
}
}