112 lines
4.6 KiB
PHP
112 lines
4.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shimmie2;
|
|
|
|
class Blocks extends Extension
|
|
{
|
|
/** @var BlocksTheme */
|
|
protected Themelet $theme;
|
|
|
|
public function onDatabaseUpgrade(DatabaseUpgradeEvent $event)
|
|
{
|
|
global $database;
|
|
if ($this->get_version("ext_blocks_version") < 1) {
|
|
$database->create_table("blocks", "
|
|
id SCORE_AIPK,
|
|
pages VARCHAR(128) NOT NULL,
|
|
title VARCHAR(128) NOT NULL,
|
|
area VARCHAR(16) NOT NULL,
|
|
priority INTEGER NOT NULL,
|
|
content TEXT NOT NULL,
|
|
userclass TEXT
|
|
");
|
|
$database->execute("CREATE INDEX blocks_pages_idx ON blocks(pages)", []);
|
|
$this->set_version("ext_blocks_version", 2);
|
|
}
|
|
if ($this->get_version("ext_blocks_version") < 2) {
|
|
$database->execute("ALTER TABLE blocks ADD COLUMN userclass TEXT");
|
|
$this->set_version("ext_blocks_version", 2);
|
|
}
|
|
}
|
|
|
|
public function onPageSubNavBuilding(PageSubNavBuildingEvent $event)
|
|
{
|
|
global $user;
|
|
if ($event->parent==="system") {
|
|
if ($user->can(Permissions::MANAGE_BLOCKS)) {
|
|
$event->add_nav_link("blocks", new Link('blocks/list'), "Blocks Editor");
|
|
}
|
|
}
|
|
}
|
|
|
|
public function onUserBlockBuilding(UserBlockBuildingEvent $event)
|
|
{
|
|
global $user;
|
|
if ($user->can(Permissions::MANAGE_BLOCKS)) {
|
|
$event->add_link("Blocks Editor", make_link("blocks/list"));
|
|
}
|
|
}
|
|
|
|
public function onPageRequest(PageRequestEvent $event)
|
|
{
|
|
global $cache, $database, $page, $user;
|
|
|
|
$blocks = $cache->get("blocks");
|
|
if (is_null($blocks)) {
|
|
$blocks = $database->get_all("SELECT * FROM blocks");
|
|
$cache->set("blocks", $blocks, 600);
|
|
}
|
|
foreach ($blocks as $block) {
|
|
$path = implode("/", $event->args);
|
|
if (strlen($path) < 4000 && fnmatch($block['pages'], $path)) {
|
|
$b = new Block($block['title'], $block['content'], $block['area'], (int)$block['priority']);
|
|
$b->is_content = false;
|
|
|
|
# Split by comma, trimming whitespaces, and not allowing empty elements.
|
|
$userclasses = preg_split('/\s*,+\s*/', strtolower($block['userclass'] ?? ""), 0, PREG_SPLIT_NO_EMPTY);
|
|
if (empty($userclasses) || in_array(strtolower($user->class->name), $userclasses)) {
|
|
$page->add_block($b);
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($event->page_matches("blocks") && $user->can(Permissions::MANAGE_BLOCKS)) {
|
|
if ($event->get_arg(0) == "add") {
|
|
if ($user->check_auth_token()) {
|
|
$database->execute("
|
|
INSERT INTO blocks (pages, title, area, priority, content, userclass)
|
|
VALUES (:pages, :title, :area, :priority, :content, :userclass)
|
|
", ['pages'=>$_POST['pages'], 'title'=>$_POST['title'], 'area'=>$_POST['area'], 'priority'=>(int)$_POST['priority'], 'content'=>$_POST['content'], 'userclass'=>$_POST['userclass']]);
|
|
log_info("blocks", "Added Block #".($database->get_last_insert_id('blocks_id_seq'))." (".$_POST['title'].")");
|
|
$cache->delete("blocks");
|
|
$page->set_mode(PageMode::REDIRECT);
|
|
$page->set_redirect(make_link("blocks/list"));
|
|
}
|
|
}
|
|
if ($event->get_arg(0) == "update") {
|
|
if ($user->check_auth_token()) {
|
|
if (!empty($_POST['delete'])) {
|
|
$database->execute("
|
|
DELETE FROM blocks
|
|
WHERE id=:id
|
|
", ['id'=>$_POST['id']]);
|
|
log_info("blocks", "Deleted Block #".$_POST['id']);
|
|
} else {
|
|
$database->execute("
|
|
UPDATE blocks SET pages=:pages, title=:title, area=:area, priority=:priority, content=:content, userclass=:userclass
|
|
WHERE id=:id
|
|
", ['pages'=>$_POST['pages'], 'title'=>$_POST['title'], 'area'=>$_POST['area'], 'priority'=>(int)$_POST['priority'], 'content'=>$_POST['content'], 'userclass'=>$_POST['userclass'], 'id'=>$_POST['id']]);
|
|
log_info("blocks", "Updated Block #".$_POST['id']." (".$_POST['title'].")");
|
|
}
|
|
$cache->delete("blocks");
|
|
$page->set_mode(PageMode::REDIRECT);
|
|
$page->set_redirect(make_link("blocks/list"));
|
|
}
|
|
} elseif ($event->get_arg(0) == "list") {
|
|
$this->theme->display_blocks($database->get_all("SELECT * FROM blocks ORDER BY area, priority"));
|
|
}
|
|
}
|
|
}
|
|
}
|