Files
FreshRSS/app/Models/StatsDAOSQLite.php
Alexandre Alapetite aeb55693e4 SQL improve PHP syntax uniformity (#8604)
* New SQL wrapper function `fetchInt()`
* Favour use of `fetchAssoc()`, `fetchInt()`, `fetchColumn()`
* Favour Nowdoc / Heredoc syntax for SQL
    * Update indenting to PHP 8.1+ convention
* Favour `bindValue()` instead of position `?` when possible
* Favour `bindValue()` over `bindParam()`
* More uniform and robust syntax when using `bindValue()`, checking return code
2026-03-15 14:44:39 +01:00

64 lines
1.6 KiB
PHP

<?php
declare(strict_types=1);
class FreshRSS_StatsDAOSQLite extends FreshRSS_StatsDAO {
#[\Override]
protected function sqlDateToIsoGranularity(string $field, int $precision, string $granularity): string {
if (!preg_match('/^[a-zA-Z0-9_.]+$/', $field)) {
throw new InvalidArgumentException('Invalid date field!');
}
$offset = $this->getTimezoneOffset();
return match ($granularity) {
'day' => "strftime('%Y-%m-%d', ($field / $precision) + $offset, 'unixepoch')",
'month' => "strftime('%Y-%m', ($field / $precision) + $offset, 'unixepoch')",
'year' => "strftime('%Y', ($field / $precision) + $offset, 'unixepoch')",
default => throw new InvalidArgumentException('Invalid date granularity'),
};
}
#[\Override]
protected function sqlFloor(string $s): string {
return "CAST(($s) AS INT)";
}
/**
* @return array<int,int>
*/
#[\Override]
protected function calculateEntryRepartitionPerFeedPerPeriod(string $period, ?int $feed = null): array {
if ($feed) {
$restrict = "WHERE e.id_feed = {$feed}";
} else {
$restrict = '';
}
$offset = $this->getTimezoneOffset();
$sql = <<<SQL
SELECT strftime('{$period}', e.date + {$offset}, 'unixepoch') AS period, COUNT(1) AS count
FROM `_entry` AS e
{$restrict}
GROUP BY period
ORDER BY period ASC
SQL;
$res = $this->fetchAssoc($sql);
if ($res == null) {
return [];
}
$periodMax = match ($period) {
'%H' => 24,
'%w' => 7,
'%m' => 12,
default => 30,
};
$repartition = array_fill(0, $periodMax, 0);
foreach ($res as $value) {
$repartition[(int)$value['period']] = (int)$value['count'];
}
return $repartition;
}
}