mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-20 03:07:56 -05:00
* PHP 8.3 #[\Override] https://php.watch/versions/8.3/override-attr With PHPStan `checkMissingOverrideMethodAttribute` https://phpstan.org/config-reference#checkmissingoverridemethodattribute And modified the call to phpstan-next on the model of https://github.com/FreshRSS/Extensions/pull/228 (more robust than the find method, which gave some strange errors) * Update extension example accordingly
83 lines
1.9 KiB
PHP
83 lines
1.9 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
class FreshRSS_StatsDAOPGSQL extends FreshRSS_StatsDAO {
|
|
|
|
/**
|
|
* Calculates the number of article per hour of the day per feed
|
|
*
|
|
* @param int $feed id
|
|
* @return array<int,int>
|
|
*/
|
|
#[\Override]
|
|
public function calculateEntryRepartitionPerFeedPerHour(?int $feed = null): array {
|
|
return $this->calculateEntryRepartitionPerFeedPerPeriod('hour', $feed);
|
|
}
|
|
|
|
/**
|
|
* Calculates the number of article per day of week per feed
|
|
* @return array<int,int>
|
|
*/
|
|
#[\Override]
|
|
public function calculateEntryRepartitionPerFeedPerDayOfWeek(?int $feed = null): array {
|
|
return $this->calculateEntryRepartitionPerFeedPerPeriod('day', $feed);
|
|
}
|
|
|
|
/**
|
|
* Calculates the number of article per month per feed
|
|
* @return array<int,int>
|
|
*/
|
|
#[\Override]
|
|
public function calculateEntryRepartitionPerFeedPerMonth(?int $feed = null): array {
|
|
return $this->calculateEntryRepartitionPerFeedPerPeriod('month', $feed);
|
|
}
|
|
|
|
/**
|
|
* Calculates the number of article per period per feed
|
|
* @param string $period format string to use for grouping
|
|
* @return array<int,int>
|
|
*/
|
|
#[\Override]
|
|
protected function calculateEntryRepartitionPerFeedPerPeriod(string $period, ?int $feed = null): array {
|
|
$restrict = '';
|
|
if ($feed) {
|
|
$restrict = "WHERE e.id_feed = {$feed}";
|
|
}
|
|
$sql = <<<SQL
|
|
SELECT extract( {$period} from to_timestamp(e.date)) 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 [];
|
|
}
|
|
|
|
switch ($period) {
|
|
case 'hour':
|
|
$periodMax = 24;
|
|
break;
|
|
case 'day':
|
|
$periodMax = 7;
|
|
break;
|
|
case 'month':
|
|
$periodMax = 12;
|
|
break;
|
|
default:
|
|
$periodMax = 30;
|
|
}
|
|
|
|
$repartition = array_fill(0, $periodMax, 0);
|
|
foreach ($res as $value) {
|
|
$repartition[(int)$value['period']] = (int)$value['count'];
|
|
}
|
|
|
|
return $repartition;
|
|
}
|
|
|
|
}
|