[StoreRemoteMedia] StoreRemoteMedia now uses the new filename format, which allows it to display correctly in the UI. Formatting fixes
This commit is contained in:
committed by
Diogo Cordeiro
parent
8f31a1a820
commit
f746866b65
@@ -10,19 +10,21 @@ class StoreRemoteMediaPlugin extends Plugin
|
||||
|
||||
// settings which can be set in config.php with addPlugin('Oembed', array('param'=>'value', ...));
|
||||
// WARNING, these are _regexps_ (slashes added later). Always escape your dots and end your strings
|
||||
public $domain_whitelist = array( // hostname => service provider
|
||||
'^i\d*\.ytimg\.com$' => 'YouTube',
|
||||
'^i\d*\.vimeocdn\.com$' => 'Vimeo',
|
||||
);
|
||||
public $append_whitelist = array(); // fill this array as domain_whitelist to add more trusted sources
|
||||
public $check_whitelist = false; // security/abuse precaution
|
||||
public $domain_whitelist = [
|
||||
// hostname => service provider
|
||||
'^i\d*\.ytimg\.com$' => 'YouTube',
|
||||
'^i\d*\.vimeocdn\.com$' => 'Vimeo',
|
||||
];
|
||||
|
||||
public $domain_blacklist = array();
|
||||
public $append_whitelist = []; // fill this array as domain_whitelist to add more trusted sources
|
||||
public $check_whitelist = false; // security/abuse precaution
|
||||
|
||||
public $domain_blacklist = [];
|
||||
public $check_blacklist = false;
|
||||
|
||||
public $max_image_bytes = 10485760; // 10MiB max image size by default
|
||||
public $max_image_bytes = 10 * 1024 * 1024; // 10MiB max image size by default
|
||||
|
||||
protected $imgData = array();
|
||||
protected $imgData = [];
|
||||
|
||||
// these should be declared protected everywhere
|
||||
public function initialize()
|
||||
@@ -32,38 +34,6 @@ class StoreRemoteMediaPlugin extends Plugin
|
||||
$this->domain_whitelist = array_merge($this->domain_whitelist, $this->append_whitelist);
|
||||
}
|
||||
|
||||
/**
|
||||
* Save embedding information for a File, if applicable.
|
||||
*
|
||||
* Normally this event is called through File::saveNew()
|
||||
*
|
||||
* @param File $file The abount-to-be-inserted File object.
|
||||
*
|
||||
* @return boolean success
|
||||
*/
|
||||
public function onStartFileSaveNew(File &$file)
|
||||
{
|
||||
// save given URL as title if it's a media file this plugin understands
|
||||
// which will make it shown in the AttachmentList widgets
|
||||
|
||||
if (isset($file->title) && strlen($file->title)>0) {
|
||||
// Title is already set
|
||||
return true;
|
||||
}
|
||||
if (!isset($file->mimetype)) {
|
||||
// Unknown mimetype, it's not our job to figure out what it is.
|
||||
return true;
|
||||
}
|
||||
switch (common_get_mime_media($file->mimetype)) {
|
||||
case 'image':
|
||||
// Just to set something for now at least...
|
||||
//$file->title = $file->mimetype;
|
||||
break;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public function onCreateFileImageThumbnailSource(File $file, &$imgPath, $media=null)
|
||||
{
|
||||
// If we are on a private node, we won't do any remote calls (just as a precaution until
|
||||
@@ -92,41 +62,61 @@ class StoreRemoteMediaPlugin extends Plugin
|
||||
return true;
|
||||
}
|
||||
|
||||
// Relative URL, something's off
|
||||
if (empty(parse_url($remoteUrl, PHP_URL_HOST))) {
|
||||
common_err("StoreRemoteMedia found a url without host (\"{$remoteUrl}\") for file with id = {$file->id}");
|
||||
return true;
|
||||
}
|
||||
|
||||
try {
|
||||
/*
|
||||
|
||||
$http = new HTTPClient();
|
||||
common_debug(sprintf('Performing HEAD request for remote file id==%u to avoid unnecessarily downloading too large files. URL: %s', $file->getID(), $remoteUrl));
|
||||
common_debug(sprintf('Performing HEAD request for remote file id==%u to avoid '.
|
||||
'unnecessarily downloading too large files. URL: %s',
|
||||
$file->getID(), $remoteUrl));
|
||||
|
||||
$head = $http->head($remoteUrl);
|
||||
$remoteUrl = $head->getEffectiveUrl(); // to avoid going through redirects again
|
||||
if (!$this->checkBlackList($remoteUrl)) {
|
||||
common_log(LOG_WARN, sprintf('%s: Non-blacklisted URL %s redirected to blacklisted URL %s', __CLASS__, $file->getUrl(), $remoteUrl));
|
||||
common_log(LOG_WARN, sprintf('%s: Non-blacklisted URL %s redirected to blacklisted URL %s',
|
||||
__CLASS__, $file->getUrl(), $remoteUrl));
|
||||
return true;
|
||||
}
|
||||
|
||||
$headers = $head->getHeader();
|
||||
$filesize = isset($headers['content-length']) ? $headers['content-length'] : null;
|
||||
*/
|
||||
$filesize = $file->getSize();
|
||||
$filesize = isset($headers['content-length']) ?: $file->getSize();
|
||||
|
||||
if (empty($filesize)) {
|
||||
// file size not specified on remote server
|
||||
common_debug(sprintf('%s: Ignoring remote media because we did not get a content length for file id==%u', __CLASS__, $file->getID()));
|
||||
common_debug(sprintf('%s: Ignoring remote media because we did not get a ' .
|
||||
'content length for file id==%u', __CLASS__, $file->getID()));
|
||||
return true;
|
||||
} elseif ($filesize > $this->max_image_bytes) {
|
||||
//FIXME: When we perhaps start fetching videos etc. we'll need to differentiate max_image_bytes from that...
|
||||
//FIXME: When we perhaps start fetching videos etc. we'll need to
|
||||
// differentiate max_image_bytes from that...
|
||||
|
||||
// file too big according to plugin configuration
|
||||
common_debug(sprintf('%s: Skipping remote media because content length (%u) is larger than plugin configured max_image_bytes (%u) for file id==%u', __CLASS__, intval($filesize), $this->max_image_bytes, $file->getID()));
|
||||
common_debug(sprintf('%s: Skipping remote media because content length (%u) ' .
|
||||
'is larger than plugin configured max_image_bytes (%u) ' .
|
||||
'for file id==%u', __CLASS__, intval($filesize),
|
||||
$this->max_image_bytes, $file->getID()));
|
||||
return true;
|
||||
} elseif ($filesize > common_config('attachments', 'file_quota')) {
|
||||
// file too big according to site configuration
|
||||
common_debug(sprintf('%s: Skipping remote media because content length (%u) is larger than file_quota (%u) for file id==%u', __CLASS__, intval($filesize), common_config('attachments', 'file_quota'), $file->getID()));
|
||||
common_debug(sprintf('%s: Skipping remote media because content length (%u) ' .
|
||||
'is larger than file_quota (%u) for file id==%u',
|
||||
__CLASS__, intval($filesize),
|
||||
common_config('attachments', 'file_quota'), $file->getID()));
|
||||
return true;
|
||||
}
|
||||
|
||||
// Then we download the file to memory and test whether it's actually an image file
|
||||
common_debug(sprintf('Downloading remote file id==%u (should be size %u) with effective URL: %s', $file->getID(), $filesize, _ve($remoteUrl)));
|
||||
common_debug(sprintf('Downloading remote file id=%u (should be size %u) ' .
|
||||
'with effective URL: %s', $file->getID(), $filesize, _ve($remoteUrl)));
|
||||
$imgData = HTTPClient::quickGet($remoteUrl);
|
||||
} catch (HTTP_Request2_ConnectionException $e) {
|
||||
common_log(LOG_ERR, __CLASS__.': '._ve(get_class($e)).' on URL: '._ve($file->getUrl()).' threw exception: '.$e->getMessage());
|
||||
common_log(LOG_ERR, __CLASS__.': '._ve(get_class($e)).' on URL: ' .
|
||||
_ve($file->getUrl()).' threw exception: '.$e->getMessage());
|
||||
return true;
|
||||
}
|
||||
$info = @getimagesizefromstring($imgData);
|
||||
@@ -143,9 +133,16 @@ class StoreRemoteMediaPlugin extends Plugin
|
||||
|
||||
//FIXME: Add some code so we don't have to store duplicate File rows for same hash files.
|
||||
} catch (NoResultException $e) {
|
||||
$filename = $filehash . '.' . common_supported_mime_to_ext($info['mime']);
|
||||
if (preg_match('/^.+; filename="(.+?)"$/', $headers['content-disposition'], $matches) === 1) {
|
||||
$filename = MediaFile::encodeFilename($matches[1], $filehash);
|
||||
} else {
|
||||
common_log(LOG_ERR, "Couldn't determine filename for url: {$remoteUrl}");
|
||||
// throw new ServerError(_("Couldn't determine filename for url: {$remoteUrl}"));
|
||||
}
|
||||
$fullpath = File::path($filename);
|
||||
|
||||
common_debug("StoreRemoteMedia retrieved file with id={$file->id} and will store in {$filename}");
|
||||
|
||||
// Write the file to disk if it doesn't exist yet. Throw Exception on failure.
|
||||
if (!file_exists($fullpath) && file_put_contents($fullpath, $imgData) === false) {
|
||||
throw new ServerException(_('Could not write downloaded file to disk.'));
|
||||
@@ -160,9 +157,11 @@ class StoreRemoteMediaPlugin extends Plugin
|
||||
// Throws exception on failure.
|
||||
$file->updateWithKeys($orig);
|
||||
}
|
||||
|
||||
// Get rid of the file from memory
|
||||
unset($imgData);
|
||||
|
||||
// Output
|
||||
$imgPath = $file->getPath();
|
||||
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user