| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- class FreshRSS_StatsDAOPGSQL extends FreshRSS_StatsDAO {
- /**
- * Calculates the number of article per hour of the day per feed
- *
- * @param integer $feed id
- * @return string
- */
- 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 string
- */
- public function calculateEntryRepartitionPerFeedPerDayOfWeek($feed = null) {
- return $this->calculateEntryRepartitionPerFeedPerPeriod('day', $feed);
- }
- /**
- * Calculates the number of article per month per feed
- *
- * @param integer $feed
- * @return string
- */
- 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 string
- */
- 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);
- foreach ($res as $value) {
- $repartition[(int) $value['period']] = (int) $value['count'];
- }
- return $repartition;
- }
- }
|