// All our remote Oembed images lack a local filename property in the File object
if (!is_null($file->filename)) {
+ common_debug(sprintf('Filename of file id==%d is not null (%s), so nothing oEmbed should handle.', $file->getID(), _ve($file->filename)));
return true;
}
$thumbnail = File_thumbnail::byFile($file);
} catch (NoResultException $e) {
// Not Oembed data, or at least nothing we either can or want to use.
+ common_debug('No oEmbed data found for file id=='.$file->getID());
return true;
}
$this->storeRemoteFileThumbnail($thumbnail);
} catch (AlreadyFulfilledException $e) {
// aw yiss!
+ } catch (Exception $e) {
+ common_debug(sprintf('oEmbed encountered an exception (%s) for file id==%d: %s', get_class($e), $file->getID(), _ve($e->getMessage())));
+ throw $e;
}
$imgPath = $thumbnail->getPath();
$ext = File::guessMimeExtension($info['mime']);
- // We'll trust sha256 (File::FILEHASH_ALG) not to have collision issues any time soon :)
- $filename = 'oembed-'.hash(File::FILEHASH_ALG, $imgData) . ".{$ext}";
+ $filename = sprintf('oembed-%d.%s', $thumbnail->getFileId(), $ext);
$fullpath = File_thumbnail::path($filename);
// Write the file to disk. Throw Exception on failure
if (!file_exists($fullpath) && file_put_contents($fullpath, $imgData) === false) {