Improved metric repository for per-db methods. Closes #921
This commit is contained in:
110
app/Repositories/Metric/MetricRepository.php
Normal file
110
app/Repositories/Metric/MetricRepository.php
Normal file
@@ -0,0 +1,110 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Cachet.
|
||||
*
|
||||
* (c) Alt Three Services Limited
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace CachetHQ\Cachet\Repositories\Metric;
|
||||
|
||||
use CachetHQ\Cachet\Facades\Setting as SettingFacade;
|
||||
use CachetHQ\Cachet\Models\Metric;
|
||||
use DateInterval;
|
||||
use Jenssegers\Date\Date;
|
||||
|
||||
class MetricRepository
|
||||
{
|
||||
/**
|
||||
* Metric repository.
|
||||
*
|
||||
* @var \CachetHQ\Cachet\Repositories\Metric\MetricInterface
|
||||
*/
|
||||
protected $repository;
|
||||
|
||||
/**
|
||||
* The timezone the status page is showing in.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $dateTimeZone;
|
||||
|
||||
/**
|
||||
* Create a new metric repository class.
|
||||
*
|
||||
* @param \CachetHQ\Cachet\Repositories\Metric\MetricInterface $repository
|
||||
*/
|
||||
public function __construct(MetricInterface $repository)
|
||||
{
|
||||
$this->repository = $repository;
|
||||
$this->dateTimeZone = SettingFacade::get('app_timezone');
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns all points as an array, by x hours.
|
||||
*
|
||||
* @param \CachetHQ\Cachet\Models\Metric $metric
|
||||
* @param int $hours
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function listPointsToday(Metric $metric, $hours = 12)
|
||||
{
|
||||
$dateTime = (new Date())->setTimezone($this->dateTimeZone);
|
||||
$points = [];
|
||||
|
||||
$pointKey = $dateTime->format('H:00');
|
||||
for ($i = 0; $i <= $hours; $i++) {
|
||||
$points[$pointKey] = $this->repository->getPointsByHour($metric, $i + 1);
|
||||
$pointKey = $dateTime->sub(new DateInterval('PT1H'))->format('H:00');
|
||||
}
|
||||
|
||||
return array_reverse($points);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns all points as an array, in the last week.
|
||||
*
|
||||
* @param \CachetHQ\Cachet\Models\Metric $metric
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function listPointsForWeek(Metric $metric)
|
||||
{
|
||||
$dateTime = (new Date())->setTimezone($this->dateTimeZone);
|
||||
$points = [];
|
||||
|
||||
$pointKey = $dateTime->format('jS M');
|
||||
for ($i = 0; $i <= 7; $i++) {
|
||||
$points[$pointKey] = $this->repository->getPointsForDayInWeek($metric, $i);
|
||||
$pointKey = $dateTime->sub(new DateInterval('P1D'))->format('D jS M');
|
||||
}
|
||||
|
||||
return array_reverse($points);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns all points as an array, in the last month.
|
||||
*
|
||||
* @param \CachetHQ\Cachet\Models\Metric $metric
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function listPointsForMonth(Metric $metric)
|
||||
{
|
||||
$dateTime = (new Date())->setTimezone($this->dateTimeZone);
|
||||
$daysInMonth = $dateTime->format('t');
|
||||
$points = [];
|
||||
|
||||
$pointKey = $dateTime->format('jS M');
|
||||
for ($i = 0; $i <= $daysInMonth; $i++) {
|
||||
$points[$pointKey] = $this->repository->getPointsForDayInWeek($metric, $i);
|
||||
$pointKey = $dateTime->sub(new DateInterval('P1D'))->format('jS M');
|
||||
}
|
||||
|
||||
return array_reverse($points);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user