- 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.
		
			
				
	
	
		
			153 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			153 lines
		
	
	
		
			4.9 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\ReviewQueue;
 | 
						|
 | 
						|
class Query extends \Models\Grid\Base\Query {
 | 
						|
    protected $defaultOrder = null;
 | 
						|
    protected $dateRangeField = 'event_account.added_to_review';
 | 
						|
 | 
						|
    protected $allowedColumns = ['score', 'lastseen', 'firstname', 'lastname', 'created', 'added_to_review'];
 | 
						|
 | 
						|
    public function getData(): array {
 | 
						|
        $queryParams = $this->getQueryParams();
 | 
						|
 | 
						|
        $query = (
 | 
						|
            'SELECT
 | 
						|
                event_account.id        AS accountid,
 | 
						|
                event_account.userid    AS accounttitle,
 | 
						|
                event_account.created   AS created,
 | 
						|
                event_account.is_important,
 | 
						|
                event_account.score_updated_at,
 | 
						|
                event_account.score,
 | 
						|
                event_account.firstname,
 | 
						|
                event_account.lastname,
 | 
						|
                event_account.lastseen,
 | 
						|
                event_account.added_to_review,
 | 
						|
 | 
						|
                event_email.email
 | 
						|
 | 
						|
            FROM
 | 
						|
                event_account
 | 
						|
 | 
						|
            LEFT JOIN event_email
 | 
						|
            ON (event_account.lastemail = event_email.id)
 | 
						|
 | 
						|
            WHERE
 | 
						|
                event_account.key = :api_key AND
 | 
						|
                event_account.fraud IS NULL AND
 | 
						|
                event_account.added_to_review IS NOT NULL
 | 
						|
                %s'
 | 
						|
        );
 | 
						|
 | 
						|
        $this->applySearch($query, $queryParams);
 | 
						|
        $this->applyRules($query, $queryParams);
 | 
						|
        $this->applyOrder($query);
 | 
						|
        $this->applyLimit($query, $queryParams);
 | 
						|
 | 
						|
        return [$query, $queryParams];
 | 
						|
    }
 | 
						|
 | 
						|
    public function getTotal(): array {
 | 
						|
        $queryParams = $this->getQueryParams();
 | 
						|
 | 
						|
        $query = (
 | 
						|
            'SELECT
 | 
						|
                COUNT (event_account.id)
 | 
						|
 | 
						|
            FROM
 | 
						|
                event_account
 | 
						|
 | 
						|
            LEFT JOIN event_email
 | 
						|
            ON (event_account.lastemail = event_email.id)
 | 
						|
 | 
						|
            WHERE
 | 
						|
                event_account.key = :api_key AND
 | 
						|
                event_account.fraud IS NULL AND
 | 
						|
                event_account.added_to_review IS NOT NULL
 | 
						|
                %s'
 | 
						|
        );
 | 
						|
 | 
						|
        $this->applySearch($query, $queryParams);
 | 
						|
        $this->applyRules($query, $queryParams);
 | 
						|
 | 
						|
        return [$query, $queryParams];
 | 
						|
    }
 | 
						|
 | 
						|
    public function getTotalOverall(): array {
 | 
						|
        $queryParams = $this->getQueryParams();
 | 
						|
 | 
						|
        $query = (
 | 
						|
            'SELECT
 | 
						|
                COUNT(event_account.id) AS count
 | 
						|
 | 
						|
            FROM
 | 
						|
                event_account
 | 
						|
 | 
						|
            WHERE
 | 
						|
                event_account.key = :api_key AND
 | 
						|
                event_account.fraud IS NULL AND
 | 
						|
                event_account.added_to_review IS NOT NULL'
 | 
						|
        );
 | 
						|
 | 
						|
        return [$query, $queryParams];
 | 
						|
    }
 | 
						|
 | 
						|
    private function applySearch(string &$query, array &$queryParams): void {
 | 
						|
        $this->applyDateRange($query, $queryParams);
 | 
						|
 | 
						|
        $searchConditions = '';
 | 
						|
        $search = $this->f3->get('REQUEST.search');
 | 
						|
 | 
						|
        if (is_array($search) && isset($search['value']) && is_string($search['value']) && $search['value'] !== '') {
 | 
						|
            $searchConditions .= (
 | 
						|
                " AND
 | 
						|
                (
 | 
						|
                    LOWER(REPLACE(
 | 
						|
                            COALESCE(event_account.firstname, '') ||
 | 
						|
                            COALESCE(event_account.lastname, '') ||
 | 
						|
                            COALESCE(event_account.firstname, ''),
 | 
						|
                            ' ', ''))               LIKE LOWER(REPLACE(:search_value, ' ', '')) OR
 | 
						|
                    LOWER(event_email.email)        LIKE LOWER(:search_value) OR
 | 
						|
                    LOWER(event_account.userid)     LIKE LOWER(:search_value) OR
 | 
						|
 | 
						|
                    TO_CHAR(event_account.lastseen::timestamp without time zone, 'dd/mm/yyyy hh24:mi:ss') LIKE :search_value OR
 | 
						|
                    TO_CHAR(event_account.created::timestamp without time zone, 'dd/mm/yyyy hh24:mi:ss') LIKE :search_value
 | 
						|
                )"
 | 
						|
            );
 | 
						|
 | 
						|
            $queryParams[':search_value'] = '%' . $search['value'] . '%';
 | 
						|
        }
 | 
						|
 | 
						|
        //Add search and ids into request
 | 
						|
        $query = sprintf($query, $searchConditions);
 | 
						|
    }
 | 
						|
 | 
						|
    private function applyRules(string &$query, array &$queryParams): void {
 | 
						|
        $ruleUids = $this->f3->get('REQUEST.ruleUids');
 | 
						|
        if ($ruleUids === null) {
 | 
						|
            return;
 | 
						|
        }
 | 
						|
 | 
						|
        $uids = [];
 | 
						|
        foreach ($ruleUids as $ruleUid) {
 | 
						|
            $uids[] = ['uid' => $ruleUid];
 | 
						|
        }
 | 
						|
 | 
						|
        $query .= ' AND score_details @> :rules_uids::jsonb';
 | 
						|
        $queryParams[':rules_uids'] = json_encode($uids);
 | 
						|
    }
 | 
						|
}
 |