mediafile.php 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678
  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) {
  253. return null; // No match
  254. } elseif (strlen($matches[2]) % 2 !== 0) {
  255. return null; // An odd length won't do for hex2bin
  256. } else {
  257. $filename = hex2bin($matches[2]);
  258. // Matches extension
  259. if (preg_match('/^(.+?)\.(.+)$/', $filename, $sub_matches) === 1) {
  260. $ext = $sub_matches[2];
  261. // Previously, there was a blacklisted extension array, which could have an alternative
  262. // extension, such as phps, to replace php. We want to turn it back (this is deprecated,
  263. // as it no longer makes sense, since we don't trust trust files based on extension,
  264. // but keep the feature)
  265. $blacklist = common_config('attachments', 'extblacklist');
  266. if (is_array($blacklist)) {
  267. foreach ($blacklist as $upload_ext => $safe_ext) {
  268. if ($ext === $safe_ext) {
  269. $ext = $upload_ext;
  270. break;
  271. }
  272. }
  273. }
  274. return "{$sub_matches[1]}.{$ext}";
  275. } else {
  276. // No extension, don't bother trying to replace it
  277. return $filename;
  278. }
  279. }
  280. }
  281. /**
  282. * Create a new MediaFile or ImageFile object from an upload
  283. *
  284. * Tries to set the mimetype correctly, using the most secure method available and rejects the file otherwise.
  285. * In case the upload is an image, this function returns an new ImageFile (which extends MediaFile)
  286. * The filename has a new format:
  287. * bin2hex("{$original_name}.{$ext}")."-{$filehash}"
  288. * This format should be respected. Notice the dash, which is important to distinguish it from the previous
  289. * format ("{$hash}.{$ext}")
  290. *
  291. * @param string $param Form name
  292. * @param Profile|null $scoped
  293. * @return ImageFile|MediaFile
  294. * @throws ClientException
  295. * @throws NoResultException
  296. * @throws NoUploadedMediaException
  297. * @throws ServerException
  298. * @throws UnsupportedMediaException
  299. * @throws UseFileAsThumbnailException
  300. */
  301. public static function fromUpload(string $param='media', Profile $scoped=null)
  302. {
  303. // The existence of the "error" element means PHP has processed it properly even if it was ok.
  304. if (!(isset($_FILES[$param]) && isset($_FILES[$param]['error']))) {
  305. throw new NoUploadedMediaException($param);
  306. }
  307. switch ($_FILES[$param]['error']) {
  308. case UPLOAD_ERR_OK: // success, jump out
  309. break;
  310. case UPLOAD_ERR_INI_SIZE:
  311. case UPLOAD_ERR_FORM_SIZE:
  312. // TRANS: Exception thrown when too large a file is uploaded.
  313. // TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
  314. throw new ClientException(sprintf(
  315. _m('That file is too big. The maximum file size is %s.'),
  316. self::maxFileSize()
  317. ));
  318. case UPLOAD_ERR_PARTIAL:
  319. @unlink($_FILES[$param]['tmp_name']);
  320. // TRANS: Client exception.
  321. throw new ClientException(_m('The uploaded file was only partially uploaded.'));
  322. case UPLOAD_ERR_NO_FILE:
  323. // No file; probably just a non-AJAX submission.
  324. throw new NoUploadedMediaException($param);
  325. case UPLOAD_ERR_NO_TMP_DIR:
  326. // TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
  327. throw new ClientException(_m('Missing a temporary folder.'));
  328. case UPLOAD_ERR_CANT_WRITE:
  329. // TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
  330. throw new ClientException(_m('Failed to write file to disk.'));
  331. case UPLOAD_ERR_EXTENSION:
  332. // TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
  333. throw new ClientException(_m('File upload stopped by extension.'));
  334. default:
  335. common_log(LOG_ERR, __METHOD__ . ": Unknown upload error " . $_FILES[$param]['error']);
  336. // TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
  337. throw new ClientException(_m('System error uploading file.'));
  338. }
  339. $filehash = strtolower(self::getHashOfFile($_FILES[$param]['tmp_name']));
  340. try {
  341. $file = File::getByHash($filehash);
  342. // If no exception is thrown the file exists locally, so we'll use that and just add redirections.
  343. // but if the _actual_ locally stored file doesn't exist, getPath will throw FileNotFoundException
  344. $filepath = $file->getPath();
  345. $mimetype = $file->mimetype;
  346. } catch (FileNotFoundException | NoResultException $e) {
  347. // We have to save the upload as a new local file. This is the normal course of action.
  348. if ($scoped instanceof Profile) {
  349. // Throws exception if additional size does not respect quota
  350. // This test is only needed, of course, if we're uploading something new.
  351. File::respectsQuota($scoped, $_FILES[$param]['size']);
  352. }
  353. $mimetype = self::getUploadedMimeType($_FILES[$param]['tmp_name'], $_FILES[$param]['name']);
  354. $media = common_get_mime_media($mimetype);
  355. $basename = basename($_FILES[$param]['name']);
  356. if ($media == 'image') {
  357. // Use -1 for the id to avoid adding this temporary file to the DB
  358. $img = new ImageFile(-1, $_FILES[$param]['tmp_name']);
  359. // Validate the image by re-encoding it. Additionally normalizes old formats to PNG,
  360. // keeping JPEG and GIF untouched
  361. $outpath = $img->resizeTo($img->filepath);
  362. $ext = image_type_to_extension($img->preferredType(), false);
  363. }
  364. $filename = self::encodeFilename($basename, $filehash, isset($ext) ? $ext : File::getSafeExtension($basename));
  365. $filepath = File::path($filename);
  366. if ($media == 'image') {
  367. $result = rename($outpath, $filepath);
  368. } else {
  369. $result = move_uploaded_file($_FILES[$param]['tmp_name'], $filepath);
  370. }
  371. if (!$result) {
  372. // TRANS: Client exception thrown when a file upload operation fails because the file could
  373. // TRANS: not be moved from the temporary folder to the permanent file location.
  374. // UX: too specific
  375. throw new ClientException(_m('File could not be moved to destination directory.'));
  376. }
  377. if ($media == 'image') {
  378. return new ImageFile(null, $filepath);
  379. }
  380. }
  381. return new MediaFile($filepath, $mimetype, $filehash);
  382. }
  383. public static function fromFilehandle($fh, Profile $scoped=null)
  384. {
  385. $stream = stream_get_meta_data($fh);
  386. // So far we're only handling filehandles originating from tmpfile(),
  387. // so we can always do hash_file on $stream['uri'] as far as I can tell!
  388. $filehash = hash_file(File::FILEHASH_ALG, $stream['uri']);
  389. try {
  390. $file = File::getByHash($filehash);
  391. // Already have it, so let's reuse the locally stored File
  392. // by using getPath we also check whether the file exists
  393. // and throw a FileNotFoundException with the path if it doesn't.
  394. $filename = basename($file->getPath());
  395. $mimetype = $file->mimetype;
  396. } catch (FileNotFoundException $e) {
  397. // This happens if the file we have uploaded has disappeared
  398. // from the local filesystem for some reason. Since we got the
  399. // File object from a sha256 check in fromFilehandle, it's safe
  400. // to just copy the uploaded data to disk!
  401. fseek($fh, 0); // just to be sure, go to the beginning
  402. // dump the contents of our filehandle to the path from our exception
  403. // and report error if it failed.
  404. if (false === file_put_contents($e->path, fread($fh, filesize($stream['uri'])))) {
  405. // TRANS: Client exception thrown when a file upload operation fails because the file could
  406. // TRANS: not be moved from the temporary folder to the permanent file location.
  407. throw new ClientException(_m('File could not be moved to destination directory.'));
  408. }
  409. if (!chmod($e->path, 0664)) {
  410. common_log(LOG_ERR, 'Could not chmod uploaded file: '._ve($e->path));
  411. }
  412. $filename = basename($file->getPath());
  413. $mimetype = $file->mimetype;
  414. } catch (NoResultException $e) {
  415. if ($scoped instanceof Profile) {
  416. File::respectsQuota($scoped, filesize($stream['uri']));
  417. }
  418. $mimetype = self::getUploadedMimeType($stream['uri']);
  419. $filename = strtolower($filehash) . '.' . File::guessMimeExtension($mimetype);
  420. $filepath = File::path($filename);
  421. $result = copy($stream['uri'], $filepath) && chmod($filepath, 0664);
  422. if (!$result) {
  423. common_log(LOG_ERR, 'File could not be moved (or chmodded) from '._ve($stream['uri']) . ' to ' . _ve($filepath));
  424. // TRANS: Client exception thrown when a file upload operation fails because the file could
  425. // TRANS: not be moved from the temporary folder to the permanent file location.
  426. throw new ClientException(_m('File could not be moved to destination directory.'));
  427. }
  428. }
  429. return new MediaFile($filename, $mimetype, $filehash);
  430. }
  431. /**
  432. * Attempt to identify the content type of a given file.
  433. *
  434. * @param string $filepath filesystem path as string (file must exist)
  435. * @param bool $originalFilename (optional) for extension-based detection
  436. * @return string
  437. *
  438. * @throws ClientException if type is known, but not supported for local uploads
  439. * @throws ServerException
  440. * @fixme this seems to tie a front-end error message in, kinda confusing
  441. *
  442. */
  443. public static function getUploadedMimeType(string $filepath, $originalFilename=false)
  444. {
  445. // We only accept filenames to existing files
  446. $mimetype = null;
  447. // From CodeIgniter
  448. // We'll need this to validate the MIME info string (e.g. text/plain; charset=us-ascii)
  449. $regexp = '/^([a-z\-]+\/[a-z0-9\-\.\+]+)(;\s[^\/]+)?$/';
  450. /**
  451. * Fileinfo extension - most reliable method
  452. *
  453. * Apparently XAMPP, CentOS, cPanel and who knows what
  454. * other PHP distribution channels EXPLICITLY DISABLE
  455. * ext/fileinfo, which is otherwise enabled by default
  456. * since PHP 5.3 ...
  457. */
  458. if (function_exists('finfo_file')) {
  459. $finfo = @finfo_open(FILEINFO_MIME);
  460. // It is possible that a FALSE value is returned, if there is no magic MIME database
  461. // file found on the system
  462. if (is_resource($finfo)) {
  463. $mime = @finfo_file($finfo, $filepath);
  464. finfo_close($finfo);
  465. /* According to the comments section of the PHP manual page,
  466. * it is possible that this function returns an empty string
  467. * for some files (e.g. if they don't exist in the magic MIME database)
  468. */
  469. if (is_string($mime) && preg_match($regexp, $mime, $matches)) {
  470. $mimetype = $matches[1];
  471. }
  472. }
  473. }
  474. /* This is an ugly hack, but UNIX-type systems provide a "native" way to detect the file type,
  475. * which is still more secure than depending on the value of $_FILES[$field]['type'], and as it
  476. * was reported in issue #750 (https://github.com/EllisLab/CodeIgniter/issues/750) - it's better
  477. * than mime_content_type() as well, hence the attempts to try calling the command line with
  478. * three different functions.
  479. *
  480. * Notes:
  481. * - the DIRECTORY_SEPARATOR comparison ensures that we're not on a Windows system
  482. * - many system admins would disable the exec(), shell_exec(), popen() and similar functions
  483. * due to security concerns, hence the function_usable() checks
  484. */
  485. if (DIRECTORY_SEPARATOR !== '\\') {
  486. $cmd = 'file --brief --mime '.escapeshellarg($filepath).' 2>&1';
  487. if (empty($mimetype) && function_exists('exec')) {
  488. /* This might look confusing, as $mime is being populated with all of the output
  489. * when set in the second parameter. However, we only need the last line, which is
  490. * the actual return value of exec(), and as such - it overwrites anything that could
  491. * already be set for $mime previously. This effectively makes the second parameter a
  492. * dummy value, which is only put to allow us to get the return status code.
  493. */
  494. $mime = @exec($cmd, $mime, $return_status);
  495. if ($return_status === 0 && is_string($mime) && preg_match($regexp, $mime, $matches)) {
  496. $mimetype = $matches[1];
  497. }
  498. }
  499. if (empty($mimetype) && function_exists('shell_exec')) {
  500. $mime = @shell_exec($cmd);
  501. if (strlen($mime) > 0) {
  502. $mime = explode("\n", trim($mime));
  503. if (preg_match($regexp, $mime[(count($mime) - 1)], $matches)) {
  504. $mimetype = $matches[1];
  505. }
  506. }
  507. }
  508. if (empty($mimetype) && function_exists('popen')) {
  509. $proc = @popen($cmd, 'r');
  510. if (is_resource($proc)) {
  511. $mime = @fread($proc, 512);
  512. @pclose($proc);
  513. if ($mime !== false) {
  514. $mime = explode("\n", trim($mime));
  515. if (preg_match($regexp, $mime[(count($mime) - 1)], $matches)) {
  516. $mimetype = $matches[1];
  517. }
  518. }
  519. }
  520. }
  521. }
  522. // Fall back to mime_content_type(), if available (still better than $_FILES[$field]['type'])
  523. if (empty($mimetype) && function_exists('mime_content_type')) {
  524. $mimetype = @mime_content_type($filepath);
  525. // It's possible that mime_content_type() returns FALSE or an empty string
  526. if ($mimetype == false && strlen($mimetype) > 0) {
  527. throw new ServerException(_m('Could not determine file\'s MIME type.'));
  528. }
  529. }
  530. // Unclear types are such that we can't really tell by the auto
  531. // detect what they are (.bin, .exe etc. are just "octet-stream")
  532. $unclearTypes = array('application/octet-stream',
  533. 'application/vnd.ms-office',
  534. 'application/zip',
  535. 'text/plain',
  536. 'text/html', // Ironically, Wikimedia Commons' SVG_logo.svg is identified as text/html
  537. // TODO: for XML we could do better content-based sniffing too
  538. 'text/xml');
  539. $supported = common_config('attachments', 'supported');
  540. // If we didn't match, or it is an unclear match
  541. if ($originalFilename && (!$mimetype || in_array($mimetype, $unclearTypes))) {
  542. try {
  543. $type = common_supported_filename_to_mime($originalFilename);
  544. return $type;
  545. } catch (UnknownExtensionMimeException $e) {
  546. // FIXME: I think we should keep the file extension here (supported should be === true here)
  547. } catch (Exception $e) {
  548. // Extension parsed but no connected mimetype, so $mimetype is our best guess
  549. }
  550. }
  551. // If $config['attachments']['supported'] equals boolean true, accept any mimetype
  552. if ($supported === true || array_key_exists($mimetype, $supported)) {
  553. // FIXME: Don't know if it always has a mimetype here because
  554. // finfo->file CAN return false on error: http://php.net/finfo_file
  555. // so if $supported === true, this may return something unexpected.
  556. return $mimetype;
  557. }
  558. // We can conclude that we have failed to get the MIME type
  559. $media = common_get_mime_media($mimetype);
  560. if ('application' !== $media) {
  561. // TRANS: Client exception thrown trying to upload a forbidden MIME type.
  562. // TRANS: %1$s is the file type that was denied, %2$s is the application part of
  563. // TRANS: the MIME type that was denied.
  564. $hint = sprintf(_m('"%1$s" is not a supported file type on this server. ' .
  565. 'Try using another %2$s format.'), $mimetype, $media);
  566. } else {
  567. // TRANS: Client exception thrown trying to upload a forbidden MIME type.
  568. // TRANS: %s is the file type that was denied.
  569. $hint = sprintf(_m('"%s" is not a supported file type on this server.'), $mimetype);
  570. }
  571. throw new ClientException($hint);
  572. }
  573. /**
  574. * Title for a file, to display in the interface (if there's no better title) and
  575. * for download filenames
  576. * @param $file File object
  577. * @returns string
  578. */
  579. public static function getDisplayName(File $file) : string {
  580. if (empty($file->filename)) {
  581. return _m('Untitled attachment');
  582. }
  583. // New file name format is "{bin2hex(original_name.ext)}-{$hash}"
  584. $filename = self::decodeFilename($file->filename);
  585. // If there was an error in the match, something's wrong with some piece
  586. // of code (could be a file with utf8 chars in the name)
  587. $log_error_msg = "Invalid file name for File with id={$file->id} " .
  588. "({$file->filename}). Some plugin probably did something wrong.";
  589. if ($filename === false) {
  590. common_log(LOG_ERR, $log_error_msg);
  591. } elseif ($filename === null) {
  592. // The old file name format was "{hash}.{ext}" so we didn't have a name
  593. // This extracts the extension
  594. $ret = preg_match('/^.+?\.+?(.+)$/', $file->filename, $matches);
  595. if ($ret !== 1) {
  596. common_log(LOG_ERR, $log_error_msg);
  597. return _m('Untitled attachment');
  598. }
  599. $ext = $matches[1];
  600. // There's a blacklisted extension array, which could have an alternative
  601. // extension, such as phps, to replace php. We want to turn it back
  602. // (currently defaulted to empty, but let's keep the feature)
  603. $blacklist = common_config('attachments', 'extblacklist');
  604. if (is_array($blacklist)) {
  605. foreach ($blacklist as $upload_ext => $safe_ext) {
  606. if ($ext === $safe_ext) {
  607. $ext = $upload_ext;
  608. break;
  609. }
  610. }
  611. }
  612. $filename = "untitled.{$ext}";
  613. }
  614. return $filename;
  615. }
  616. }