- 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.
120 lines
4.1 KiB
PHP
120 lines
4.1 KiB
PHP
<?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 LocalhostIp extends \Models\Enrichment\Base {
|
|
protected string $ip; // ipvanyaddress
|
|
protected int $country = 0;
|
|
protected ?int $asn = 0;
|
|
protected string $name = 'Local area network';
|
|
protected ?string $description = null;
|
|
protected bool $checked = true;
|
|
protected ?int $isp;
|
|
|
|
public function __construct() {
|
|
// empty
|
|
}
|
|
|
|
public function init(array $data): void {
|
|
$this->ip = $data['value'];
|
|
|
|
if (!$this->validateIP($this->ip) || $data['error'] !== \Utils\Constants::get('ENRICHMENT_IP_IS_BOGON')) {
|
|
throw new \Exception('Validation failed');
|
|
}
|
|
}
|
|
|
|
public function prepareUpdate(): array {
|
|
$params = $this->queryParams();
|
|
unset($params[':ip']);
|
|
|
|
// 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
|
|
$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'];
|
|
$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'],
|
|
];
|
|
$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);
|
|
}
|
|
}
|