Ekapp/skolehjem/app/Http/Controllers/RootController.php

57 lines
1.9 KiB
PHP
Raw Normal View History

2020-06-08 13:08:46 +00:00
<?php
namespace App\Http\Controllers;
2020-08-31 11:20:49 +00:00
use App\Event;
use App\News;
2020-06-08 13:08:46 +00:00
use Illuminate\Http\Request;
2020-06-24 06:23:15 +00:00
use Illuminate\Http\Response;
2020-06-08 13:08:46 +00:00
date_default_timezone_set('Europe/Copenhagen');
2020-06-08 13:08:46 +00:00
class RootController extends Controller
{
2020-06-30 08:42:10 +00:00
function __construct()
{
$this->middleware("auth");
2020-08-06 13:31:38 +00:00
$this->middleware([ "lang" ]);
2020-06-30 08:42:10 +00:00
}
2020-06-08 13:08:46 +00:00
public function index() {
2020-08-25 12:07:20 +00:00
$perPage = 5;
//Delete news Articels
$news = News::query()->where('news_expiration_date', '<=', date('Y-m-d').'T'.date('H:i'))->get();
foreach ($news as $new) {
$new->delete();
}
//All news
$newsCollection = News::query()->orderBy('id', 'desc')->get();
2020-08-31 11:20:49 +00:00
//Runs through all the news and deletes the old stuff
2020-08-31 11:20:49 +00:00
foreach ($newsCollection as $new)
{
if($new->type_id == 3)
if(Event::query()->where('id', '=', $new->arrangement_id)->first() == null)
$new->delete();
}
//Return either the admin or app index page without the old news
if(auth()->user()->can('admin.panel.show')) {
if(Response::detect("root.index")->name() == "admin.root.index")
2020-08-27 11:59:11 +00:00
return view("admin.root.index");
else {
$news = News::query()->select(['news_types.type', 'news.subname', 'news.id', 'news.resource_id', 'news.created_at', 'news.arrangement_id', 'news.content' ])->join('news_types', 'news_types.id', '=', 'news.type_id')->orderBy('news.id', 'desc')->get();
2020-08-27 11:59:11 +00:00
return view("app.root.index", ["news" => $news]);
}
}
else {
$news = News::query()->select(['news_types.type', 'news.subname', 'news.id', 'news.resource_id', 'news.created_at' ])->join('news_types', 'news_types.id', '=', 'news.type_id')->orderBy('news.id', 'desc')->get();
2020-08-27 11:59:11 +00:00
return Response::detect('root.index', ["news" => $news]);
}
2020-06-08 13:08:46 +00:00
}
}