mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-21 11:47:53 -05:00
* Fix most PHPDocs errors Contributes to https://github.com/FreshRSS/FreshRSS/issues/4103 https://phpstan.org/writing-php-code/phpdoc-types * Avoid func_get_args Use variadic syntax instead https://php.net/manual/functions.arguments#functions.variable-arg-list And avoid dynamic functions names when possible to more easily identify calls and unused functions. Contributes to https://github.com/FreshRSS/FreshRSS/issues/4103 * PHPStan level 3 * PHPStand level 4 * Update default to PHPStan level 4 * Towards level 5 * Fix level 4 regression * Towards level 5 * Pass PHPStan level 5 * Towards level 6 * Remove erronenous regression from changelog https://github.com/FreshRSS/FreshRSS/pull/4116
82 lines
1.8 KiB
PHP
82 lines
1.8 KiB
PHP
<?php
|
|
|
|
class FreshRSS_StatsDAOPGSQL extends FreshRSS_StatsDAO {
|
|
|
|
/**
|
|
* Calculates the number of article per hour of the day per feed
|
|
*
|
|
* @param integer $feed id
|
|
* @return array
|
|
*/
|
|
public function calculateEntryRepartitionPerFeedPerHour($feed = null) {
|
|
return $this->calculateEntryRepartitionPerFeedPerPeriod('hour', $feed);
|
|
}
|
|
|
|
/**
|
|
* Calculates the number of article per day of week per feed
|
|
*
|
|
* @param integer $feed id
|
|
* @return array
|
|
*/
|
|
public function calculateEntryRepartitionPerFeedPerDayOfWeek($feed = null) {
|
|
return $this->calculateEntryRepartitionPerFeedPerPeriod('day', $feed);
|
|
}
|
|
|
|
/**
|
|
* Calculates the number of article per month per feed
|
|
*
|
|
* @param integer $feed
|
|
* @return array
|
|
*/
|
|
public function calculateEntryRepartitionPerFeedPerMonth($feed = null) {
|
|
return $this->calculateEntryRepartitionPerFeedPerPeriod('month', $feed);
|
|
}
|
|
|
|
/**
|
|
* Calculates the number of article per period per feed
|
|
*
|
|
* @param string $period format string to use for grouping
|
|
* @param integer $feed id
|
|
* @return array<int,int>
|
|
*/
|
|
protected function calculateEntryRepartitionPerFeedPerPeriod($period, $feed = null) {
|
|
$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;
|
|
|
|
$stm = $this->pdo->query($sql);
|
|
$res = $stm->fetchAll(PDO::FETCH_NAMED);
|
|
|
|
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;
|
|
}
|
|
|
|
}
|