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,155 @@
<?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\Enrichment;
class Ip extends \Models\Enrichment\Base {
protected string $ip; // ipvanyaddress
protected string $country;
protected ?int $asn;
protected ?string $name;
protected bool $hosting;
protected bool $vpn;
protected bool $tor;
protected bool $relay;
protected bool $starlink;
protected ?string $description;
protected bool $blocklist;
protected array $domains_count; // list[str]
protected string $cidr; // ipvanynetwork
protected ?bool $alert_list;
protected bool $checked = true;
protected ?int $isp;
public function __construct() {
// empty
}
public function init(array $data): void {
$this->ip = $data['ip'];
$this->country = $data['country'];
$this->asn = $data['asn'];
$this->name = $data['name'];
$this->hosting = $data['hosting'];
$this->vpn = $data['vpn'];
$this->tor = $data['tor'];
$this->relay = $data['relay'];
$this->starlink = $data['starlink'];
$this->description = $data['description'];
$this->blocklist = $data['blocklist'];
$this->domains_count = $data['domains_count'];
$this->cidr = $data['cidr'];
$this->alert_list = $data['alert_list'];
if (!$this->validateIP($this->ip) || !$this->validateCIDR($this->cidr)) {
throw new \Exception('Validation failed');
}
}
public function prepareUpdate(): array {
$params = $this->queryParams();
unset($params[':ip']);
$params[':domains_count'] = json_encode($params[':domains_count']);
$params[':data_center'] = $params[':hosting'];
unset($params[':hosting']);
// if new alert_list is null -- don't override
if ($params[':alert_list'] === null) {
unset($params[':alert_list']);
}
// set $params[':isp'] later
unset($params[':asn']);
unset($params[':name']);
unset($params[':description']);
$placeholders = array_keys($params);
$updateString = $this->updateStringByPlaceholders($placeholders);
return [$params, $updateString];
}
// TODO: update countries table counters
public function updateEntityInDb(int $entityId, int $apiKey): void {
$ipModel = new \Models\Ip();
$previousIpData = $ipModel->getFullIpInfoById($entityId);
$previousIspId = count($previousIpData) ? $previousIpData['ispid'] : null;
$previousCountryId = count($previousIpData) ? $previousIpData['country_id'] : 0;
// get current isp id
$this->name = $this->asn !== null ? $this->name : 'N/A';
$this->asn = $this->asn !== null ? $this->asn : 64496;
$ispModel = new \Models\Isp();
$newIspId = $ispModel->getIdByAsn($this->asn, $apiKey);
$newIspData = [
'asn' => $this->asn,
'name' => $this->name,
'description' => $this->description,
];
$newIspModel = new \Models\Enrichment\Isp();
$newIspModel->init($newIspData);
// new isp is not in db
if ($newIspId === null) {
$newIspData['lastseen'] = $previousIpData['lastseen'];
$newIspData['created'] = $previousIpData['created'];
$newIspId = $ispModel->insertRecord($newIspData, $apiKey);
} else {
$newIspModel->updateEntityInDb($newIspId, $apiKey);
}
$this->isp = $newIspId;
$countryModel = new \Models\Country();
$newCountryId = $countryModel->getCountryIdByIso($this->country);
$countryRecord = $countryModel->getCountryById($newCountryId, $apiKey);
if (!count($countryRecord)) {
$newCountryData = [
'id' => $newCountryId,
'lastseen' => $previousIpData['lastseen'],
'created' => $previousIpData['created'],
];
$countryModel->insertRecord($newCountryData, $apiKey);
}
// total_visit and total_account should remain still
[$params, $updateString] = $this->prepareUpdate();
$params[':country'] = $newCountryId;
$params[':entity_id'] = $entityId;
$params[':key'] = $apiKey;
$query = ("
UPDATE event_ip
SET {$updateString}
WHERE
event_ip.id = :entity_id AND
event_ip.key = :key
");
$model = new \Models\Ip();
$model->execQuery($query, $params);
// update totals only after event_ip update!
$ispIds = $this->slimIds([$previousIspId, $newIspId]);
$ispModel->updateTotalsByEntityIds($ispIds, $apiKey, true);
$countryIds = $this->slimIds([$previousCountryId, $newCountryId]);
$countryModel->updateTotalsByEntityIds($countryIds, $apiKey, true);
}
}