This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/app/Controllers/NewsController.php

63 lines
1.4 KiB
PHP
Raw Normal View History

2016-03-28 14:47:43 +00:00
<?php
/**
* Holds the news controller.
* @package Sakura
*/
namespace Sakura\Controllers;
use Phroute\Phroute\Exception\HttpRouteNotFoundException;
2016-03-28 14:47:43 +00:00
use Sakura\Config;
use Sakura\News\Category;
use Sakura\News\Post;
/**
* News controller.
* @package Sakura
* @author Julian van de Groep <me@flash.moe>
*/
class NewsController extends Controller
{
2016-08-05 02:35:37 +00:00
/**
* Shows all posts in a specific category.
* @param string $category
2016-12-04 16:33:52 +00:00
* @throws HttpRouteNotFoundException
2016-08-05 02:35:37 +00:00
* @return string
*/
2016-12-04 16:33:52 +00:00
public function category(string $category = ''): string
2016-03-28 14:47:43 +00:00
{
// Check if the category is set
if ($category === '') {
// Fetch the default category from the config
2016-07-26 17:29:53 +00:00
$category = config('general.news');
2016-03-28 14:47:43 +00:00
}
// Create the category object
$category = new Category($category);
if (!$category->posts()) {
2016-12-04 16:33:52 +00:00
throw new HttpRouteNotFoundException;
2016-03-28 14:47:43 +00:00
}
return view('news/category', compact('category'));
2016-03-28 14:47:43 +00:00
}
2016-08-05 02:35:37 +00:00
/**
* Returns a news post.
* @param int $id
2016-12-04 16:33:52 +00:00
* @throws HttpRouteNotFoundException
2016-08-05 02:35:37 +00:00
* @return string
*/
2016-12-04 16:33:52 +00:00
public function post(int $id = 0): string
2016-03-28 14:47:43 +00:00
{
// Create the post object
$post = new Post($id);
if (!$post->id) {
2016-12-04 16:33:52 +00:00
throw new HttpRouteNotFoundException;
2016-03-28 14:47:43 +00:00
}
return view('news/post', compact('post'));
2016-03-28 14:47:43 +00:00
}
}