]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Proxy.php
Simplified proxy handling
[friendica.git] / src / Module / Proxy.php
index 8c3493b2adaa6033027b78cf160dacaae6ca31a2..6ccc38f60d7000829bafe7307378aeb72eb485f7 100644 (file)
 <?php
 /**
- * @file src/Module/Proxy.php
- * @brief Based upon "Privacy Image Cache" by Tobias Hößl <https://github.com/CatoTH/>
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
+
 namespace Friendica\Module;
 
-use Friendica\App;
 use Friendica\BaseModule;
-use Friendica\Core\Config;
-use Friendica\Core\L10n;
+use Friendica\Core\Logger;
 use Friendica\Core\System;
-use Friendica\Database\DBA;
-use Friendica\Model\Photo;
 use Friendica\Object\Image;
-use Friendica\Util\DateTimeFormat;
-use Friendica\Util\Network;
+use Friendica\Util\HTTPSignature;
+use Friendica\Util\Images;
 use Friendica\Util\Proxy as ProxyUtils;
 
 /**
- * @brief Module Proxy
+ * Module Proxy
+ *
+ * urls:
+ * /proxy/[sub1/[sub2/]]<base64url image url>[.ext][:size]
+ * /proxy?url=<image url>
  */
 class Proxy extends BaseModule
 {
 
        /**
-        * @brief Initializer method for this class.
+        * Initializer method for this class.
         *
         * Sets application instance and checks if /proxy/ path is writable.
         *
-        * @param \Friendica\App $app Application instance
         */
-       public static function init()
+       public static function rawContent(array $parameters = [])
        {
-               // Set application instance here
-               $a = self::getApp();
+               if (isset($_SERVER["HTTP_IF_MODIFIED_SINCE"])) {
+                       header("HTTP/1.1 304 Not Modified");
+                       header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
+                       if (!empty($_SERVER["HTTP_IF_NONE_MATCH"])) {
+                               header("Etag: " . $_SERVER["HTTP_IF_NONE_MATCH"]);
+                       }
+                       header("Expires: " . gmdate("D, d M Y H:i:s", time() + (31536000)) . " GMT");
+                       header("Cache-Control: max-age=31536000");
+                       if (function_exists("header_remove")) {
+                               header_remove("Last-Modified");
+                               header_remove("Expires");
+                               header_remove("Cache-Control");
+                       }
+                       exit;
+               }
 
-               /*
-                * Pictures are stored in one of the following ways:
-                *
-                * 1. If a folder "proxy" exists and is writeable, then use this for caching
-                * 2. If a cache path is defined, use this
-                * 3. If everything else failed, cache into the database
-                *
-                * Question: Do we really need these three methods?
-                */
-               if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && isset($_SERVER['HTTP_IF_NONE_MATCH'])) {
-                       header('HTTP/1.1 304 Not Modified');
-                       header('Last-Modified: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
-                       header('Etag: ' . $_SERVER['HTTP_IF_NONE_MATCH']);
-                       header('Expires: ' . gmdate('D, d M Y H:i:s', time() + (31536000)) . ' GMT');
-                       header('Cache-Control: max-age=31536000');
+               $request = self::getRequestInfo($parameters);
 
-                       if (function_exists('header_remove')) {
-                               header_remove('Last-Modified');
-                               header_remove('Expires');
-                               header_remove('Cache-Control');
-                       }
+               if (empty($request['url'])) {
+                       throw new \Friendica\Network\HTTPException\BadRequestException();
+               }
 
-                       /// @TODO Stop here?
-                       exit();
+               if (!local_user()) {
+                       Logger::info('Redirecting not logged in user to original address', ['url' => $request['url']]);
+                       System::externalRedirect($request['url']);
                }
 
-               if (function_exists('header_remove')) {
-                       header_remove('Pragma');
-                       header_remove('pragma');
+               // It shouldn't happen but it does - spaces in URL
+               $request['url'] = str_replace(' ', '+', $request['url']);
+
+               // Fetch the content with the local user
+               $fetchResult = HTTPSignature::fetchRaw($request['url'], local_user(), ['timeout' => 10]);
+               $img_str = $fetchResult->getBody();
+
+               // If there is an error then return an error
+               if ((substr($fetchResult->getReturnCode(), 0, 1) == '4') || empty($img_str)) {
+                       Logger::info('Error fetching image', ['image' => $request['url'], 'return' => $fetchResult->getReturnCode(), 'empty' => empty($img_str)]);
+                       self::responseError();
+                       // stop.
                }
 
-               $thumb = false;
-               $size = 1024;
-               $sizetype = '';
-               $basepath = $a->getBasePath();
+               $mime = Images::getMimeTypeByData($img_str);
 
-               // If the cache path isn't there, try to create it
-               if (!is_dir($basepath . '/proxy') && is_writable($basepath)) {
-                       mkdir($basepath . '/proxy');
+               $image = new Image($img_str, $mime);
+               if (!$image->isValid()) {
+                       Logger::info('The image is invalid', ['image' => $request['url'], 'mime' => $mime]);
+                       self::responseError();
+                       // stop.
                }
 
-               // Checking if caching into a folder in the webroot is activated and working
-               $direct_cache = (is_dir($basepath . '/proxy') && is_writable($basepath . '/proxy'));
+               // reduce quality - if it isn't a GIF
+               if ($image->getType() != 'image/gif') {
+                       $image->scaleDown($request['size']);
+               }
 
-               // Look for filename in the arguments
-               if ((isset($a->argv[1]) || isset($a->argv[2]) || isset($a->argv[3])) && !isset($_REQUEST['url'])) {
-                       if (isset($a->argv[3])) {
-                               $url = $a->argv[3];
-                       } elseif (isset($a->argv[2])) {
-                               $url = $a->argv[2];
-                       } else {
-                               $url = $a->argv[1];
-                       }
+               self::responseImageHttpCache($image);
+               // stop.
+       }
 
-                       if (isset($a->argv[3]) && ($a->argv[3] == 'thumb')) {
-                               $size = 200;
-                       }
+       /**
+        * Build info about requested image to be proxied
+        *
+        * @return array
+        *    [
+        *      'url' => requested url,
+        *      'size' => requested image size (int)
+        *      'sizetype' => requested image size (string): ':micro', ':thumb', ':small', ':medium', ':large'
+        *    ]
+        * @throws \Exception
+        */
+       private static function getRequestInfo(array $parameters)
+       {
+               $size = ProxyUtils::PIXEL_LARGE;
+               $sizetype = '';
+
+               if (!empty($parameters['url']) && empty($_REQUEST['url'])) {
+                       $url = $parameters['url'];
 
                        // thumb, small, medium and large.
                        if (substr($url, -6) == ':micro') {
-                               $size = 48;
+                               $size = ProxyUtils::PIXEL_MICRO;
                                $sizetype = ':micro';
                                $url = substr($url, 0, -6);
                        } elseif (substr($url, -6) == ':thumb') {
-                               $size = 80;
+                               $size = ProxyUtils::PIXEL_THUMB;
                                $sizetype = ':thumb';
                                $url = substr($url, 0, -6);
                        } elseif (substr($url, -6) == ':small') {
-                               $size = 175;
+                               $size = ProxyUtils::PIXEL_SMALL;
                                $url = substr($url, 0, -6);
                                $sizetype = ':small';
                        } elseif (substr($url, -7) == ':medium') {
-                               $size = 600;
+                               $size = ProxyUtils::PIXEL_MEDIUM;
                                $url = substr($url, 0, -7);
                                $sizetype = ':medium';
                        } elseif (substr($url, -6) == ':large') {
-                               $size = 1024;
+                               $size = ProxyUtils::PIXEL_LARGE;
                                $url = substr($url, 0, -6);
                                $sizetype = ':large';
                        }
@@ -124,149 +156,46 @@ class Proxy extends BaseModule
                        $url = str_replace(['.jpg', '.jpeg', '.gif', '.png'], ['','','',''], $url);
 
                        $url = base64_decode(strtr($url, '-_', '+/'), true);
-
-                       if ($url) {
-                               $_REQUEST['url'] = $url;
-                       }
                } else {
-                       $direct_cache = false;
-               }
-
-               if (empty($_REQUEST['url'])) {
-                       System::httpExit(400, ["title" => L10n::t('Bad Request.')]);
-               }
-
-               if (!$direct_cache) {
-                       $urlhash = 'pic:' . sha1($_REQUEST['url']);
-
-                       $cachefile = get_cachefile(hash('md5', $_REQUEST['url']));
-                       if ($cachefile != '' && file_exists($cachefile)) {
-                               $img_str = file_get_contents($cachefile);
-                               $mime = mime_content_type($cachefile);
-
-                               header('Content-type: ' . $mime);
-                               header('Last-Modified: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
-                               header('Etag: "' . md5($img_str) . '"');
-                               header('Expires: ' . gmdate('D, d M Y H:i:s', time() + (31536000)) . ' GMT');
-                               header('Cache-Control: max-age=31536000');
-
-                               // reduce quality - if it isn't a GIF
-                               if ($mime != 'image/gif') {
-                                       $image = new Image($img_str, $mime);
-
-                                       if ($image->isValid()) {
-                                               $img_str = $image->asString();
-                                       }
-                               }
-
-                               echo $img_str;
-                               exit();
-                       }
-               } else {
-                       $cachefile = '';
-               }
-
-               $valid = true;
-               $photo = null;
-
-               if (!$direct_cache && ($cachefile == '')) {
-                       $photo = DBA::selectFirst('photo', ['data', 'desc'], ['resource-id' => $urlhash]);
-
-                       if (DBA::isResult($photo)) {
-                               $img_str = $photo['data'];
-                               $mime = $photo['desc'];
-
-                               if ($mime == '') {
-                                       $mime = 'image/jpeg';
-                               }
-                       }
-               }
-
-               if (!DBA::isResult($photo)) {
-                       // It shouldn't happen but it does - spaces in URL
-                       $_REQUEST['url'] = str_replace(' ', '+', $_REQUEST['url']);
-                       $redirects = 0;
-                       $fetchResult = Network::fetchUrlFull($_REQUEST['url'], true, $redirects, 10);
-                       $img_str = $fetchResult->getBody();
-
-                       $tempfile = tempnam(get_temppath(), 'cache');
-                       file_put_contents($tempfile, $img_str);
-                       $mime = mime_content_type($tempfile);
-                       unlink($tempfile);
-
-                       // If there is an error then return a blank image
-                       if ((substr($fetchResult->getReturnCode(), 0, 1) == '4') || (!$img_str)) {
-                               $img_str = file_get_contents('images/blank.png');
-                               $mime = 'image/png';
-                               $cachefile = ''; // Clear the cachefile so that the dummy isn't stored
-                               $valid = false;
-                               $image = new Image($img_str, 'image/png');
-
-                               if ($image->isValid()) {
-                                       $image->scaleDown(10);
-                                       $img_str = $image->asString();
-                               }
-                       } elseif ($mime != 'image/jpeg' && !$direct_cache && $cachefile == '') {
-                               $image = @imagecreatefromstring($img_str);
-
-                               if ($image === FALSE) {
-                                       die();
-                               }
-
-                               $fields = ['uid' => 0, 'contact-id' => 0, 'guid' => System::createGUID(), 'resource-id' => $urlhash, 'created' => DateTimeFormat::utcNow(), 'edited' => DateTimeFormat::utcNow(),
-                                       'filename' => basename($_REQUEST['url']), 'type' => '', 'album' => '', 'height' => imagesy($image), 'width' => imagesx($image),
-                                       'datasize' => 0, 'data' => $img_str, 'scale' => 100, 'profile' => 0,
-                                       'allow_cid' => '', 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '', 'desc' => $mime];
-                               DBA::insert('photo', $fields);
-                       } else {
-                               $image = new Image($img_str, $mime);
-
-                               if ($image->isValid() && !$direct_cache && ($cachefile == '')) {
-                                       Photo::store($image, 0, 0, $urlhash, $_REQUEST['url'], '', 100);
-                               }
-                       }
+                       $url = $_REQUEST['url'] ?? '';
                }
 
-               $img_str_orig = $img_str;
-
-               // reduce quality - if it isn't a GIF
-               if ($mime != 'image/gif') {
-                       $image = new Image($img_str, $mime);
-
-                       if ($image->isValid()) {
-                               $image->scaleDown($size);
-                               $img_str = $image->asString();
-                       }
-               }
-
-               /*
-                * If there is a real existing directory then put the cache file there
-                * advantage: real file access is really fast
-                * Otherwise write in cachefile
-                */
-               if ($valid && $direct_cache) {
-                       file_put_contents($basepath . '/proxy/' . ProxyUtils::proxifyUrl($_REQUEST['url'], true), $img_str_orig);
-
-                       if ($sizetype != '') {
-                               file_put_contents($basepath . '/proxy/' . ProxyUtils::proxifyUrl($_REQUEST['url'], true) . $sizetype, $img_str);
-                       }
-               } elseif ($cachefile != '') {
-                       file_put_contents($cachefile, $img_str_orig);
-               }
+               return [
+                       'url' => $url,
+                       'size' => $size,
+                       'sizetype' => $sizetype,
+               ];
+       }
 
-               header('Content-type: ' . $mime);
+       /**
+        * In case of an error just stop. We don't return content to avoid caching problems
+        *
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        */
+       private static function responseError()
+       {
+               throw new \Friendica\Network\HTTPException\InternalServerErrorException();
+       }
 
-               // Only output the cache headers when the file is valid
-               if ($valid) {
-                       header('Last-Modified: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
-                       header('Etag: "' . md5($img_str) . '"');
-                       header('Expires: ' . gmdate('D, d M Y H:i:s', time() + (31536000)) . ' GMT');
-                       header('Cache-Control: max-age=31536000');
+       /**
+        * Output the image with cache headers
+        *
+        * @param Image $img
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        */
+       private static function responseImageHttpCache(Image $img)
+       {
+               if (is_null($img) || !$img->isValid()) {
+                       Logger::info('The cached image is invalid');
+                       self::responseError();
+                       // stop.
                }
-
-               echo $img_str;
-
+               header('Content-type: ' . $img->getType());
+               header('Last-Modified: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
+               header('Etag: "' . md5($img->asString()) . '"');
+               header('Expires: ' . gmdate('D, d M Y H:i:s', time() + (31536000)) . ' GMT');
+               header('Cache-Control: max-age=31536000');
+               echo $img->asString();
                exit();
        }
-
 }