EmbedPlugin.php 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695
  1. <?php
  2. // This file is part of GNU social - https://www.gnu.org/software/social
  3. //
  4. // GNU social is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Affero General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // GNU social is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Affero General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Affero General Public License
  15. // along with GNU social. If not, see <http://www.gnu.org/licenses/>.
  16. /**
  17. * OEmbed and OpenGraph implementation for GNU social
  18. *
  19. * @package GNUsocial
  20. * @author Stephen Paul Weber
  21. * @author hannes
  22. * @author Mikael Nordfeldth
  23. * @author Diogo Cordeiro <diogo@fc.up.pt>
  24. * @author Miguel Dantas <biodantasgs@gmail.com>
  25. * @copyright 2019 Free Software Foundation, Inc http://www.fsf.org
  26. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  27. */
  28. defined('GNUSOCIAL') || die();
  29. use Embed\Embed;
  30. /**
  31. * Base class for the Embed plugin that does most of the heavy lifting to get
  32. * and display representations for remote content.
  33. *
  34. * @copyright 2019 Free Software Foundation, Inc http://www.fsf.org
  35. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  36. */
  37. class EmbedPlugin extends Plugin
  38. {
  39. const PLUGIN_VERSION = '0.1.0';
  40. // settings which can be set in config.php with addPlugin('Embed', ['param'=>'value', ...]);
  41. // WARNING, these are _regexps_ (slashes added later). Always escape your dots and end ('$') your strings
  42. public $domain_whitelist = [
  43. // hostname => service provider
  44. '^i\d*\.ytimg\.com$' => 'YouTube',
  45. '^i\d*\.vimeocdn\.com$' => 'Vimeo',
  46. ];
  47. public $append_whitelist = []; // fill this array as domain_whitelist to add more trusted sources
  48. public $check_whitelist = false; // security/abuse precaution
  49. public $thumbnail_width = 128;
  50. public $thumbnail_height = 128;
  51. public $thumbnail_crop = true;
  52. protected $imgData = [];
  53. /**
  54. * Initialize the Embed plugin and set up the environment it needs for it.
  55. * Returns true if it initialized properly, the exception object if it
  56. * doesn't.
  57. */
  58. public function initialize()
  59. {
  60. parent::initialize();
  61. $this->domain_whitelist = array_merge($this->domain_whitelist, $this->append_whitelist);
  62. }
  63. /**
  64. * The code executed on GNU social checking the database schema, which in
  65. * this case is to make sure we have the plugin table we need.
  66. *
  67. * @return bool true if it ran successfully, the exception object if it doesn't.
  68. */
  69. public function onCheckSchema()
  70. {
  71. $this->onEndUpgrade(); // Ensure rename
  72. $schema = Schema::get();
  73. $schema->ensureTable('file_embed', File_embed::schemaDef());
  74. return true;
  75. }
  76. public function onEndUpgrade()
  77. {
  78. $schema = Schema::get();
  79. return $schema->renameTable('file_oembed', 'file_embed');
  80. }
  81. /**
  82. * This code executes when GNU social creates the page routing, and we hook
  83. * on this event to add our action handler for Embed.
  84. *
  85. * @param $m URLMapper the router that was initialized.
  86. * @return void true if successful, the exception object if it isn't.
  87. * @throws Exception
  88. */
  89. public function onRouterInitialized(URLMapper $m)
  90. {
  91. $m->connect('main/oembed', ['action' => 'oembed']);
  92. }
  93. /**
  94. * This event executes when GNU social encounters a remote URL we then decide
  95. * to interrogate for metadata. Embed gloms onto it to see if we have an
  96. * oEmbed endpoint or image to try to represent in the post.
  97. *
  98. * @param $url string the remote URL we're looking at
  99. * @param $dom DOMDocument the document we're getting metadata from
  100. * @param $metadata stdClass class representing the metadata
  101. * @return bool true if successful, the exception object if it isn't.
  102. */
  103. public function onGetRemoteUrlMetadataFromDom($url, DOMDocument $dom, stdClass &$metadata)
  104. {
  105. try {
  106. common_log(LOG_INFO, "Trying to find Embed data for {$url} with 'oscarotero/Embed'");
  107. $info = Embed::create($url);
  108. $metadata->version = '1.0'; // Yes.
  109. $metadata->provider_name = $info->authorName;
  110. $metadata->title = $info->title;
  111. $metadata->html = common_purify($info->description);
  112. $metadata->type = $info->type;
  113. $metadata->url = $info->url;
  114. $metadata->thumbnail_height = $info->imageHeight;
  115. $metadata->thumbnail_width = $info->imageWidth;
  116. if (substr($info->image, 0, 4) === 'data') {
  117. // Inline image
  118. $imgData = base64_decode(substr($info->image, stripos($info->image, 'base64,') + 7));
  119. list($filename, , ) = $this->validateAndWriteImage($imgData);
  120. // Use a file URI for images, as file_embed can't store a filename
  121. $metadata->thumbnail_url = 'file://' . File_thumbnail::path($filename);
  122. } else {
  123. $metadata->thumbnail_url = $info->image;
  124. }
  125. } catch (Exception $e) {
  126. common_log(LOG_INFO, "Failed to find Embed data for {$url} with 'oscarotero/Embed'" .
  127. ", got exception: " . get_class($e));
  128. }
  129. if (isset($metadata->thumbnail_url)) {
  130. // sometimes sites serve the path, not the full URL, for images
  131. // let's "be liberal in what you accept from others"!
  132. // add protocol and host if the thumbnail_url starts with /
  133. if ($metadata->thumbnail_url[0] == '/') {
  134. $thumbnail_url_parsed = parse_url($metadata->url);
  135. $metadata->thumbnail_url = "{$thumbnail_url_parsed['scheme']}://".
  136. "{$thumbnail_url_parsed['host']}{$metadata->thumbnail_url}";
  137. }
  138. // some wordpress opengraph implementations sometimes return a white blank image
  139. // no need for us to save that!
  140. if ($metadata->thumbnail_url == 'https://s0.wp.com/i/blank.jpg') {
  141. unset($metadata->thumbnail_url);
  142. }
  143. // FIXME: this is also true of locally-installed wordpress so we should watch out for that.
  144. }
  145. return true;
  146. }
  147. public function onEndShowHeadElements(Action $action)
  148. {
  149. switch ($action->getActionName()) {
  150. case 'attachment':
  151. $url = common_local_url('attachment', ['attachment' => $action->attachment->getID()]);
  152. break;
  153. case 'shownotice':
  154. if (!$action->notice->isLocal()) {
  155. return true;
  156. }
  157. try {
  158. $url = $action->notice->getUrl();
  159. } catch (InvalidUrlException $e) {
  160. // The notice is probably a share or similar, which don't
  161. // have a representational URL of their own.
  162. return true;
  163. }
  164. break;
  165. }
  166. if (isset($url)) {
  167. foreach (['xml', 'json'] as $format) {
  168. $action->element(
  169. 'link',
  170. [
  171. 'rel' =>'alternate',
  172. 'type' => "application/{$format}+oembed",
  173. 'href' => common_local_url('oembed', [], ['format' => $format, 'url' => $url]),
  174. 'title' => 'oEmbed'
  175. ]
  176. );
  177. }
  178. }
  179. return true;
  180. }
  181. public function onEndShowStylesheets(Action $action)
  182. {
  183. $action->cssLink($this->path('css/embed.css'));
  184. return true;
  185. }
  186. /**
  187. * Save embedding information for a File, if applicable.
  188. *
  189. * Normally this event is called through File::saveNew()
  190. *
  191. * @param File $file The newly inserted File object.
  192. *
  193. * @return boolean success
  194. */
  195. public function onEndFileSaveNew(File $file)
  196. {
  197. $fe = File_embed::getKV('file_id', $file->getID());
  198. if ($fe instanceof File_embed) {
  199. common_log(LOG_WARNING, "Strangely, a File_embed object exists for new file {$file->getID()}", __FILE__);
  200. return true;
  201. }
  202. if (isset($file->mimetype)
  203. && (('text/html' === substr($file->mimetype, 0, 9) ||
  204. 'application/xhtml+xml' === substr($file->mimetype, 0, 21)))) {
  205. try {
  206. $embed_data = File_embed::getEmbed($file->url);
  207. if ($embed_data === false) {
  208. throw new Exception("Did not get Embed data from URL {$file->url}");
  209. }
  210. $file->setTitle($embed_data->title);
  211. } catch (Exception $e) {
  212. common_log(LOG_WARNING, sprintf(
  213. __METHOD__.': %s thrown when getting embed data: %s',
  214. get_class($e),
  215. _ve($e->getMessage())
  216. ));
  217. return true;
  218. }
  219. File_embed::saveNew($embed_data, $file->getID());
  220. }
  221. return true;
  222. }
  223. public function onEndShowAttachmentLink(HTMLOutputter $out, File $file)
  224. {
  225. $embed = File_embed::getKV('file_id', $file->getID());
  226. if (empty($embed->author_name) && empty($embed->provider)) {
  227. return true;
  228. }
  229. $out->elementStart('div', ['id'=>'oembed_info', 'class'=>'e-content']);
  230. foreach (['author_name' => ['class' => ' author', 'url' => 'author_url'],
  231. 'provider' => ['class' => '', 'url' => 'provider_url']]
  232. as $field => $options) {
  233. if (!empty($embed->{$field})) {
  234. $out->elementStart('div', "fn vcard" . $options['class']);
  235. if (empty($embed->{$options['url']})) {
  236. $out->text($embed->{$field});
  237. } else {
  238. $out->element(
  239. 'a',
  240. ['href' => $embed->{$options['url']},
  241. 'class' => 'url'],
  242. $embed->{$field}
  243. );
  244. }
  245. }
  246. }
  247. $out->elementEnd('div');
  248. }
  249. public function onFileEnclosureMetadata(File $file, &$enclosure)
  250. {
  251. // Never treat generic HTML links as an enclosure type!
  252. // But if we have embed info, we'll consider it golden.
  253. $embed = File_embed::getKV('file_id', $file->getID());
  254. if (!$embed instanceof File_embed || !in_array($embed->type, ['photo', 'video'])) {
  255. return true;
  256. }
  257. foreach (['mimetype', 'url', 'title', 'modified', 'width', 'height'] as $key) {
  258. if (isset($embed->{$key}) && !empty($embed->{$key})) {
  259. $enclosure->{$key} = $embed->{$key};
  260. }
  261. }
  262. return true;
  263. }
  264. public function onStartShowAttachmentRepresentation(HTMLOutputter $out, File $file)
  265. {
  266. try {
  267. $embed = File_embed::getByFile($file);
  268. } catch (NoResultException $e) {
  269. return true;
  270. }
  271. // Show thumbnail as usual if it's a photo.
  272. if ($embed->type === 'photo') {
  273. return true;
  274. }
  275. $out->elementStart('article', ['class'=>'h-entry embed']);
  276. $out->elementStart('header');
  277. try {
  278. $thumb = $file->getThumbnail($this->thumbnail_width, $this->thumbnail_height);
  279. $out->element('img', $thumb->getHtmlAttrs(['class'=>'u-photo embed']));
  280. unset($thumb);
  281. } catch (FileNotFoundException $e) {
  282. // Nothing to show
  283. } catch (Exception $e) {
  284. $out->element('div', ['class'=>'error'], $e->getMessage());
  285. }
  286. $out->elementStart('h5', ['class'=>'p-name embed']);
  287. $out->element('a', ['class'=>'u-url', 'href'=>$file->getUrl()], common_strip_html($embed->title));
  288. $out->elementEnd('h5');
  289. $out->elementStart('div', ['class'=>'p-author embed']);
  290. if (!empty($embed->author_name)) {
  291. // TRANS: text before the author name of embed attachment representation
  292. // FIXME: The whole "By x from y" should be i18n because of different language constructions.
  293. $out->text(_('By '));
  294. $attrs = ['class'=>'h-card p-author'];
  295. if (!empty($embed->author_url)) {
  296. $attrs['href'] = $embed->author_url;
  297. $tag = 'a';
  298. } else {
  299. $tag = 'span';
  300. }
  301. $out->element($tag, $attrs, $embed->author_name);
  302. }
  303. if (!empty($embed->provider)) {
  304. // TRANS: text between the embed author name and provider url
  305. // FIXME: The whole "By x from y" should be i18n because of different language constructions.
  306. $out->text(_(' from '));
  307. $attrs = ['class'=>'h-card'];
  308. if (!empty($embed->provider_url)) {
  309. $attrs['href'] = $embed->provider_url;
  310. $tag = 'a';
  311. } else {
  312. $tag = 'span';
  313. }
  314. $out->element($tag, $attrs, $embed->provider);
  315. }
  316. $out->elementEnd('div');
  317. $out->elementEnd('header');
  318. $out->elementStart('div', ['class'=>'p-summary embed']);
  319. $out->raw(common_purify($embed->html));
  320. $out->elementEnd('div');
  321. $out->elementStart('footer');
  322. $out->elementEnd('footer');
  323. $out->elementEnd('article');
  324. return false;
  325. }
  326. public function onShowUnsupportedAttachmentRepresentation(HTMLOutputter $out, File $file)
  327. {
  328. try {
  329. $embed = File_embed::getByFile($file);
  330. } catch (NoResultException $e) {
  331. return true;
  332. }
  333. // the 'photo' type is shown through ordinary means, using StartShowAttachmentRepresentation!
  334. switch ($embed->type) {
  335. case 'video':
  336. case 'link':
  337. if (!empty($embed->html)
  338. && (GNUsocial::isAjax() || common_config('attachments', 'show_html'))) {
  339. $purifier = new HTMLPurifier();
  340. // FIXME: do we allow <object> and <embed> here? we did that when we used htmLawed,
  341. // but I'm not sure anymore...
  342. $out->raw($purifier->purify($embed->html));
  343. }
  344. return false;
  345. }
  346. return true;
  347. }
  348. /**
  349. * This event executes when GNU social is creating a file thumbnail entry in
  350. * the database. We glom onto this to create proper information for Embed
  351. * object thumbnails.
  352. *
  353. * @param $file File the file of the created thumbnail
  354. * @param &$imgPath string = the path to the created thumbnail
  355. * @return bool true if it succeeds (including non-action
  356. * states where it isn't oEmbed data, so it doesn't mess up the event handle
  357. * for other things hooked into it), or the exception if it fails.
  358. */
  359. public function onCreateFileImageThumbnailSource(File $file, &$imgPath, $media)
  360. {
  361. // If we are on a private node, we won't do any remote calls (just as a precaution until
  362. // we can configure this from config.php for the private nodes)
  363. if (common_config('site', 'private')) {
  364. return true;
  365. }
  366. // All our remote Embed images lack a local filename property in the File object
  367. if (!is_null($file->filename)) {
  368. common_debug(sprintf('Filename of file id==%d is not null (%s), so nothing Embed '.
  369. 'should handle.', $file->getID(), _ve($file->filename)));
  370. return true;
  371. }
  372. try {
  373. // If we have proper Embed data, there should be an entry in the File_thumbnail table.
  374. // If not, we're not going to do anything.
  375. $thumbnail = File_thumbnail::byFile($file);
  376. } catch (NoResultException $e) {
  377. // Not Embed data, or at least nothing we either can or want to use.
  378. common_debug('No Embed data found for file id=='.$file->getID());
  379. return true;
  380. }
  381. try {
  382. $this->storeRemoteFileThumbnail($thumbnail);
  383. } catch (AlreadyFulfilledException $e) {
  384. // aw yiss!
  385. } catch (Exception $e) {
  386. common_debug(sprintf(
  387. 'Embed encountered an exception (%s) for file id==%d: %s',
  388. get_class($e),
  389. $file->getID(),
  390. _ve($e->getMessage())
  391. ));
  392. throw $e;
  393. }
  394. // Out
  395. $imgPath = $thumbnail->getPath();
  396. return !file_exists($imgPath);
  397. }
  398. public function onFileDeleteRelated(File $file, array &$related): bool
  399. {
  400. $related[] = 'File_embed';
  401. return true;
  402. }
  403. /**
  404. * @return bool false on no check made, provider name on success
  405. * @throws ServerException if check is made but fails
  406. */
  407. protected function checkWhitelist($url)
  408. {
  409. if (!$this->check_whitelist) {
  410. return false; // indicates "no check made"
  411. }
  412. $host = parse_url($url, PHP_URL_HOST);
  413. foreach ($this->domain_whitelist as $regex => $provider) {
  414. if (preg_match("/$regex/", $host)) {
  415. return $provider; // we trust this source, return provider name
  416. }
  417. }
  418. throw new ServerException(sprintf(_('Domain not in remote thumbnail source whitelist: %s'), $host));
  419. }
  420. /**
  421. * Check the file size of a remote file using a HEAD request and checking
  422. * the content-length variable returned. This isn't 100% foolproof but is
  423. * reliable enough for our purposes.
  424. *
  425. * @return string|bool the file size if it succeeds, false otherwise.
  426. */
  427. private function getRemoteFileSize($url, $headers = null)
  428. {
  429. try {
  430. if ($headers === null) {
  431. if (!common_valid_http_url($url)) {
  432. common_log(LOG_ERR, "Invalid URL in Embed::getRemoteFileSize()");
  433. return false;
  434. }
  435. $head = (new HTTPClient())->head($url);
  436. $headers = $head->getHeader();
  437. $headers = array_change_key_case($headers, CASE_LOWER);
  438. }
  439. return isset($headers['content-length']) ? $headers['content-length'] : false;
  440. } catch (Exception $err) {
  441. common_log(LOG_ERR, __CLASS__.': getRemoteFileSize on URL : '._ve($url).
  442. ' threw exception: '.$err->getMessage());
  443. return false;
  444. }
  445. }
  446. /**
  447. * A private helper function that uses a CURL lookup to check the mime type
  448. * of a remote URL to see it it's an image.
  449. *
  450. * @return bool true if the remote URL is an image, or false otherwise.
  451. */
  452. private function isRemoteImage($url, $headers = null)
  453. {
  454. if (empty($headers)) {
  455. if (!common_valid_http_url($url)) {
  456. common_log(LOG_ERR, "Invalid URL in Embed::isRemoteImage()");
  457. return false;
  458. }
  459. $head = (new HTTPClient())->head($url);
  460. $headers = $head->getHeader();
  461. $headers = array_change_key_case($headers, CASE_LOWER);
  462. }
  463. return !empty($headers['content-type']) && common_get_mime_media($headers['content-type']) === 'image';
  464. }
  465. /**
  466. * Validate that $imgData is a valid image before writing it to
  467. * disk, as well as resizing it to at most $this->thumbnail_width
  468. * by $this->thumbnail_height
  469. *
  470. * @param $imgData - The image data to validate. Taken by reference to avoid copying
  471. * @param string|null $url - The url where the image came from, to fetch metadata
  472. * @param array|null $headers - The headers possible previous request to $url
  473. * @param int|null $file_id - The id of the file this image belongs to, used for logging
  474. */
  475. protected function validateAndWriteImage(&$imgData, $url = null, $headers = null, $file_id = 0) : array
  476. {
  477. $info = @getimagesizefromstring($imgData);
  478. // array indexes documented on php.net:
  479. // https://php.net/manual/en/function.getimagesize.php
  480. if ($info === false) {
  481. throw new UnsupportedMediaException(_('Remote file format was not identified as an image.'), $url);
  482. } elseif (!$info[0] || !$info[1]) {
  483. throw new UnsupportedMediaException(_('Image file had impossible geometry (0 width or height)'));
  484. }
  485. $width = min($info[0], $this->thumbnail_width);
  486. $height = min($info[1], $this->thumbnail_height);
  487. $filehash = hash(File::FILEHASH_ALG, $imgData);
  488. try {
  489. if (!empty($url)) {
  490. $original_name = HTTPClient::get_filename($url, $headers);
  491. }
  492. $filename = MediaFile::encodeFilename($original_name ?? '', $filehash);
  493. $fullpath = File_thumbnail::path($filename);
  494. // Write the file to disk. Throw Exception on failure
  495. if (!file_exists($fullpath)) {
  496. if (strpos($fullpath, INSTALLDIR) !== 0 || file_put_contents($fullpath, $imgData) === false) {
  497. throw new ServerException(_('Could not write downloaded file to disk.'));
  498. }
  499. if (common_get_mime_media(MediaFile::getUploadedMimeType($fullpath)) !== 'image') {
  500. @unlink($fullpath);
  501. throw new UnsupportedMediaException(
  502. _('Remote file format was not identified as an image.'),
  503. $url
  504. );
  505. }
  506. // If the image is not of the desired size, resize it
  507. if ($info[0] > $this->thumbnail_width || $info[1] > $this->thumbnail_height) {
  508. // Temporary object, not stored in DB
  509. $img = new ImageFile(-1, $fullpath);
  510. $box = $img->scaleToFit($this->thumbnail_width, $this->thumbnail_height, $this->thumbnail_crop);
  511. $outpath = $img->resizeTo($fullpath, $box);
  512. $filename = basename($outpath);
  513. if ($fullpath !== $outpath) {
  514. @unlink($fullpath);
  515. }
  516. }
  517. } else {
  518. throw new AlreadyFulfilledException('A thumbnail seems to already exist for remote file' .
  519. ($file_id ? 'with id==' . $file_id : '') . ' at path ' . $fullpath);
  520. }
  521. } catch (AlreadyFulfilledException $e) {
  522. // Carry on
  523. } catch (Exception $err) {
  524. common_log(LOG_ERR, "Went to write a thumbnail to disk in EmbedPlugin::storeRemoteThumbnail " .
  525. "but encountered error: {$err}");
  526. throw $err;
  527. } finally {
  528. unset($imgData);
  529. }
  530. return [$filename, $width, $height];
  531. }
  532. /**
  533. * Function to create and store a thumbnail representation of a remote image
  534. *
  535. * @param $thumbnail File_thumbnail object containing the file thumbnail
  536. * @return bool true if it succeeded, the exception if it fails, or false if it
  537. * is limited by system limits (ie the file is too large.)
  538. */
  539. protected function storeRemoteFileThumbnail(File_thumbnail $thumbnail)
  540. {
  541. if (!empty($thumbnail->filename) && file_exists($thumbnail->getPath())) {
  542. throw new AlreadyFulfilledException(
  543. sprintf('A thumbnail seems to already exist for remote file with id==%u', $thumbnail->file_id)
  544. );
  545. }
  546. $url = $thumbnail->getUrl();
  547. if (substr($url, 0, 7) == 'file://') {
  548. $filename = substr($url, 7);
  549. $info = getimagesize($filename);
  550. $filename = basename($filename);
  551. $width = $info[0];
  552. $height = $info[1];
  553. } else {
  554. $this->checkWhitelist($url);
  555. $head = (new HTTPClient())->head($url);
  556. $headers = $head->getHeader();
  557. $headers = array_change_key_case($headers, CASE_LOWER);
  558. try {
  559. $is_image = $this->isRemoteImage($url, $headers);
  560. if ($is_image == true) {
  561. $max_size = common_get_preferred_php_upload_limit();
  562. $file_size = $this->getRemoteFileSize($url, $headers);
  563. if (($file_size!=false) && ($file_size > $max_size)) {
  564. common_debug("Went to store remote thumbnail of size " . $file_size .
  565. " but the upload limit is " . $max_size . " so we aborted.");
  566. return false;
  567. }
  568. } else {
  569. return false;
  570. }
  571. } catch (Exception $err) {
  572. common_debug("Could not determine size of remote image, aborted local storage.");
  573. return $err;
  574. }
  575. // First we download the file to memory and test whether it's actually an image file
  576. // FIXME: To support remote video/whatever files, this needs reworking.
  577. common_debug(sprintf(
  578. 'Downloading remote thumbnail for file id==%u with thumbnail URL: %s',
  579. $thumbnail->file_id,
  580. $url
  581. ));
  582. try {
  583. $imgData = HTTPClient::quickGet($url);
  584. if (isset($imgData)) {
  585. list($filename, $width, $height) = $this->validateAndWriteImage(
  586. $imgData,
  587. $url,
  588. $headers,
  589. $thumbnail->file_id
  590. );
  591. } else {
  592. throw new UnsupportedMediaException('HTTPClient returned an empty result');
  593. }
  594. } catch (UnsupportedMediaException $e) {
  595. // Couldn't find anything that looks like an image, nothing to do
  596. common_debug("Embed was not able to find an image for URL `{$url}`: " . $e->getMessage());
  597. return false;
  598. }
  599. }
  600. try {
  601. // Update our database for the file record
  602. $orig = clone($thumbnail);
  603. $thumbnail->filename = $filename;
  604. $thumbnail->width = $width;
  605. $thumbnail->height = $height;
  606. // Throws exception on failure.
  607. $thumbnail->updateWithKeys($orig);
  608. } catch (Exception $err) {
  609. common_log(LOG_ERR, "Went to write a thumbnail entry to the database in " .
  610. "EmbedPlugin::storeRemoteThumbnail but encountered error: ".$err);
  611. return $err;
  612. }
  613. return true;
  614. }
  615. /**
  616. * Event raised when GNU social polls the plugin for information about it.
  617. * Adds this plugin's version information to $versions array
  618. *
  619. * @param &$versions array inherited from parent
  620. * @return bool true hook value
  621. */
  622. public function onPluginVersion(array &$versions): bool
  623. {
  624. $versions[] = ['name' => 'Embed',
  625. 'version' => self::PLUGIN_VERSION,
  626. 'author' => 'Mikael Nordfeldth',
  627. 'homepage' => GNUSOCIAL_ENGINE_URL,
  628. 'description' =>
  629. // TRANS: Plugin description.
  630. _m('Plugin for using and representing oEmbed, OpenGraph and other data.')];
  631. return true;
  632. }
  633. }