This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/random_list/main.php
2020-01-26 16:27:56 +00:00

77 lines
2.4 KiB
PHP

<?php declare(strict_types=1);
class RandomList extends Extension
{
/** @var RandomListTheme */
protected $theme;
public function onPageRequest(PageRequestEvent $event)
{
global $config, $page;
if ($event->page_matches("random")) {
if (isset($_GET['search'])) {
// implode(explode()) to resolve aliases and sanitise
$search = url_escape(Tag::implode(Tag::explode($_GET['search'], false)));
if (empty($search)) {
$page->set_mode(PageMode::REDIRECT);
$page->set_redirect(make_link("random"));
} else {
$page->set_mode(PageMode::REDIRECT);
$page->set_redirect(make_link('random/'.$search));
}
return;
}
if ($event->count_args() == 0) {
$search_terms = [];
} elseif ($event->count_args() == 1) {
$search_terms = explode(' ', $event->get_arg(0));
} else {
throw new SCoreException("Error: too many arguments.");
}
// set vars
$images_per_page = $config->get_int("random_images_list_count", 12);
$random_images = [];
// generate random images
for ($i = 0; $i < $images_per_page; $i++) {
$random_image = Image::by_random($search_terms);
if (!$random_image) {
continue;
}
array_push($random_images, $random_image);
}
$this->theme->set_page($search_terms);
$this->theme->display_page($page, $random_images);
}
}
public function onInitExt(InitExtEvent $event)
{
global $config;
$config->set_default_int("random_images_list_count", 12);
}
public function onSetupBuilding(SetupBuildingEvent $event)
{
$sb = new SetupBlock("Random Images List");
// custom headers
$sb->add_int_option(
"random_images_list_count",
"Amount of Random images to display "
);
$event->panel->add_block($sb);
}
public function onPageSubNavBuilding(PageSubNavBuildingEvent $event)
{
if ($event->parent=="posts") {
$event->add_nav_link("posts_random", new Link('random'), "Shuffle");
}
}
}