| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?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;
- }
- }
|