mediafile.php 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676
  1. <?php
  2. /**
  3. * GNU social - a federating social network
  4. *
  5. * Abstraction for media files
  6. *
  7. * LICENCE: This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU Affero General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU Affero General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Affero General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. *
  20. * @category Media
  21. * @package GNUsocial
  22. * @author Robin Millette <robin@millette.info>
  23. * @author Miguel Dantas <biodantas@gmail.com>
  24. * @author Zach Copley <zach@status.net>
  25. * @author Mikael Nordfeldth <mmn@hethane.se>
  26. * @copyright 2008-2009, 2019 Free Software Foundation http://fsf.org
  27. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  28. * @link https://www.gnu.org/software/social/
  29. */
  30. defined('GNUSOCIAL') || die();
  31. /**
  32. * Class responsible for abstracting media files
  33. */
  34. class MediaFile
  35. {
  36. public $id = null;
  37. public $filepath = null;
  38. public $filename = null;
  39. public $fileRecord = null;
  40. public $fileurl = null;
  41. public $short_fileurl = null;
  42. public $mimetype = null;
  43. /**
  44. * @param string $filepath The path of the file this media refers to. Required
  45. * @param string $mimetype The mimetype of the file. Required
  46. * @param $filehash The hash of the file, if known. Optional
  47. * @param int|null $id The DB id of the file. Int if known, null if not.
  48. * If null, it searches for it. If -1, it skips all DB
  49. * interactions (useful for temporary objects)
  50. * @throws ClientException
  51. * @throws NoResultException
  52. * @throws ServerException
  53. */
  54. public function __construct(string $filepath, string $mimetype, $filehash = null, $id = null)
  55. {
  56. $this->filepath = $filepath;
  57. $this->filename = basename($this->filepath);
  58. $this->mimetype = $mimetype;
  59. $this->filehash = self::getHashOfFile($this->filepath, $filehash);
  60. $this->id = $id;
  61. // If id is -1, it means we're dealing with a temporary object and don't want to store it in the DB,
  62. // or add redirects
  63. if ($this->id !== -1) {
  64. if (!empty($this->id)) {
  65. // If we have an id, load it
  66. $this->fileRecord = new File();
  67. $this->fileRecord->id = $this->id;
  68. if (!$this->fileRecord->find(true)) {
  69. // If we have set an ID, we need that ID to exist!
  70. throw new NoResultException($this->fileRecord);
  71. }
  72. } else {
  73. // Otherwise, store it
  74. $this->fileRecord = $this->storeFile();
  75. }
  76. $this->fileurl = common_local_url(
  77. 'attachment',
  78. array('attachment' => $this->fileRecord->id)
  79. );
  80. $this->short_fileurl = common_shorten_url($this->fileurl);
  81. }
  82. }
  83. public function attachToNotice(Notice $notice)
  84. {
  85. File_to_post::processNew($this->fileRecord, $notice);
  86. }
  87. public function getPath()
  88. {
  89. return File::path($this->filename);
  90. }
  91. public function shortUrl()
  92. {
  93. return $this->short_fileurl;
  94. }
  95. public function getEnclosure()
  96. {
  97. return $this->getFile()->getEnclosure();
  98. }
  99. public function delete()
  100. {
  101. @unlink($this->filepath);
  102. }
  103. public function getFile()
  104. {
  105. if (!$this->fileRecord instanceof File) {
  106. throw new ServerException('File record did not exist for MediaFile');
  107. }
  108. return $this->fileRecord;
  109. }
  110. /**
  111. * Calculate the hash of a file.
  112. *
  113. * This won't work for files >2GiB because PHP uses only 32bit.
  114. * @param string $filepath
  115. * @param string|null $filehash
  116. * @return string
  117. * @throws ServerException
  118. */
  119. public static function getHashOfFile(string $filepath, $filehash = null)
  120. {
  121. assert(!empty($filepath), __METHOD__ . ": filepath cannot be null");
  122. if ($filehash === null) {
  123. // Calculate if we have an older upload method somewhere (Qvitter) that
  124. // doesn't do this before calling new MediaFile on its local files...
  125. $filehash = hash_file(File::FILEHASH_ALG, $filepath);
  126. if ($filehash === false) {
  127. throw new ServerException('Could not read file for hashing');
  128. }
  129. }
  130. return $filehash;
  131. }
  132. /**
  133. * Retrieve or insert as a file in the DB
  134. *
  135. * @return object File
  136. * @throws ClientException
  137. * @throws ServerException
  138. */
  139. protected function storeFile()
  140. {
  141. try {
  142. $file = File::getByHash($this->filehash);
  143. // We're done here. Yes. Already. We assume sha256 won't collide on us anytime soon.
  144. return $file;
  145. } catch (NoResultException $e) {
  146. // Well, let's just continue below.
  147. }
  148. $fileurl = common_local_url('attachment_view', array('filehash' => $this->filehash));
  149. $file = new File;
  150. $file->filename = $this->filename;
  151. $file->urlhash = File::hashurl($fileurl);
  152. $file->url = $fileurl;
  153. $file->filehash = $this->filehash;
  154. $file->size = filesize($this->filepath);
  155. if ($file->size === false) {
  156. throw new ServerException('Could not read file to get its size');
  157. }
  158. $file->date = time();
  159. $file->mimetype = $this->mimetype;
  160. $file_id = $file->insert();
  161. if ($file_id===false) {
  162. common_log_db_error($file, "INSERT", __FILE__);
  163. // TRANS: Client exception thrown when a database error was thrown during a file upload operation.
  164. throw new ClientException(_m('There was a database error while saving your file. Please try again.'));
  165. }
  166. // Set file geometrical properties if available
  167. try {
  168. $image = ImageFile::fromFileObject($file);
  169. $orig = clone($file);
  170. $file->width = $image->width;
  171. $file->height = $image->height;
  172. $file->update($orig);
  173. // We have to cleanup after ImageFile, since it
  174. // may have generated a temporary file from a
  175. // video support plugin or something.
  176. // FIXME: Do this more automagically.
  177. if ($image->getPath() != $file->getPath()) {
  178. $image->unlink();
  179. }
  180. } catch (ServerException $e) {
  181. // We just couldn't make out an image from the file. This
  182. // does not have to be UnsupportedMediaException, as we can
  183. // also get ServerException from files not existing etc.
  184. }
  185. return $file;
  186. }
  187. /**
  188. * The maximum allowed file size, as a string
  189. */
  190. public static function maxFileSize()
  191. {
  192. $value = self::maxFileSizeInt();
  193. if ($value > 1024 * 1024) {
  194. $value = $value/(1024*1024);
  195. // TRANS: Number of megabytes. %d is the number.
  196. return sprintf(_m('%dMB', '%dMB', $value), $value);
  197. } elseif ($value > 1024) {
  198. $value = $value/1024;
  199. // TRANS: Number of kilobytes. %d is the number.
  200. return sprintf(_m('%dkB', '%dkB', $value), $value);
  201. } else {
  202. // TRANS: Number of bytes. %d is the number.
  203. return sprintf(_m('%dB', '%dB', $value), $value);
  204. }
  205. }
  206. /**
  207. * The maximum allowed file size, as an int
  208. */
  209. public static function maxFileSizeInt() : int
  210. {
  211. return common_config('attachments', 'file_quota');
  212. }
  213. /**
  214. * Encodes a file name and a file hash in the new file format, which is used to avoid
  215. * having an extension in the file, removing trust in extensions, while keeping the original name
  216. * @throws ClientException
  217. */
  218. public static function encodeFilename($original_name, string $filehash, $ext = null) : string
  219. {
  220. if (empty($original_name)) {
  221. $original_name = _m('Untitled attachment');
  222. }
  223. // If we're given an extension explicitly, use it, otherwise...
  224. $ext = $ext ?:
  225. // get a replacement extension if configured, returns false if it's blocked,
  226. // null if no extension
  227. File::getSafeExtension($original_name);
  228. if ($ext === false) {
  229. throw new ClientException(_m('Blacklisted file extension.'));
  230. }
  231. if (!empty($ext)) {
  232. // Remove dots if we have them (make sure they're not repeated)
  233. $ext = preg_replace('/^\.+/', '', $ext);
  234. $original_name = preg_replace('/\.+.+$/i', ".{$ext}", $original_name);
  235. }
  236. $enc_name = bin2hex($original_name);
  237. return "{$enc_name}-{$filehash}";
  238. }
  239. /**
  240. * Decode the new filename format
  241. * @return false | null | string on failure, no match (old format) or original file name, respectively
  242. */
  243. public static function decodeFilename(string $encoded_filename)
  244. {
  245. // Should match:
  246. // hex-hash
  247. // thumb-id-widthxheight-hex-hash
  248. // And return the `hex` part
  249. $ret = preg_match('/^(.*-)?([^-]+)-[^-]+$/', $encoded_filename, $matches);
  250. if ($ret === false) {
  251. return false;
  252. } elseif ($ret === 0 || !ctype_xdigit($matches[2])) {
  253. return null; // No match
  254. } else {
  255. $filename = hex2bin($matches[2]);
  256. // Matches extension
  257. if (preg_match('/^(.+?)\.(.+)$/', $filename, $sub_matches) === 1) {
  258. $ext = $sub_matches[2];
  259. // Previously, there was a blacklisted extension array, which could have an alternative
  260. // extension, such as phps, to replace php. We want to turn it back (this is deprecated,
  261. // as it no longer makes sense, since we don't trust trust files based on extension,
  262. // but keep the feature)
  263. $blacklist = common_config('attachments', 'extblacklist');
  264. if (is_array($blacklist)) {
  265. foreach ($blacklist as $upload_ext => $safe_ext) {
  266. if ($ext === $safe_ext) {
  267. $ext = $upload_ext;
  268. break;
  269. }
  270. }
  271. }
  272. return "{$sub_matches[1]}.{$ext}";
  273. } else {
  274. // No extension, don't bother trying to replace it
  275. return $filename;
  276. }
  277. }
  278. }
  279. /**
  280. * Create a new MediaFile or ImageFile object from an upload
  281. *
  282. * Tries to set the mimetype correctly, using the most secure method available and rejects the file otherwise.
  283. * In case the upload is an image, this function returns an new ImageFile (which extends MediaFile)
  284. * The filename has a new format:
  285. * bin2hex("{$original_name}.{$ext}")."-{$filehash}"
  286. * This format should be respected. Notice the dash, which is important to distinguish it from the previous
  287. * format ("{$hash}.{$ext}")
  288. *
  289. * @param string $param Form name
  290. * @param Profile|null $scoped
  291. * @return ImageFile|MediaFile
  292. * @throws ClientException
  293. * @throws NoResultException
  294. * @throws NoUploadedMediaException
  295. * @throws ServerException
  296. * @throws UnsupportedMediaException
  297. * @throws UseFileAsThumbnailException
  298. */
  299. public static function fromUpload(string $param='media', Profile $scoped=null)
  300. {
  301. // The existence of the "error" element means PHP has processed it properly even if it was ok.
  302. if (!(isset($_FILES[$param]) && isset($_FILES[$param]['error']))) {
  303. throw new NoUploadedMediaException($param);
  304. }
  305. switch ($_FILES[$param]['error']) {
  306. case UPLOAD_ERR_OK: // success, jump out
  307. break;
  308. case UPLOAD_ERR_INI_SIZE:
  309. case UPLOAD_ERR_FORM_SIZE:
  310. // TRANS: Exception thrown when too large a file is uploaded.
  311. // TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
  312. throw new ClientException(sprintf(
  313. _m('That file is too big. The maximum file size is %s.'),
  314. self::maxFileSize()
  315. ));
  316. case UPLOAD_ERR_PARTIAL:
  317. @unlink($_FILES[$param]['tmp_name']);
  318. // TRANS: Client exception.
  319. throw new ClientException(_m('The uploaded file was only partially uploaded.'));
  320. case UPLOAD_ERR_NO_FILE:
  321. // No file; probably just a non-AJAX submission.
  322. throw new NoUploadedMediaException($param);
  323. case UPLOAD_ERR_NO_TMP_DIR:
  324. // TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
  325. throw new ClientException(_m('Missing a temporary folder.'));
  326. case UPLOAD_ERR_CANT_WRITE:
  327. // TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
  328. throw new ClientException(_m('Failed to write file to disk.'));
  329. case UPLOAD_ERR_EXTENSION:
  330. // TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
  331. throw new ClientException(_m('File upload stopped by extension.'));
  332. default:
  333. common_log(LOG_ERR, __METHOD__ . ": Unknown upload error " . $_FILES[$param]['error']);
  334. // TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
  335. throw new ClientException(_m('System error uploading file.'));
  336. }
  337. $filehash = strtolower(self::getHashOfFile($_FILES[$param]['tmp_name']));
  338. try {
  339. $file = File::getByHash($filehash);
  340. // If no exception is thrown the file exists locally, so we'll use that and just add redirections.
  341. // but if the _actual_ locally stored file doesn't exist, getPath will throw FileNotFoundException
  342. $filepath = $file->getPath();
  343. $mimetype = $file->mimetype;
  344. } catch (FileNotFoundException | NoResultException $e) {
  345. // We have to save the upload as a new local file. This is the normal course of action.
  346. if ($scoped instanceof Profile) {
  347. // Throws exception if additional size does not respect quota
  348. // This test is only needed, of course, if we're uploading something new.
  349. File::respectsQuota($scoped, $_FILES[$param]['size']);
  350. }
  351. $mimetype = self::getUploadedMimeType($_FILES[$param]['tmp_name'], $_FILES[$param]['name']);
  352. $media = common_get_mime_media($mimetype);
  353. $basename = basename($_FILES[$param]['name']);
  354. if ($media == 'image') {
  355. // Use -1 for the id to avoid adding this temporary file to the DB
  356. $img = new ImageFile(-1, $_FILES[$param]['tmp_name']);
  357. // Validate the image by re-encoding it. Additionally normalizes old formats to PNG,
  358. // keeping JPEG and GIF untouched
  359. $outpath = $img->resizeTo($img->filepath);
  360. $ext = image_type_to_extension($img->preferredType(), false);
  361. }
  362. $filename = self::encodeFilename($basename, $filehash, isset($ext) ? $ext : File::getSafeExtension($basename));
  363. $filepath = File::path($filename);
  364. if ($media == 'image') {
  365. $result = rename($outpath, $filepath);
  366. } else {
  367. $result = move_uploaded_file($_FILES[$param]['tmp_name'], $filepath);
  368. }
  369. if (!$result) {
  370. // TRANS: Client exception thrown when a file upload operation fails because the file could
  371. // TRANS: not be moved from the temporary folder to the permanent file location.
  372. // UX: too specific
  373. throw new ClientException(_m('File could not be moved to destination directory.'));
  374. }
  375. if ($media == 'image') {
  376. return new ImageFile(null, $filepath);
  377. }
  378. }
  379. return new MediaFile($filepath, $mimetype, $filehash);
  380. }
  381. public static function fromFilehandle($fh, Profile $scoped=null)
  382. {
  383. $stream = stream_get_meta_data($fh);
  384. // So far we're only handling filehandles originating from tmpfile(),
  385. // so we can always do hash_file on $stream['uri'] as far as I can tell!
  386. $filehash = hash_file(File::FILEHASH_ALG, $stream['uri']);
  387. try {
  388. $file = File::getByHash($filehash);
  389. // Already have it, so let's reuse the locally stored File
  390. // by using getPath we also check whether the file exists
  391. // and throw a FileNotFoundException with the path if it doesn't.
  392. $filename = basename($file->getPath());
  393. $mimetype = $file->mimetype;
  394. } catch (FileNotFoundException $e) {
  395. // This happens if the file we have uploaded has disappeared
  396. // from the local filesystem for some reason. Since we got the
  397. // File object from a sha256 check in fromFilehandle, it's safe
  398. // to just copy the uploaded data to disk!
  399. fseek($fh, 0); // just to be sure, go to the beginning
  400. // dump the contents of our filehandle to the path from our exception
  401. // and report error if it failed.
  402. if (false === file_put_contents($e->path, fread($fh, filesize($stream['uri'])))) {
  403. // TRANS: Client exception thrown when a file upload operation fails because the file could
  404. // TRANS: not be moved from the temporary folder to the permanent file location.
  405. throw new ClientException(_m('File could not be moved to destination directory.'));
  406. }
  407. if (!chmod($e->path, 0664)) {
  408. common_log(LOG_ERR, 'Could not chmod uploaded file: '._ve($e->path));
  409. }
  410. $filename = basename($file->getPath());
  411. $mimetype = $file->mimetype;
  412. } catch (NoResultException $e) {
  413. if ($scoped instanceof Profile) {
  414. File::respectsQuota($scoped, filesize($stream['uri']));
  415. }
  416. $mimetype = self::getUploadedMimeType($stream['uri']);
  417. $filename = strtolower($filehash) . '.' . File::guessMimeExtension($mimetype);
  418. $filepath = File::path($filename);
  419. $result = copy($stream['uri'], $filepath) && chmod($filepath, 0664);
  420. if (!$result) {
  421. common_log(LOG_ERR, 'File could not be moved (or chmodded) from '._ve($stream['uri']) . ' to ' . _ve($filepath));
  422. // TRANS: Client exception thrown when a file upload operation fails because the file could
  423. // TRANS: not be moved from the temporary folder to the permanent file location.
  424. throw new ClientException(_m('File could not be moved to destination directory.'));
  425. }
  426. }
  427. return new MediaFile($filename, $mimetype, $filehash);
  428. }
  429. /**
  430. * Attempt to identify the content type of a given file.
  431. *
  432. * @param string $filepath filesystem path as string (file must exist)
  433. * @param bool $originalFilename (optional) for extension-based detection
  434. * @return string
  435. *
  436. * @throws ClientException if type is known, but not supported for local uploads
  437. * @throws ServerException
  438. * @fixme this seems to tie a front-end error message in, kinda confusing
  439. *
  440. */
  441. public static function getUploadedMimeType(string $filepath, $originalFilename=false)
  442. {
  443. // We only accept filenames to existing files
  444. $mimetype = null;
  445. // From CodeIgniter
  446. // We'll need this to validate the MIME info string (e.g. text/plain; charset=us-ascii)
  447. $regexp = '/^([a-z\-]+\/[a-z0-9\-\.\+]+)(;\s[^\/]+)?$/';
  448. /**
  449. * Fileinfo extension - most reliable method
  450. *
  451. * Apparently XAMPP, CentOS, cPanel and who knows what
  452. * other PHP distribution channels EXPLICITLY DISABLE
  453. * ext/fileinfo, which is otherwise enabled by default
  454. * since PHP 5.3 ...
  455. */
  456. if (function_exists('finfo_file')) {
  457. $finfo = @finfo_open(FILEINFO_MIME);
  458. // It is possible that a FALSE value is returned, if there is no magic MIME database
  459. // file found on the system
  460. if (is_resource($finfo)) {
  461. $mime = @finfo_file($finfo, $filepath);
  462. finfo_close($finfo);
  463. /* According to the comments section of the PHP manual page,
  464. * it is possible that this function returns an empty string
  465. * for some files (e.g. if they don't exist in the magic MIME database)
  466. */
  467. if (is_string($mime) && preg_match($regexp, $mime, $matches)) {
  468. $mimetype = $matches[1];
  469. }
  470. }
  471. }
  472. /* This is an ugly hack, but UNIX-type systems provide a "native" way to detect the file type,
  473. * which is still more secure than depending on the value of $_FILES[$field]['type'], and as it
  474. * was reported in issue #750 (https://github.com/EllisLab/CodeIgniter/issues/750) - it's better
  475. * than mime_content_type() as well, hence the attempts to try calling the command line with
  476. * three different functions.
  477. *
  478. * Notes:
  479. * - the DIRECTORY_SEPARATOR comparison ensures that we're not on a Windows system
  480. * - many system admins would disable the exec(), shell_exec(), popen() and similar functions
  481. * due to security concerns, hence the function_usable() checks
  482. */
  483. if (DIRECTORY_SEPARATOR !== '\\') {
  484. $cmd = 'file --brief --mime '.escapeshellarg($filepath).' 2>&1';
  485. if (empty($mimetype) && function_exists('exec')) {
  486. /* This might look confusing, as $mime is being populated with all of the output
  487. * when set in the second parameter. However, we only need the last line, which is
  488. * the actual return value of exec(), and as such - it overwrites anything that could
  489. * already be set for $mime previously. This effectively makes the second parameter a
  490. * dummy value, which is only put to allow us to get the return status code.
  491. */
  492. $mime = @exec($cmd, $mime, $return_status);
  493. if ($return_status === 0 && is_string($mime) && preg_match($regexp, $mime, $matches)) {
  494. $mimetype = $matches[1];
  495. }
  496. }
  497. if (empty($mimetype) && function_exists('shell_exec')) {
  498. $mime = @shell_exec($cmd);
  499. if (strlen($mime) > 0) {
  500. $mime = explode("\n", trim($mime));
  501. if (preg_match($regexp, $mime[(count($mime) - 1)], $matches)) {
  502. $mimetype = $matches[1];
  503. }
  504. }
  505. }
  506. if (empty($mimetype) && function_exists('popen')) {
  507. $proc = @popen($cmd, 'r');
  508. if (is_resource($proc)) {
  509. $mime = @fread($proc, 512);
  510. @pclose($proc);
  511. if ($mime !== false) {
  512. $mime = explode("\n", trim($mime));
  513. if (preg_match($regexp, $mime[(count($mime) - 1)], $matches)) {
  514. $mimetype = $matches[1];
  515. }
  516. }
  517. }
  518. }
  519. }
  520. // Fall back to mime_content_type(), if available (still better than $_FILES[$field]['type'])
  521. if (empty($mimetype) && function_exists('mime_content_type')) {
  522. $mimetype = @mime_content_type($filepath);
  523. // It's possible that mime_content_type() returns FALSE or an empty string
  524. if ($mimetype == false && strlen($mimetype) > 0) {
  525. throw new ServerException(_m('Could not determine file\'s MIME type.'));
  526. }
  527. }
  528. // Unclear types are such that we can't really tell by the auto
  529. // detect what they are (.bin, .exe etc. are just "octet-stream")
  530. $unclearTypes = array('application/octet-stream',
  531. 'application/vnd.ms-office',
  532. 'application/zip',
  533. 'text/plain',
  534. 'text/html', // Ironically, Wikimedia Commons' SVG_logo.svg is identified as text/html
  535. // TODO: for XML we could do better content-based sniffing too
  536. 'text/xml');
  537. $supported = common_config('attachments', 'supported');
  538. // If we didn't match, or it is an unclear match
  539. if ($originalFilename && (!$mimetype || in_array($mimetype, $unclearTypes))) {
  540. try {
  541. $type = common_supported_filename_to_mime($originalFilename);
  542. return $type;
  543. } catch (UnknownExtensionMimeException $e) {
  544. // FIXME: I think we should keep the file extension here (supported should be === true here)
  545. } catch (Exception $e) {
  546. // Extension parsed but no connected mimetype, so $mimetype is our best guess
  547. }
  548. }
  549. // If $config['attachments']['supported'] equals boolean true, accept any mimetype
  550. if ($supported === true || array_key_exists($mimetype, $supported)) {
  551. // FIXME: Don't know if it always has a mimetype here because
  552. // finfo->file CAN return false on error: http://php.net/finfo_file
  553. // so if $supported === true, this may return something unexpected.
  554. return $mimetype;
  555. }
  556. // We can conclude that we have failed to get the MIME type
  557. $media = common_get_mime_media($mimetype);
  558. if ('application' !== $media) {
  559. // TRANS: Client exception thrown trying to upload a forbidden MIME type.
  560. // TRANS: %1$s is the file type that was denied, %2$s is the application part of
  561. // TRANS: the MIME type that was denied.
  562. $hint = sprintf(_m('"%1$s" is not a supported file type on this server. ' .
  563. 'Try using another %2$s format.'), $mimetype, $media);
  564. } else {
  565. // TRANS: Client exception thrown trying to upload a forbidden MIME type.
  566. // TRANS: %s is the file type that was denied.
  567. $hint = sprintf(_m('"%s" is not a supported file type on this server.'), $mimetype);
  568. }
  569. throw new ClientException($hint);
  570. }
  571. /**
  572. * Title for a file, to display in the interface (if there's no better title) and
  573. * for download filenames
  574. * @param $file File object
  575. * @returns string
  576. */
  577. public static function getDisplayName(File $file) : string {
  578. if (empty($file->filename)) {
  579. return _m('Untitled attachment');
  580. }
  581. // New file name format is "{bin2hex(original_name.ext)}-{$hash}"
  582. $filename = self::decodeFilename($file->filename);
  583. // If there was an error in the match, something's wrong with some piece
  584. // of code (could be a file with utf8 chars in the name)
  585. $log_error_msg = "Invalid file name for File with id={$file->id} " .
  586. "({$file->filename}). Some plugin probably did something wrong.";
  587. if ($filename === false) {
  588. common_log(LOG_ERR, $log_error_msg);
  589. } elseif ($filename === null) {
  590. // The old file name format was "{hash}.{ext}" so we didn't have a name
  591. // This extracts the extension
  592. $ret = preg_match('/^.+?\.+?(.+)$/', $file->filename, $matches);
  593. if ($ret !== 1) {
  594. common_log(LOG_ERR, $log_error_msg);
  595. return _m('Untitled attachment');
  596. }
  597. $ext = $matches[1];
  598. // There's a blacklisted extension array, which could have an alternative
  599. // extension, such as phps, to replace php. We want to turn it back
  600. // (currently defaulted to empty, but let's keep the feature)
  601. $blacklist = common_config('attachments', 'extblacklist');
  602. if (is_array($blacklist)) {
  603. foreach ($blacklist as $upload_ext => $safe_ext) {
  604. if ($ext === $safe_ext) {
  605. $ext = $upload_ext;
  606. break;
  607. }
  608. }
  609. }
  610. $filename = "untitled.{$ext}";
  611. }
  612. return $filename;
  613. }
  614. }