259 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			259 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /*
 | |
|  * Name: Uploader
 | |
|  * Author: Shish
 | |
|  * Description: Allows people to upload files to the website
 | |
|  */
 | |
| 
 | |
| /*
 | |
|  * DataUploadEvent:
 | |
|  *   $user     -- the user uploading the data
 | |
|  *   $tmpname  -- the temporary file used for upload
 | |
|  *   $metadata -- info about the file, should contain at least "filename", "extension", "tags" and "source"
 | |
|  *
 | |
|  * Some data is being uploaded. Should be caught by a file handler.
 | |
|  */
 | |
| class DataUploadEvent extends Event {
 | |
| 	var $user, $tmpname, $metadata, $hash, $type, $image_id = -1;
 | |
| 
 | |
| 	public function DataUploadEvent($user, $tmpname, $metadata) {
 | |
| 		$this->user = $user;
 | |
| 		$this->tmpname = $tmpname;
 | |
| 
 | |
| 		$this->metadata = $metadata;
 | |
| 		$this->metadata['hash'] = md5_file($tmpname);
 | |
| 		$this->metadata['size'] = filesize($tmpname);
 | |
| 
 | |
| 		// useful for most file handlers, so pull directly into fields
 | |
| 		$this->hash = $this->metadata['hash'];
 | |
| 		$this->type = strtolower($metadata['extension']);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| class UploadException extends SCoreException {}
 | |
| 
 | |
| class Upload implements Extension {
 | |
| 	var $theme;
 | |
| // event handling {{{
 | |
| 	public function receive_event(Event $event) {
 | |
| 		global $config, $database, $page, $user;
 | |
| 		if(is_null($this->theme)) $this->theme = get_theme_object($this);
 | |
| 
 | |
| 		$is_full = (disk_free_space(realpath("./images/")) < 100*1024*1024);
 | |
| 
 | |
| 		if($event instanceof InitExtEvent) {
 | |
| 			global $config;
 | |
| 			$config->set_default_int('upload_count', 3);
 | |
| 			$config->set_default_int('upload_size', '1MB');
 | |
| 			$config->set_default_bool('upload_anon', false);
 | |
| 		}
 | |
| 
 | |
| 		if($event instanceof PostListBuildingEvent) {
 | |
| 			global $user;
 | |
| 			if($this->can_upload($user)) {
 | |
| 				if($is_full) {
 | |
| 					$this->theme->display_full($page);
 | |
| 				}
 | |
| 				else {
 | |
| 					$this->theme->display_block($page);
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		if(($event instanceof PageRequestEvent) && $event->page_matches("upload")) {
 | |
| 			if(count($_FILES) + count($_POST) > 0) {
 | |
| 				$tags = Tag::explode($_POST['tags']);
 | |
| 				$source = isset($_POST['source']) ? $_POST['source'] : null;
 | |
| 				if($this->can_upload($user)) {
 | |
| 					$ok = true;
 | |
| 					foreach($_FILES as $file) {
 | |
| 						$ok = $ok & $this->try_upload($file, $tags, $source);
 | |
| 					}
 | |
| 					foreach($_POST as $name => $value) {
 | |
| 						if(substr($name, 0, 3) == "url" && strlen($value) > 0) {
 | |
| 							$ok = $ok & $this->try_transload($value, $tags, $source);
 | |
| 						}
 | |
| 					}
 | |
| 
 | |
| 					$this->theme->display_upload_status($page, $ok);
 | |
| 				}
 | |
| 				else {
 | |
| 					$this->theme->display_permission_denied($page);
 | |
| 				}
 | |
| 			}
 | |
| 			else if(!empty($_GET['url'])) {
 | |
| 				global $user;
 | |
| 				if($this->can_upload($user)) {
 | |
| 					$url = $_GET['url'];
 | |
| 					$tags = array('tagme');
 | |
| 					if(!empty($_GET['tags']) && $_GET['tags'] != "null") {
 | |
| 						$tags = Tag::explode($_GET['tags']);
 | |
| 					}
 | |
| 					$ok = $this->try_transload($url, $tags, $url);
 | |
| 					$this->theme->display_upload_status($page, $ok);
 | |
| 				}
 | |
| 				else {
 | |
| 					$this->theme->display_permission_denied($page);
 | |
| 				}
 | |
| 			}
 | |
| 			else {
 | |
| 				if(!$is_full) {
 | |
| 					$this->theme->display_page($page);
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		if($event instanceof SetupBuildingEvent) {
 | |
| 			$sb = new SetupBlock("Upload");
 | |
| 			$sb->position = 10;
 | |
| 			$sb->add_int_option("upload_count", "Max uploads: ");
 | |
| 			$sb->add_shorthand_int_option("upload_size", "<br>Max size per file: ");
 | |
| 			$sb->add_bool_option("upload_anon", "<br>Allow anonymous uploads: ");
 | |
| 			$sb->add_choice_option("transload_engine", array(
 | |
| 				"Disabled" => "none",
 | |
| 				"cURL" => "curl",
 | |
| 				"fopen" => "fopen",
 | |
| 				"WGet" => "wget"
 | |
| 			), "<br>Transload: ");
 | |
| 			$event->panel->add_block($sb);
 | |
| 		}
 | |
| 
 | |
| 		if($event instanceof DataUploadEvent) {
 | |
| 			global $config;
 | |
| 			if($is_full) {
 | |
| 				throw new UploadException("Upload failed; disk nearly full");
 | |
| 			}
 | |
| 			if(filesize($event->tmpname) > $config->get_int('upload_size')) {
 | |
| 				$size = to_shorthand_int(filesize($event->tmpname));
 | |
| 				$limit = to_shorthand_int($config->get_int('upload_size'));
 | |
| 				throw new UploadException("File too large ($size > $limit)");
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| // }}}
 | |
| // do things {{{
 | |
| 	private function can_upload($user) {
 | |
| 		global $config;
 | |
| 		return ($config->get_bool("upload_anon") || !$user->is_anonymous());
 | |
| 	}
 | |
| 
 | |
| 	private function try_upload($file, $tags, $source) {
 | |
| 		global $page;
 | |
| 		global $config;
 | |
| 
 | |
| 		if(empty($source)) $source = null;
 | |
| 
 | |
| 		$ok = true;
 | |
| 
 | |
| 		// blank file boxes cause empty uploads, no need for error message
 | |
| 		if(file_exists($file['tmp_name'])) {
 | |
| 			global $user;
 | |
| 			$pathinfo = pathinfo($file['name']);
 | |
| 			$metadata['filename'] = $pathinfo['basename'];
 | |
| 			$metadata['extension'] = $pathinfo['extension'];
 | |
| 			$metadata['tags'] = $tags;
 | |
| 			$metadata['source'] = $source;
 | |
| 			$event = new DataUploadEvent($user, $file['tmp_name'], $metadata);
 | |
| 			try {
 | |
| 				send_event($event);
 | |
| 				if($event->image_id == -1) {
 | |
| 					throw new UploadException("File type not recognised");
 | |
| 				}
 | |
| 				header("X-Shimmie-Image-ID: ".int_escape($event->image_id));
 | |
| 			}
 | |
| 			catch(UploadException $ex) {
 | |
| 				$this->theme->display_upload_error($page, "Error with ".html_escape($file['name']),
 | |
| 					$ex->getMessage());
 | |
| 				$ok = false;
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		return $ok;
 | |
| 	}
 | |
| 
 | |
| 	private function try_transload($url, $tags, $source) {
 | |
| 		global $page;
 | |
| 		global $config;
 | |
| 
 | |
| 		$ok = true;
 | |
| 
 | |
| 		if(empty($source)) $source = $url;
 | |
| 
 | |
| 		// PHP falls back to system default if /tmp fails, can't we just
 | |
| 		// use the system default to start with? :-/
 | |
| 		$tmp_filename = tempnam("/tmp", "shimmie_transload");
 | |
| 		$filename = basename($url);
 | |
| 
 | |
| 		if($config->get_string("transload_engine") == "fopen") {
 | |
| 			$fp = @fopen($url, "r");
 | |
| 			if(!$fp) {
 | |
| 				$this->theme->display_upload_error($page, "Error with ".html_escape($filename),
 | |
| 					"Error reading from ".html_escape($url));
 | |
| 				return false;
 | |
| 			}
 | |
| 			$data = "";
 | |
| 			$length = 0;
 | |
| 			while(!feof($fp) && $length <= $config->get_int('upload_size')) {
 | |
| 				$data .= fread($fp, 8192);
 | |
| 				$length = strlen($data);
 | |
| 			}
 | |
| 			fclose($fp);
 | |
| 
 | |
| 			$fp = fopen($tmp_filename, "w");
 | |
| 			fwrite($fp, $data);
 | |
| 			fclose($fp);
 | |
| 		}
 | |
| 
 | |
| 		if($config->get_string("transload_engine") == "curl") {
 | |
| 			$ch = curl_init($url);
 | |
| 			$fp = fopen($tmp_filename, "w");
 | |
| 
 | |
| 			curl_setopt($ch, CURLOPT_FILE, $fp);
 | |
| 			curl_setopt($ch, CURLOPT_HEADER, 0);
 | |
| 			curl_setopt($ch, CURLOPT_REFERER, $url);
 | |
| 			curl_setopt($ch, CURLOPT_USERAGENT, "Shimmie-".VERSION);
 | |
| 
 | |
| 			curl_exec($ch);
 | |
| 			curl_close($ch);
 | |
| 			fclose($fp);
 | |
| 		}
 | |
| 
 | |
| 		if($config->get_string("transload_engine") == "wget") {
 | |
| 			$ua = "Shimmie-".VERSION;
 | |
| 			$s_url = escapeshellarg($url);
 | |
| 			$s_tmp = escapeshellarg($tmp_filename);
 | |
| 			system("wget $s_url --output-document=$s_tmp --user-agent=$ua --referer=$s_url");
 | |
| 		}
 | |
| 
 | |
| 		if(filesize($tmp_filename) == 0) {
 | |
| 			$this->theme->display_upload_error($page, "Error with ".html_escape($filename),
 | |
| 				"No data found -- perhaps the site has hotlink protection?");
 | |
| 			$ok = false;
 | |
| 		}
 | |
| 		else {
 | |
| 			global $user;
 | |
| 			$pathinfo = pathinfo($url);
 | |
| 			$metadata['filename'] = $pathinfo['basename'];
 | |
| 			$metadata['extension'] = $pathinfo['extension'];
 | |
| 			$metadata['tags'] = $tags;
 | |
| 			$metadata['source'] = $source;
 | |
| 			$event = new DataUploadEvent($user, $tmp_filename, $metadata);
 | |
| 			try {
 | |
| 				send_event($event);
 | |
| 			}
 | |
| 			catch(UploadException $ex) {
 | |
| 				$this->theme->display_upload_error($page, "Error with ".html_escape($url),
 | |
| 					$ex->getMessage());
 | |
| 				$ok = false;
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		unlink($tmp_filename);
 | |
| 
 | |
| 		return $ok;
 | |
| 	}
 | |
| // }}}
 | |
| }
 | |
| add_event_listener(new Upload(), 40); // early, so it can stop the DataUploadEvent before any data handlers see it
 | |
| ?>
 |