2015-08-16 15:11:21 -04:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
namespace BookStack\Http\Controllers;
|
2015-08-16 15:11:21 -04:00
|
|
|
|
2015-11-21 12:22:14 -05:00
|
|
|
use Activity;
|
2016-02-20 07:37:06 -05:00
|
|
|
use BookStack\Repos\EntityRepo;
|
2015-09-10 14:31:09 -04:00
|
|
|
use BookStack\Http\Requests;
|
2015-11-21 12:22:14 -05:00
|
|
|
use Views;
|
2015-08-16 15:11:21 -04:00
|
|
|
|
|
|
|
class HomeController extends Controller
|
|
|
|
{
|
2016-02-20 07:37:06 -05:00
|
|
|
protected $entityRepo;
|
2015-08-16 15:11:21 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* HomeController constructor.
|
2016-02-20 07:37:06 -05:00
|
|
|
* @param EntityRepo $entityRepo
|
2015-08-16 15:11:21 -04:00
|
|
|
*/
|
2016-02-20 07:37:06 -05:00
|
|
|
public function __construct(EntityRepo $entityRepo)
|
2015-08-16 15:11:21 -04:00
|
|
|
{
|
2016-02-20 07:37:06 -05:00
|
|
|
$this->entityRepo = $entityRepo;
|
2015-08-29 10:03:42 -04:00
|
|
|
parent::__construct();
|
2015-08-16 15:11:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the homepage.
|
|
|
|
*
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
2016-02-20 07:37:06 -05:00
|
|
|
$activity = Activity::latest(10);
|
|
|
|
$recents = $this->signedIn ? Views::getUserRecentlyViewed(12, 0) : $this->entityRepo->getRecentlyCreatedBooks(10);
|
|
|
|
$recentlyCreatedPages = $this->entityRepo->getRecentlyCreatedPages(5);
|
|
|
|
$recentlyUpdatedPages = $this->entityRepo->getRecentlyUpdatedPages(5);
|
|
|
|
return view('home', [
|
|
|
|
'activity' => $activity,
|
|
|
|
'recents' => $recents,
|
|
|
|
'recentlyCreatedPages' => $recentlyCreatedPages,
|
|
|
|
'recentlyUpdatedPages' => $recentlyUpdatedPages
|
|
|
|
]);
|
2015-08-16 15:11:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|