387 lines
13 KiB
PHP
387 lines
13 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\Dashboard;
|
|
|
|
use AltThree\Validator\ValidationException;
|
|
use CachetHQ\Cachet\Bus\Commands\Incident\CreateIncidentCommand;
|
|
use CachetHQ\Cachet\Bus\Commands\Incident\RemoveIncidentCommand;
|
|
use CachetHQ\Cachet\Bus\Commands\Incident\UpdateIncidentCommand;
|
|
use CachetHQ\Cachet\Bus\Commands\IncidentUpdate\CreateIncidentUpdateCommand;
|
|
use CachetHQ\Cachet\Bus\Commands\IncidentUpdate\UpdateIncidentUpdateCommand;
|
|
use CachetHQ\Cachet\Models\Component;
|
|
use CachetHQ\Cachet\Models\ComponentGroup;
|
|
use CachetHQ\Cachet\Models\Incident;
|
|
use CachetHQ\Cachet\Models\IncidentTemplate;
|
|
use CachetHQ\Cachet\Models\IncidentUpdate;
|
|
use GrahamCampbell\Binput\Facades\Binput;
|
|
use Illuminate\Contracts\Auth\Guard;
|
|
use Illuminate\Routing\Controller;
|
|
use Illuminate\Support\Facades\View;
|
|
|
|
/**
|
|
* This is the incident controller.
|
|
*
|
|
* @author James Brooks <james@alt-three.com>
|
|
*/
|
|
class IncidentController extends Controller
|
|
{
|
|
/**
|
|
* Stores the sub-sidebar tree list.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $subMenu = [];
|
|
|
|
/**
|
|
* The guard instance.
|
|
*
|
|
* @var \Illuminate\Contracts\Auth\Guard
|
|
*/
|
|
protected $auth;
|
|
|
|
/**
|
|
* Creates a new incident controller instance.
|
|
*
|
|
* @param \Illuminate\Contracts\Auth\Guard $auth
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(Guard $auth)
|
|
{
|
|
$this->auth = $auth;
|
|
|
|
View::share('sub_title', trans('dashboard.incidents.title'));
|
|
}
|
|
|
|
/**
|
|
* Shows the incidents view.
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function showIncidents()
|
|
{
|
|
$incidents = Incident::orderBy('created_at', 'desc')->get();
|
|
|
|
return View::make('dashboard.incidents.index')
|
|
->withPageTitle(trans('dashboard.incidents.incidents').' - '.trans('dashboard.dashboard'))
|
|
->withIncidents($incidents);
|
|
}
|
|
|
|
/**
|
|
* Shows the add incident view.
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function showAddIncident()
|
|
{
|
|
return View::make('dashboard.incidents.add')
|
|
->withPageTitle(trans('dashboard.incidents.add.title').' - '.trans('dashboard.dashboard'))
|
|
->withComponentsInGroups(ComponentGroup::with('components')->get())
|
|
->withComponentsOutGroups(Component::where('group_id', '=', 0)->get())
|
|
->withIncidentTemplates(IncidentTemplate::all());
|
|
}
|
|
|
|
/**
|
|
* Shows the incident templates.
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function showTemplates()
|
|
{
|
|
return View::make('dashboard.templates.index')
|
|
->withPageTitle(trans('dashboard.incidents.templates.title').' - '.trans('dashboard.dashboard'))
|
|
->withIncidentTemplates(IncidentTemplate::all());
|
|
}
|
|
|
|
/**
|
|
* Creates a new incident.
|
|
*
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function createIncidentAction()
|
|
{
|
|
try {
|
|
$incident = dispatch(new CreateIncidentCommand(
|
|
Binput::get('name'),
|
|
Binput::get('status'),
|
|
Binput::get('message', null, false, false),
|
|
Binput::get('visible', true),
|
|
Binput::get('component_id'),
|
|
Binput::get('component_status'),
|
|
Binput::get('notify', false),
|
|
Binput::get('stickied', false),
|
|
Binput::get('occurred_at'),
|
|
null,
|
|
[]
|
|
));
|
|
} catch (ValidationException $e) {
|
|
return cachet_redirect('dashboard.incidents.create')
|
|
->withInput(Binput::all())
|
|
->withTitle(sprintf('%s %s', trans('dashboard.notifications.whoops'), trans('dashboard.incidents.add.failure')))
|
|
->withErrors($e->getMessageBag());
|
|
}
|
|
|
|
return cachet_redirect('dashboard.incidents')
|
|
->withSuccess(sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('dashboard.incidents.add.success')));
|
|
}
|
|
|
|
/**
|
|
* Shows the add incident template view.
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function showAddIncidentTemplate()
|
|
{
|
|
return View::make('dashboard.templates.add')
|
|
->withPageTitle(trans('dashboard.incidents.templates.add.title').' - '.trans('dashboard.dashboard'));
|
|
}
|
|
|
|
/**
|
|
* Shows the edit incident template view.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\IncidentTemplate $template
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function showEditTemplateAction(IncidentTemplate $template)
|
|
{
|
|
return View::make('dashboard.templates.edit')
|
|
->withPageTitle(trans('dashboard.incidents.templates.edit.title').' - '.trans('dashboard.dashboard'))
|
|
->withTemplate($template);
|
|
}
|
|
|
|
/**
|
|
* Deletes an incident template.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\IncidentTemplate $template
|
|
*
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function deleteTemplateAction(IncidentTemplate $template)
|
|
{
|
|
$template->delete();
|
|
|
|
return cachet_redirect('dashboard.templates')
|
|
->withSuccess(sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('dashboard.incidents.templates.delete.success')));
|
|
}
|
|
|
|
/**
|
|
* Creates a new incident template.
|
|
*
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function createIncidentTemplateAction()
|
|
{
|
|
try {
|
|
IncidentTemplate::create([
|
|
'name' => Binput::get('name'),
|
|
'template' => Binput::get('template', null, false, false),
|
|
]);
|
|
} catch (ValidationException $e) {
|
|
return cachet_redirect('dashboard.templates.create')
|
|
->withInput(Binput::all())
|
|
->withTitle(sprintf('%s %s', trans('dashboard.notifications.whoops'), trans('dashboard.incidents.templates.add.failure')))
|
|
->withErrors($e->getMessageBag());
|
|
}
|
|
|
|
return cachet_redirect('dashboard.templates')
|
|
->withSuccess(sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('dashboard.incidents.templates.add.success')));
|
|
}
|
|
|
|
/**
|
|
* Deletes a given incident.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\Incident $incident
|
|
*
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function deleteIncidentAction(Incident $incident)
|
|
{
|
|
dispatch(new RemoveIncidentCommand($incident));
|
|
|
|
return cachet_redirect('dashboard.incidents')
|
|
->withSuccess(sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('dashboard.incidents.delete.success')));
|
|
}
|
|
|
|
/**
|
|
* Shows the edit incident view.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\Incident $incident
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function showEditIncidentAction(Incident $incident)
|
|
{
|
|
return View::make('dashboard.incidents.edit')
|
|
->withPageTitle(trans('dashboard.incidents.edit.title').' - '.trans('dashboard.dashboard'))
|
|
->withIncident($incident)
|
|
->withComponentsInGroups(ComponentGroup::with('components')->get())
|
|
->withComponentsOutGroups(Component::where('group_id', '=', 0)->get());
|
|
}
|
|
|
|
/**
|
|
* Edit an incident.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\Incident $incident
|
|
*
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function editIncidentAction(Incident $incident)
|
|
{
|
|
try {
|
|
$incident = dispatch(new UpdateIncidentCommand(
|
|
$incident,
|
|
Binput::get('name'),
|
|
Binput::get('status'),
|
|
Binput::get('message'),
|
|
Binput::get('visible', true),
|
|
Binput::get('component_id'),
|
|
Binput::get('component_status'),
|
|
Binput::get('notify', true),
|
|
Binput::get('stickied', false),
|
|
Binput::get('occurred_at'),
|
|
null,
|
|
[]
|
|
));
|
|
} catch (ValidationException $e) {
|
|
return cachet_redirect('dashboard.incidents.edit', ['id' => $incident->id])
|
|
->withInput(Binput::all())
|
|
->withTitle(sprintf('%s %s', trans('dashboard.notifications.whoops'), trans('dashboard.incidents.templates.edit.failure')))
|
|
->withErrors($e->getMessageBag());
|
|
}
|
|
|
|
if ($incident->component) {
|
|
$incident->component->update(['status' => Binput::get('component_status')]);
|
|
}
|
|
|
|
return cachet_redirect('dashboard.incidents.edit', ['id' => $incident->id])
|
|
->withSuccess(sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('dashboard.incidents.edit.success')));
|
|
}
|
|
|
|
/**
|
|
* Edit an incident template.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\IncidentTemplate $template
|
|
*
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function editTemplateAction(IncidentTemplate $template)
|
|
{
|
|
try {
|
|
$template->update(Binput::get('template'));
|
|
} catch (ValidationException $e) {
|
|
return cachet_redirect('dashboard.templates.edit', ['id' => $template->id])
|
|
->withUpdatedTemplate($template)
|
|
->withTemplateErrors($e->getMessageBag()->getErrors());
|
|
}
|
|
|
|
return cachet_redirect('dashboard.templates.edit', ['id' => $template->id])
|
|
->withUpdatedTemplate($template);
|
|
}
|
|
|
|
/**
|
|
* Shows the incident update form.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\Incident $incident
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function showIncidentUpdates(Incident $incident)
|
|
{
|
|
$updates = IncidentUpdate::byIncident($incident)->orderBy('created_at', 'desc')->get();
|
|
return View::make('dashboard.incidents.updates.index')->withIncident($incident)->withUpdates($updates);
|
|
}
|
|
|
|
/**
|
|
* Shows the incident update form.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\Incident $incident
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function showCreateIncidentUpdateAction(Incident $incident)
|
|
{
|
|
return View::make('dashboard.incidents.updates.add')->withIncident($incident);
|
|
}
|
|
|
|
/**
|
|
* Creates a new incident update.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\Incident $incident
|
|
*
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function createIncidentUpdateAction(Incident $incident)
|
|
{
|
|
try {
|
|
$incidentUpdate = dispatch(new CreateIncidentUpdateCommand(
|
|
$incident,
|
|
Binput::get('status'),
|
|
Binput::get('message'),
|
|
$this->auth->user()
|
|
));
|
|
} catch (ValidationException $e) {
|
|
return cachet_redirect('dashboard.incidents.updates.create', ['id' => $incident->id])
|
|
->withInput(Binput::all())
|
|
->withTitle(sprintf('%s %s', trans('dashboard.notifications.whoops'), trans('dashboard.incidents.updates.add.failure')))
|
|
->withErrors($e->getMessageBag());
|
|
}
|
|
|
|
return cachet_redirect('dashboard.incidents')
|
|
->withSuccess(sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('dashboard.incidents.updates.success')));
|
|
}
|
|
|
|
|
|
/**
|
|
* Shows the edit incident view.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\Incident $incident
|
|
* @param \CachetHQ\Cachet\Models\IncidentUpdate $incidentUpdate
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function showEditIncidentUpdateAction(Incident $incident, IncidentUpdate $incidentUpdate)
|
|
{
|
|
return View::make('dashboard.incidents.updates.edit')
|
|
->withIncident($incident)
|
|
->withUpdate($incidentUpdate);
|
|
}
|
|
|
|
/**
|
|
* Edit an incident.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\Incident $incident
|
|
* @param \CachetHQ\Cachet\Models\IncidentUpdate $incidentUpdate
|
|
*
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function editIncidentUpdateAction(Incident $incident, IncidentUpdate $incidentUpdate)
|
|
{
|
|
try {
|
|
$incidentUpdate = dispatch(new UpdateIncidentUpdateCommand(
|
|
$incidentUpdate,
|
|
Binput::get('status'),
|
|
Binput::get('message'),
|
|
$this->auth->user()
|
|
));
|
|
} catch (ValidationException $e) {
|
|
return cachet_redirect('dashboard.incidents.updates.edit', ['incident' => $incident->id, 'incident_update' => $incidentUpdate->id])
|
|
->withInput(Binput::all())
|
|
->withTitle(sprintf('%s %s', trans('dashboard.notifications.whoops'), trans('dashboard.incidents.updates.edit.failure')))
|
|
->withErrors($e->getMessageBag());
|
|
}
|
|
|
|
return cachet_redirect('dashboard.incidents.updates', ['incident' => $incident->id])
|
|
->withSuccess(sprintf('%s %s', trans('dashboard.notifications.awesome'), trans('dashboard.incidents.updates.edit.success')));
|
|
}
|
|
}
|