- 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.
169 lines
5.4 KiB
PHP
169 lines
5.4 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\Grid\Ips;
|
|
|
|
class Query extends \Models\Grid\Base\Query {
|
|
protected $defaultOrder = 'event_ip.lastseen DESC';
|
|
protected $dateRangeField = 'event_ip.lastseen';
|
|
|
|
protected $allowedColumns = ['ip', 'full_country', 'asn', 'netname', 'ip_type', 'total_visit', 'total_account', 'lastseen', 'id'];
|
|
|
|
public function getData(): array {
|
|
$queryParams = $this->getQueryParams();
|
|
|
|
$query = (
|
|
'SELECT
|
|
event_ip.id,
|
|
event_ip.ip,
|
|
event_ip.fraud_detected,
|
|
event_ip.alert_list,
|
|
event_ip.data_center,
|
|
event_ip.vpn,
|
|
event_ip.tor,
|
|
event_ip.relay,
|
|
event_ip.blocklist,
|
|
event_ip.starlink,
|
|
event_ip.shared AS total_account,
|
|
event_ip.total_visit,
|
|
event_ip.checked,
|
|
|
|
event_ip.lastseen AS lastseen,
|
|
|
|
event_isp.name AS netname,
|
|
event_isp.description,
|
|
event_isp.asn,
|
|
|
|
countries.id AS country_id,
|
|
countries.iso AS country_iso,
|
|
countries.value AS full_country
|
|
|
|
FROM
|
|
event_ip
|
|
|
|
LEFT JOIN countries
|
|
ON (event_ip.country = countries.id)
|
|
|
|
LEFT JOIN event_isp
|
|
ON (event_ip.isp = event_isp.id)
|
|
|
|
WHERE
|
|
event_ip.key = :api_key
|
|
%s'
|
|
);
|
|
|
|
$this->applySearch($query, $queryParams);
|
|
$this->applyIpTypes($query);
|
|
$this->applyOrder($query);
|
|
$this->applyLimit($query, $queryParams);
|
|
|
|
return [$query, $queryParams];
|
|
}
|
|
|
|
public function getTotal(): array {
|
|
$queryParams = $this->getQueryParams();
|
|
|
|
$query = (
|
|
'SELECT
|
|
COUNT (DISTINCT event_ip.ip)
|
|
|
|
FROM
|
|
event_ip
|
|
|
|
LEFT JOIN countries
|
|
ON (event_ip.country = countries.id)
|
|
|
|
LEFT JOIN event_isp
|
|
ON (event_ip.isp = event_isp.id)
|
|
|
|
WHERE
|
|
event_ip.key = :api_key
|
|
%s'
|
|
);
|
|
|
|
$this->applySearch($query, $queryParams);
|
|
$this->applyIpTypes($query);
|
|
|
|
return [$query, $queryParams];
|
|
}
|
|
|
|
private function applySearch(string &$query, array &$queryParams): void {
|
|
$this->applyDateRange($query, $queryParams);
|
|
|
|
$search = $this->f3->get('REQUEST.search');
|
|
$searchConditions = $this->injectIdQuery('event_ip.id', $queryParams);
|
|
|
|
if (is_array($search) && isset($search['value']) && is_string($search['value']) && $search['value'] !== '') {
|
|
$searchConditions .= (
|
|
' AND
|
|
(
|
|
TEXT(event_ip.ip) LIKE LOWER(:search_value)
|
|
OR LOWER(event_isp.asn::text) LIKE LOWER(:search_value)
|
|
OR LOWER(event_isp.name) LIKE LOWER(:search_value)
|
|
OR LOWER(countries.value) LIKE LOWER(:search_value)
|
|
OR LOWER(countries.iso) LIKE LOWER(:search_value)
|
|
)'
|
|
);
|
|
|
|
$queryParams[':search_value'] = '%' . $search['value'] . '%';
|
|
}
|
|
|
|
//Add search and ids into request
|
|
$query = sprintf($query, $searchConditions);
|
|
}
|
|
|
|
private function applyIpTypes(string &$query): void {
|
|
$ipTypeIds = $this->f3->get('REQUEST.ipTypeIds');
|
|
if ($ipTypeIds === null) {
|
|
return;
|
|
}
|
|
|
|
foreach ($ipTypeIds as $ipTypeId) {
|
|
switch ($ipTypeId) {
|
|
case 0:
|
|
$query .= ' AND fraud_detected IS TRUE ';
|
|
break;
|
|
case 1:
|
|
$query .= ' AND blocklist IS TRUE ';
|
|
break;
|
|
case 2:
|
|
$query .= ' AND countries.id = 0 AND event_ip.checked IS TRUE ';
|
|
break;
|
|
case 3:
|
|
$query .= ' AND tor IS TRUE ';
|
|
break;
|
|
case 4:
|
|
$query .= ' AND starlink IS TRUE ';
|
|
break;
|
|
case 5:
|
|
$query .= ' AND relay IS TRUE ';
|
|
break;
|
|
case 6:
|
|
$query .= ' AND vpn IS TRUE ';
|
|
break;
|
|
case 7:
|
|
$query .= ' AND data_center IS TRUE ';
|
|
break;
|
|
case 8:
|
|
$query .= ' AND (event_ip.checked IS FALSE OR event_ip.checked IS NULL) ';
|
|
break;
|
|
case 9:
|
|
$query .= ' AND (tor IS FALSE AND vpn IS FALSE AND relay IS FALSE AND data_center IS FALSE AND event_ip.checked IS TRUE) ';
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|