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/post_lock/main.php
Shish db0e788a67 [core] Deduplicate ImageAdditionEvent & ImageInfoSetEvent
Rather than ImageAddition triggering TagsSet/SourceSet/LockSet etc in one way, and ImageInfoSet triggering TagsSet/SourceSet/LockSet in a different way, why not have ImageAddition *just* deal with image addition, and then send a separate ImageInfoSet to deal with all of the metadata setting?
2024-02-20 22:15:24 +00:00

49 lines
1.3 KiB
PHP

<?php
declare(strict_types=1);
namespace Shimmie2;
class LockSetEvent extends Event
{
public Image $image;
public bool $locked;
public function __construct(Image $image, bool $locked)
{
parent::__construct();
$this->image = $image;
$this->locked = $locked;
}
}
class PostLock extends Extension
{
/** @var PostLockTheme */
protected Themelet $theme;
public function onImageInfoSet(ImageInfoSetEvent $event): void
{
global $page, $user;
if ($event->image->is_locked() && !$user->can(Permissions::EDIT_IMAGE_LOCK)) {
throw new PermissionDenied("Error: This image is locked and cannot be edited.");
}
if ($user->can(Permissions::EDIT_IMAGE_LOCK)) {
$locked = $event->get_param('locked') == "on";
send_event(new LockSetEvent($event->image, $locked));
}
}
public function onLockSet(LockSetEvent $event): void
{
global $user;
if ($user->can(Permissions::EDIT_IMAGE_LOCK)) {
$event->image->set_locked($event->locked);
}
}
public function onImageInfoBoxBuilding(ImageInfoBoxBuildingEvent $event): void
{
$event->add_part($this->theme->get_lock_editor_html($event->image), 42);
}
}