75 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /*
 | |
|  * Name: Bulk Add
 | |
|  * Author: Shish <webmaster@shishnet.org>
 | |
|  * 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 <code>/home/bob/uploads/holiday/2008/</code> and point
 | |
|  *  shimmie at <code>/home/bob/uploads</code>, then images will be
 | |
|  *  tagged "holiday 2008")
 | |
|  *  <p><b>Note:</b> requires the "admin" extension to be enabled
 | |
|  */
 | |
| 
 | |
| class BulkAddEvent extends Event {
 | |
| 	public $dir, $results;
 | |
| 
 | |
| 	public function __construct(string $dir) {
 | |
| 		$this->dir = $dir;
 | |
| 		$this->results = array();
 | |
| 	}
 | |
| }
 | |
| 
 | |
| 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);
 | |
| 				if(is_array($bae->results)) {
 | |
| 					foreach($bae->results as $result) {
 | |
| 						 $this->theme->add_status("Adding files", $result);
 | |
| 					}
 | |
| 				} else if(strlen($bae->results) > 0) {
 | |
| 					$this->theme->add_status("Adding files", $bae->results);
 | |
| 				}
 | |
| 				$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";
 | |
| 		}
 | |
| 	}
 | |
| }
 |