mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-12 11:31:07 +01:00
100 lines
3.3 KiB
PHP
100 lines
3.3 KiB
PHP
<?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\Http\Controllers;
|
|
|
|
use CachetHQ\Cachet\Facades\Setting;
|
|
use CachetHQ\Cachet\Models\Incident;
|
|
use Exception;
|
|
use GrahamCampbell\Binput\Facades\Binput;
|
|
use GrahamCampbell\Markdown\Facades\Markdown;
|
|
use Illuminate\Routing\Controller;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\View;
|
|
use Jenssegers\Date\Date;
|
|
|
|
class StatusPageController extends Controller
|
|
{
|
|
/**
|
|
* Displays the status page.
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function showIndex()
|
|
{
|
|
$today = Date::now();
|
|
$startDate = Date::now();
|
|
|
|
// Check if we have another starting date
|
|
if (Binput::has('start_date')) {
|
|
try {
|
|
// If date provided is valid
|
|
$oldDate = Date::createFromFormat('Y-m-d', Binput::get('start_date'));
|
|
|
|
// If trying to get a future date fallback to today
|
|
if ($today->gt($oldDate)) {
|
|
$startDate = $oldDate;
|
|
}
|
|
} catch (Exception $e) {
|
|
// Fallback to today
|
|
}
|
|
}
|
|
|
|
$daysToShow = Setting::get('app_incident_days') ?: 7;
|
|
$incidentDays = range(0, $daysToShow - 1);
|
|
$dateTimeZone = Setting::get('app_timezone');
|
|
|
|
$incidentVisiblity = Auth::check() ? 0 : 1;
|
|
|
|
$allIncidents = Incident::notScheduled()->where('visible', '>=', $incidentVisiblity)->whereBetween('created_at', [
|
|
$startDate->copy()->subDays($daysToShow)->format('Y-m-d').' 00:00:00',
|
|
$startDate->format('Y-m-d').' 23:59:59',
|
|
])->orderBy('created_at', 'desc')->get()->groupBy(function (Incident $incident) use ($dateTimeZone) {
|
|
return (new Date($incident->created_at))
|
|
->setTimezone($dateTimeZone)->toDateString();
|
|
});
|
|
|
|
// Add in days that have no incidents
|
|
foreach ($incidentDays as $i) {
|
|
$date = (new Date($startDate))->setTimezone($dateTimeZone)->subDays($i);
|
|
|
|
if (!isset($allIncidents[$date->toDateString()])) {
|
|
$allIncidents[$date->toDateString()] = [];
|
|
}
|
|
}
|
|
|
|
// Sort the array so it takes into account the added days
|
|
$allIncidents = $allIncidents->sortBy(function ($value, $key) {
|
|
return strtotime($key);
|
|
}, SORT_REGULAR, true)->all();
|
|
|
|
return View::make('index')
|
|
->withAllIncidents($allIncidents)
|
|
->withAboutApp(Markdown::convertToHtml(Setting::get('app_about')))
|
|
->withCanPageForward((bool) $today->gt($startDate))
|
|
->withCanPageBackward(Incident::notScheduled()->where('created_at', '<', $startDate->format('Y-m-d'))->count() > 0)
|
|
->withPreviousDate($startDate->copy()->subDays($daysToShow)->toDateString())
|
|
->withNextDate($startDate->copy()->addDays($daysToShow)->toDateString());
|
|
}
|
|
|
|
/**
|
|
* Shows an incident in more detail.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\Incident $incident
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function showIncident(Incident $incident)
|
|
{
|
|
|
|
}
|
|
}
|