BookStack/app/App/HomeController.php

156 lines
5.3 KiB
PHP
Raw Normal View History

2021-06-26 11:23:15 -04:00
<?php
namespace BookStack\App;
2023-05-17 12:56:55 -04:00
use BookStack\Activity\ActivityQueries;
2021-06-26 11:23:15 -04:00
use BookStack\Entities\Models\Page;
use BookStack\Entities\Queries\EntityQueries;
use BookStack\Entities\Queries\RecentlyViewed;
use BookStack\Entities\Queries\TopFavourites;
2021-06-26 11:23:15 -04:00
use BookStack\Entities\Tools\PageContent;
use BookStack\Http\Controller;
use BookStack\Uploads\FaviconHandler;
use BookStack\Util\SimpleListOptions;
use Illuminate\Http\Request;
class HomeController extends Controller
{
public function __construct(
protected EntityQueries $queries,
) {
}
/**
2023-09-22 05:18:10 -04:00
* Display the homepage.
*/
public function index(Request $request, ActivityQueries $activities)
{
$activity = $activities->latest(10);
$draftPages = [];
2023-09-22 05:18:10 -04:00
if ($this->isSignedIn()) {
$draftPages = $this->queries->pages->currentUserDraftsForList()
2023-09-22 05:18:10 -04:00
->orderBy('updated_at', 'desc')
->with('book')
->take(6)
->get();
}
2023-09-22 05:18:10 -04:00
$recentFactor = count($draftPages) > 0 ? 0.5 : 1;
$recents = $this->isSignedIn() ?
2023-09-22 05:18:10 -04:00
(new RecentlyViewed())->run(12 * $recentFactor, 1)
: $this->queries->books->visibleForList()->orderBy('created_at', 'desc')->take(12 * $recentFactor)->get();
2021-06-26 11:23:15 -04:00
$favourites = (new TopFavourites())->run(6);
$recentlyUpdatedPages = $this->queries->pages->visibleForList()
2023-09-22 05:18:10 -04:00
->where('draft', false)
->orderBy('updated_at', 'desc')
->take($favourites->count() > 0 ? 5 : 10)
->get();
$homepageOptions = ['default', 'books', 'bookshelves', 'page'];
$homepageOption = setting('app-homepage-type', 'default');
if (!in_array($homepageOption, $homepageOptions)) {
$homepageOption = 'default';
}
2023-09-22 05:18:10 -04:00
$commonData = [
2021-06-26 11:23:15 -04:00
'activity' => $activity,
'recents' => $recents,
'recentlyUpdatedPages' => $recentlyUpdatedPages,
2021-06-26 11:23:15 -04:00
'draftPages' => $draftPages,
'favourites' => $favourites,
];
2023-09-22 05:18:10 -04:00
2019-04-06 12:31:59 -04:00
// Add required list ordering & sorting for books & shelves views.
if ($homepageOption === 'bookshelves' || $homepageOption === 'books') {
$key = $homepageOption;
$view = setting()->getForCurrentUser($key . '_view_type');
$listOptions = SimpleListOptions::fromRequest($request, $key)->withSortOptions([
'name' => trans('common.sort_name'),
2019-04-06 12:31:59 -04:00
'created_at' => trans('common.sort_created_at'),
'updated_at' => trans('common.sort_updated_at'),
]);
2023-09-22 05:18:10 -04:00
2019-04-06 12:31:59 -04:00
$commonData = array_merge($commonData, [
2021-06-26 11:23:15 -04:00
'view' => $view,
'listOptions' => $listOptions,
2019-04-06 12:31:59 -04:00
]);
}
2023-09-22 05:18:10 -04:00
if ($homepageOption === 'bookshelves') {
$shelves = $this->queries->shelves->visibleForListWithCover()
->orderBy($commonData['listOptions']->getSort(), $commonData['listOptions']->getOrder())
->paginate(18);
2019-04-06 12:31:59 -04:00
$data = array_merge($commonData, ['shelves' => $shelves]);
2023-09-22 05:18:10 -04:00
return view('home.shelves', $data);
}
2023-09-22 05:18:10 -04:00
if ($homepageOption === 'books') {
$books = $this->queries->books->visibleForListWithCover()
->orderBy($commonData['listOptions']->getSort(), $commonData['listOptions']->getOrder())
->paginate(18);
2019-04-06 12:31:59 -04:00
$data = array_merge($commonData, ['books' => $books]);
2023-09-22 05:18:10 -04:00
return view('home.books', $data);
}
2023-09-22 05:18:10 -04:00
if ($homepageOption === 'page') {
$homepageSetting = setting('app-homepage', '0:');
$id = intval(explode(':', $homepageSetting)[0]);
/** @var Page $customHomepage */
$customHomepage = $this->queries->pages->start()->where('draft', '=', false)->findOrFail($id);
$pageContent = new PageContent($customHomepage);
$customHomepage->html = $pageContent->render(false);
2023-09-22 05:18:10 -04:00
return view('home.specific-page', array_merge($commonData, ['customHomepage' => $customHomepage]));
}
2023-09-22 05:18:10 -04:00
return view('home.default', $commonData);
}
2023-09-22 05:18:10 -04:00
/**
2023-09-22 05:18:10 -04:00
* Show the view for /robots.txt.
*/
public function robots()
{
$sitePublic = setting('app-public', false);
$allowRobots = config('app.allow_robots');
2023-09-22 05:18:10 -04:00
if ($allowRobots === null) {
$allowRobots = $sitePublic;
}
2023-09-22 05:18:10 -04:00
return response()
2023-09-22 05:18:10 -04:00
->view('misc.robots', ['allowRobots' => $allowRobots])
->header('Content-Type', 'text/plain');
}
2023-09-22 05:18:10 -04:00
/**
2023-09-22 05:18:10 -04:00
* Show the route for 404 responses.
*/
public function notFound()
{
return response()->view('errors.404', [], 404);
}
2023-09-22 05:18:10 -04:00
/**
2023-09-22 05:18:10 -04:00
* Serve the application favicon.
* Ensures a 'favicon.ico' file exists at the web root location (if writable) to be served
* directly by the webserver in the future.
*/
public function favicon(FaviconHandler $favicons)
{
$exists = $favicons->restoreOriginalIfNotExists();
return response()->file($exists ? $favicons->getPath() : $favicons->getOriginalPath());
}
/**
* Serve a PWA application manifest.
*/
public function pwaManifest(PwaManifestBuilder $manifestBuilder)
{
return response()->json($manifestBuilder->build());
}
2023-09-22 05:19:34 -04:00
}