194 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			194 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php declare(strict_types=1);
 | 
						|
 | 
						|
/**
 | 
						|
 * Sent when the admin page is ready to be added to
 | 
						|
 */
 | 
						|
class AdminBuildingEvent extends Event
 | 
						|
{
 | 
						|
    /** @var Page */
 | 
						|
    public $page;
 | 
						|
 | 
						|
    public function __construct(Page $page)
 | 
						|
    {
 | 
						|
        parent::__construct();
 | 
						|
        $this->page = $page;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
class AdminActionEvent extends Event
 | 
						|
{
 | 
						|
    /** @var string */
 | 
						|
    public $action;
 | 
						|
    /** @var bool */
 | 
						|
    public $redirect = true;
 | 
						|
 | 
						|
    public function __construct(string $action)
 | 
						|
    {
 | 
						|
        parent::__construct();
 | 
						|
        $this->action = $action;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
class AdminPage extends Extension
 | 
						|
{
 | 
						|
    /** @var AdminPageTheme */
 | 
						|
    protected $theme;
 | 
						|
 | 
						|
    public function onPageRequest(PageRequestEvent $event)
 | 
						|
    {
 | 
						|
        global $page, $user;
 | 
						|
 | 
						|
        if ($event->page_matches("admin")) {
 | 
						|
            if (!$user->can(Permissions::MANAGE_ADMINTOOLS)) {
 | 
						|
                $this->theme->display_permission_denied();
 | 
						|
            } else {
 | 
						|
                if ($event->count_args() == 0) {
 | 
						|
                    send_event(new AdminBuildingEvent($page));
 | 
						|
                } else {
 | 
						|
                    $action = $event->get_arg(0);
 | 
						|
                    $aae = new AdminActionEvent($action);
 | 
						|
 | 
						|
                    if ($user->check_auth_token()) {
 | 
						|
                        log_info("admin", "Util: $action");
 | 
						|
                        set_time_limit(0);
 | 
						|
                        send_event($aae);
 | 
						|
                    }
 | 
						|
 | 
						|
                    if ($aae->redirect) {
 | 
						|
                        $page->set_mode(PageMode::REDIRECT);
 | 
						|
                        $page->set_redirect(make_link("admin"));
 | 
						|
                    }
 | 
						|
                }
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public function onCommand(CommandEvent $event)
 | 
						|
    {
 | 
						|
        if ($event->cmd == "help") {
 | 
						|
            print "\tget-page <query string>\n";
 | 
						|
            print "\t\teg 'get-page post/list'\n\n";
 | 
						|
            print "\tpost-page <query string> <urlencoded params>\n";
 | 
						|
            print "\t\teg 'post-page ip_ban/delete id=1'\n\n";
 | 
						|
            print "\tget-token\n";
 | 
						|
            print "\t\tget a CSRF auth token\n\n";
 | 
						|
            print "\tregen-thumb <id / hash>\n";
 | 
						|
            print "\t\tregenerate a thumbnail\n\n";
 | 
						|
            print "\tcache [get|set|del] [key] <value>\n";
 | 
						|
            print "\t\teg 'cache get config'\n\n";
 | 
						|
        }
 | 
						|
        if ($event->cmd == "get-page") {
 | 
						|
            global $page;
 | 
						|
            if (isset($event->args[1])) {
 | 
						|
                parse_str($event->args[1], $_GET);
 | 
						|
            }
 | 
						|
            send_event(new PageRequestEvent($event->args[0]));
 | 
						|
            $page->display();
 | 
						|
        }
 | 
						|
        if ($event->cmd == "post-page") {
 | 
						|
            global $page;
 | 
						|
            $_SERVER['REQUEST_METHOD'] = "POST";
 | 
						|
            if (isset($event->args[1])) {
 | 
						|
                parse_str($event->args[1], $_POST);
 | 
						|
            }
 | 
						|
            send_event(new PageRequestEvent($event->args[0]));
 | 
						|
            $page->display();
 | 
						|
        }
 | 
						|
        if ($event->cmd == "get-token") {
 | 
						|
            global $user;
 | 
						|
            print($user->get_auth_token());
 | 
						|
        }
 | 
						|
        if ($event->cmd == "regen-thumb") {
 | 
						|
            $uid = $event->args[0];
 | 
						|
            $image = Image::by_id_or_hash($uid);
 | 
						|
            if ($image) {
 | 
						|
                send_event(new ThumbnailGenerationEvent($image->hash, $image->ext, true));
 | 
						|
            } else {
 | 
						|
                print("No post with ID '$uid'\n");
 | 
						|
            }
 | 
						|
        }
 | 
						|
        if ($event->cmd == "cache") {
 | 
						|
            global $cache;
 | 
						|
            $cmd = $event->args[0];
 | 
						|
            $key = $event->args[1];
 | 
						|
            switch ($cmd) {
 | 
						|
                case "get":
 | 
						|
                    var_dump($cache->get($key));
 | 
						|
                    break;
 | 
						|
                case "set":
 | 
						|
                    $cache->set($key, $event->args[2], 60);
 | 
						|
                    break;
 | 
						|
                case "del":
 | 
						|
                    $cache->delete($key);
 | 
						|
                    break;
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public function onAdminBuilding(AdminBuildingEvent $event)
 | 
						|
    {
 | 
						|
        $this->theme->display_page();
 | 
						|
        $this->theme->display_form();
 | 
						|
    }
 | 
						|
 | 
						|
    public function onPageSubNavBuilding(PageSubNavBuildingEvent $event)
 | 
						|
    {
 | 
						|
        global $user;
 | 
						|
        if ($event->parent==="system") {
 | 
						|
            if ($user->can(Permissions::MANAGE_ADMINTOOLS)) {
 | 
						|
                $event->add_nav_link("admin", new Link('admin'), "Board Admin");
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public function onUserBlockBuilding(UserBlockBuildingEvent $event)
 | 
						|
    {
 | 
						|
        global $user;
 | 
						|
        if ($user->can(Permissions::MANAGE_ADMINTOOLS)) {
 | 
						|
            $event->add_link("Board Admin", make_link("admin"));
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public function onAdminAction(AdminActionEvent $event)
 | 
						|
    {
 | 
						|
        $action = $event->action;
 | 
						|
        if (method_exists($this, $action)) {
 | 
						|
            $event->redirect = $this->$action();
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    private function set_tag_case()
 | 
						|
    {
 | 
						|
        global $database;
 | 
						|
        $database->execute(
 | 
						|
            "UPDATE tags SET tag=:tag1 WHERE LOWER(tag) = LOWER(:tag2)",
 | 
						|
            ["tag1" => $_POST['tag'], "tag2" => $_POST['tag']]
 | 
						|
        );
 | 
						|
        log_info("admin", "Fixed the case of {$_POST['tag']}", "Fixed case");
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
 | 
						|
    private function lowercase_all_tags()
 | 
						|
    {
 | 
						|
        global $database;
 | 
						|
        $database->execute("UPDATE tags SET tag=lower(tag)");
 | 
						|
        log_warning("admin", "Set all tags to lowercase", "Set all tags to lowercase");
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
 | 
						|
    private function recount_tag_use()
 | 
						|
    {
 | 
						|
        global $database;
 | 
						|
        $database->Execute("
 | 
						|
			UPDATE tags
 | 
						|
			SET count = COALESCE(
 | 
						|
				(SELECT COUNT(image_id) FROM image_tags WHERE tag_id=tags.id GROUP BY tag_id),
 | 
						|
				0
 | 
						|
			)
 | 
						|
		");
 | 
						|
        $database->Execute("DELETE FROM tags WHERE count=0");
 | 
						|
        log_warning("admin", "Re-counted tags", "Re-counted tags");
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
}
 |