]> git.mxchange.org Git - friendica.git/commitdiff
Some more warnings and erors are fixed
authorMichael <heluecht@pirati.ca>
Sun, 28 Aug 2022 19:27:21 +0000 (19:27 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 28 Aug 2022 19:27:21 +0000 (19:27 +0000)
src/Model/GServer.php
src/Model/Item.php
src/Network/HTTPClient/Client/HttpClient.php
src/Util/ParseUrl.php

index 08cefba56c244793718aef27540c947965597ff4..6192075f9618b699ad3293c96577dae9678f1b79 100644 (file)
@@ -304,7 +304,7 @@ class GServer
                        Logger::info('Set failed status for existing server', ['url' => $url]);
                        return;
                }
-               DBA::insert('gserver', ['url' => $url, 'nurl' => Strings::normaliseLink($url),
+               self::insert(['url' => $url, 'nurl' => Strings::normaliseLink($url),
                        'network' => Protocol::PHANTOM, 'created' => DateTimeFormat::utcNow(),
                        'failed' => true, 'last_failure' => DateTimeFormat::utcNow()]);
                Logger::info('Set failed status for new server', ['url' => $url]);
@@ -583,7 +583,7 @@ class GServer
                $gserver = DBA::selectFirst('gserver', ['network'], ['nurl' => Strings::normaliseLink($url)]);
                if (!DBA::isResult($gserver)) {
                        $serverdata['created'] = DateTimeFormat::utcNow();
-                       $ret = DBA::insert('gserver', $serverdata);
+                       $ret = self::insert($serverdata);
                        $id = DBA::lastInsertId();
                } else {
                        $ret = self::update($serverdata, ['nurl' => $serverdata['nurl']]);
@@ -2259,6 +2259,7 @@ class GServer
        }
 
        /**
+        * Update rows in the gserver table.
         * Enforces gserver table field maximum sizes to avoid "Data too long" database errors
         *
         * @param array $fields
@@ -2274,4 +2275,22 @@ class GServer
 
                return DBA::update('gserver', $fields, $condition);
        }
+
+       /**
+        * Insert a row into the gserver table.
+        * Enforces gserver table field maximum sizes to avoid "Data too long" database errors
+        *
+        * @param array $fields
+        * @param int   $duplicate_mode What to do on a duplicated entry
+        *
+        * @return bool
+        *
+        * @throws Exception
+        */
+       public static function insert(array $fields, int $duplicate_mode = Database::INSERT_DEFAULT): bool
+       {
+               $fields = DI::dbaDefinition()->truncateFieldsForTable('gserver', $fields);
+
+               return DBA::insert('gserver', $fields, $duplicate_mode);
+       }
 }
index 598fca84073fb4df2db22bfc936d499e51867ce3..eb150da454c0a2dd6b46c7d791cd740bbee9568b 100644 (file)
@@ -2674,9 +2674,11 @@ class Item
                        'unseen'        => 1,
                ];
 
-               $signed = Diaspora::createLikeSignature($uid, $new_item);
-               if (!empty($signed)) {
-                       $new_item['diaspora_signed_text'] = json_encode($signed);
+               if (in_array($activity, [Activity::LIKE, Activity::DISLIKE])) {
+                       $signed = Diaspora::createLikeSignature($uid, $new_item);
+                       if (!empty($signed)) {
+                               $new_item['diaspora_signed_text'] = json_encode($signed);
+                       }
                }
 
                self::insert($new_item, true);
index a33d9749c5cce383b5d76dfbb878f2b44cb8ef87..7974965ac3740ffb14efa48c854dbd07a5d634ce 100644 (file)
@@ -156,6 +156,8 @@ class HttpClient implements ICanSendHttpRequests
                        $conf[HttpClientOptions::HEADERS]['Accept'] = HttpClientAccept::DEFAULT;
                }
 
+               $conf['sink'] = tempnam(System::getTempPath(), 'http-');
+
                try {
                        $this->logger->debug('http request config.', ['url' => $url, 'method' => $method, 'options' => $conf]);
 
@@ -172,6 +174,7 @@ class HttpClient implements ICanSendHttpRequests
                        $this->logger->info('Invalid Argument for HTTP call.', ['url' => $url, 'method' => $method, 'exception' => $argumentException]);
                        return new CurlResult($url, '', ['http_code' => 500], $argumentException->getCode(), $argumentException->getMessage());
                } finally {
+                       unlink($conf['sink']);
                        $this->logger->debug('Request stop.', ['url' => $url, 'method' => $method]);
                        $this->profiler->stopRecording();
                }
index d0b168278563e24be39d6a79c01939846e7e1d98..0b4bf9c9594fd2ffc97f0a66b642bd53f0503e68 100644 (file)
@@ -287,22 +287,22 @@ class ParseUrl
                // Expected form: Content-Type: text/html; charset=ISO-8859-4
                if (preg_match('/charset=([a-z0-9-_.\/]+)/i', $curlResult->getContentType(), $matches)) {
                        $charset = trim(trim(trim(array_pop($matches)), ';,'));
+               } else {
+                       // Then in body that gets precedence
+                       // Expected forms:
+                       // - <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+                       // - <meta charset="utf-8">
+                       // - <meta charset=utf-8>
+                       // - <meta charSet="utf-8">
+                       // We escape <style> and <script> tags since they can contain irrelevant charset information
+                       // (see https://github.com/friendica/friendica/issues/9251#issuecomment-698636806)
+                       Strings::performWithEscapedBlocks($body, '#<(?:style|script).*?</(?:style|script)>#ism', function ($body) use (&$charset) {
+                               if (preg_match('/charset=["\']?([a-z0-9-_.\/]+)/i', $body, $matches)) {
+                                       $charset = trim(trim(trim(array_pop($matches)), ';,'));
+                               }
+                       });
                }
 
-               // Then in body that gets precedence
-               // Expected forms:
-               // - <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-               // - <meta charset="utf-8">
-               // - <meta charset=utf-8>
-               // - <meta charSet="utf-8">
-               // We escape <style> and <script> tags since they can contain irrelevant charset information
-               // (see https://github.com/friendica/friendica/issues/9251#issuecomment-698636806)
-               Strings::performWithEscapedBlocks($body, '#<(?:style|script).*?</(?:style|script)>#ism', function ($body) use (&$charset) {
-                       if (preg_match('/charset=["\']?([a-z0-9-_.\/]+)/i', $body, $matches)) {
-                               $charset = trim(trim(trim(array_pop($matches)), ';,'));
-                       }
-               });
-
                $siteinfo['charset'] = $charset;
 
                if ($charset && strtoupper($charset) != 'UTF-8') {