* Link: http://code.shishnet.org/shimmie2/ * License: GPLv2 * Description: Bulk add server-side images * Documentation: * Upload the images into a new directory via ftp or similar, go to * shimmie's admin page and put that directory in the bulk add box. * If there are subdirectories, they get used as tags (eg if you * upload into /home/bob/uploads/holiday/2008/ and point * shimmie at /home/bob/uploads, then images will be * tagged "holiday 2008") *

Note: requires the "admin" extension to be enabled */ class BulkAddEvent extends Event { public $dir; public $results; public function __construct(string $dir) { $this->dir = $dir; $this->results = []; } } class BulkAdd extends Extension { public function onPageRequest(PageRequestEvent $event) { global $page, $user; if ($event->page_matches("bulk_add")) { if ($user->is_admin() && $user->check_auth_token() && isset($_POST['dir'])) { set_time_limit(0); $bae = new BulkAddEvent($_POST['dir']); send_event($bae); foreach ($bae->results as $result) { $this->theme->add_status("Adding files", $result); } $this->theme->display_upload_results($page); } } } public function onCommand(CommandEvent $event) { if ($event->cmd == "help") { print "\tbulk-add [directory]\n"; print "\t\tImport this directory\n\n"; } if ($event->cmd == "bulk-add") { if (count($event->args) == 1) { $bae = new BulkAddEvent($event->args[0]); send_event($bae); print(implode("\n", $bae->results)); } } } public function onAdminBuilding(AdminBuildingEvent $event) { $this->theme->display_admin_block(); } public function onBulkAdd(BulkAddEvent $event) { if (is_dir($event->dir) && is_readable($event->dir)) { $event->results = add_dir($event->dir); } else { $h_dir = html_escape($event->dir); $event->results[] = "Error, $h_dir is not a readable directory"; } } }