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