Files
cachet-docker/src/Controllers/RssController.php
Graham Campbell 0b3042f34d Fixes
2015-01-01 16:18:24 +00:00

47 lines
1.3 KiB
PHP

<?php
namespace CachetHQ\Cachet\Controllers;
use Illuminate\Routing\Controller;
use Illuminate\Support\Facades\Response;
use Incident;
use Setting;
use Thujohn\Rss\RssFacade;
class RssController extends Controller
{
/**
* Generates an RSS feed of all incidents.
*
* @return \Illuminate\Http\Response
*/
public function feedAction()
{
$feed = RssFacade::feed('2.0', 'UTF-8');
$feed->channel([
'title' => Setting::get('app_name'),
'description' => 'Status Feed',
'link' => Setting::get('app_domain'),
]);
Incident::get()->map(function ($incident) use ($feed) {
if ($incident->component) {
$componentName = $incident->component->name;
} else {
$componentName = null;
}
$feed->item([
'title' => $incident->name,
'message' => $incident->message,
'component' => $componentName,
'status' => $incident->humanStatus,
'created_at' => $incident->created_at,
'updated_at' => $incident->updated_at,
]);
});
return Response::make($feed, 200, ['Content-Type' => 'text/xml']);
}
}