1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- /**
- * This file is part of the ForkBB <https://github.com/forkbb>.
- *
- * @copyright (c) Visman <mio.visman@yandex.ru, https://github.com/MioVisman>
- * @license The MIT License (MIT)
- */
- declare(strict_types=1);
- namespace ForkBB\Models\Stats;
- use ForkBB\Models\Model;
- use PDO;
- use RuntimeException;
- class Stats extends Model
- {
- /**
- * Ключ модели для контейнера
- * @var string
- */
- protected $cKey = 'Stats';
- /**
- * Загружает статистику из кеша/БД
- */
- public function init(): Stats
- {
- $list = $this->c->Cache->get('stats');
- if (! \is_array($list)) {
- $list = $this->c->users->stats();
- if (true !== $this->c->Cache->set('stats', $list)) {
- throw new RuntimeException('Unable to write value to cache - stats');
- }
- }
- $this->userTotal = $list['total'];
- $this->userLast = $list['last'];
- $query = 'SELECT SUM(f.num_topics), SUM(f.num_posts)
- FROM ::forums AS f';
- list($this->topicTotal, $this->postTotal) = $this->c->DB->query($query)->fetch(PDO::FETCH_NUM);
- return $this;
- }
- /**
- * Сбрасывает кеш статистики
- */
- public function reset(): Stats
- {
- if (true !== $this->c->Cache->delete('stats')) {
- throw new RuntimeException('Unable to remove key from cache - stats');
- }
- return $this;
- }
- }
|