]> git.mxchange.org Git - friendica.git/commitdiff
Some more changed log levels
authorMichael <heluecht@pirati.ca>
Wed, 31 Aug 2022 05:01:22 +0000 (05:01 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 31 Aug 2022 05:01:22 +0000 (05:01 +0000)
14 files changed:
mod/photos.php
src/Model/Tag.php
src/Module/BaseApi.php
src/Module/DFRN/Notify.php
src/Module/OAuth/Revoke.php
src/Module/OAuth/Token.php
src/Module/Photo.php
src/Module/Proxy.php
src/Protocol/ActivityPub/Delivery.php
src/Protocol/ActivityPub/Processor.php
src/Protocol/ActivityPub/Receiver.php
src/Protocol/OStatus.php
src/Security/OAuth.php
src/Worker/Delivery.php

index 8244ac2b81ea67c37e7c420de68da2a47f3c4c9b..6a4596bf2427616f8030383a14f521d7062ae9d0 100644 (file)
@@ -678,14 +678,14 @@ function photos_post(App $a)
                return;
        }
 
-       Logger::info('loading the contents of ' . $src);
+       Logger::debug('loading contents', ['src' => $src]);
 
        $imagedata = @file_get_contents($src);
 
        $image = new Image($imagedata, $type);
 
        if (!$image->isValid()) {
-               Logger::info('unable to process image');
+               Logger::notice('unable to process image');
                notice(DI::l10n()->t('Unable to process image.'));
                @unlink($src);
                $foo = 0;
index 9204dea2df3910e3c7356a3c1e43fba89afecabf..435dfda7cbf2711c3775e83321a4e474b92c177f 100644 (file)
@@ -156,7 +156,7 @@ class Tag
 
                DBA::insert('post-tag', $fields, Database::INSERT_IGNORE);
 
-               Logger::info('Stored tag/mention', ['uri-id' => $uriId, 'tag-id' => $tagid, 'contact-id' => $cid, 'name' => $name, 'type' => $type, 'callstack' => System::callstack(8)]);
+               Logger::debug('Stored tag/mention', ['uri-id' => $uriId, 'tag-id' => $tagid, 'contact-id' => $cid, 'name' => $name, 'type' => $type, 'callstack' => System::callstack(8)]);
        }
 
        /**
@@ -389,7 +389,7 @@ class Tag
                        return;
                }
 
-               Logger::info('Removing tag/mention', ['uri-id' => $uriId, 'tid' => $tag['tid'], 'name' => $name, 'url' => $url, 'callstack' => System::callstack(8)]);
+               Logger::debug('Removing tag/mention', ['uri-id' => $uriId, 'tid' => $tag['tid'], 'name' => $name, 'url' => $url, 'callstack' => System::callstack(8)]);
                DBA::delete('post-tag', ['uri-id' => $uriId, 'type' => $type, 'tid' => $tag['tid'], 'cid' => $tag['cid']]);
        }
 
index f39a40cded75a52464d96637d59a87956fc46a35..1ed0b9033a57c57cd5795ba4fc58094cd1a434ce 100644 (file)
@@ -237,7 +237,7 @@ class BaseApi extends BaseModule
                        $posts_day = Post::countThread($condition);
 
                        if ($posts_day > $throttle_day) {
-                               Logger::info('Daily posting limit reached', ['uid' => $uid, 'posts' => $posts_day, 'limit' => $throttle_day]);
+                               Logger::notice('Daily posting limit reached', ['uid' => $uid, 'posts' => $posts_day, 'limit' => $throttle_day]);
                                $error = DI::l10n()->t('Too Many Requests');
                                $error_description = DI::l10n()->tt("Daily posting limit of %d post reached. The post was rejected.", "Daily posting limit of %d posts reached. The post was rejected.", $throttle_day);
                                $errorobj = new \Friendica\Object\Api\Mastodon\Error($error, $error_description);
@@ -253,7 +253,7 @@ class BaseApi extends BaseModule
                        $posts_week = Post::countThread($condition);
 
                        if ($posts_week > $throttle_week) {
-                               Logger::info('Weekly posting limit reached', ['uid' => $uid, 'posts' => $posts_week, 'limit' => $throttle_week]);
+                               Logger::notice('Weekly posting limit reached', ['uid' => $uid, 'posts' => $posts_week, 'limit' => $throttle_week]);
                                $error = DI::l10n()->t('Too Many Requests');
                                $error_description = DI::l10n()->tt("Weekly posting limit of %d post reached. The post was rejected.", "Weekly posting limit of %d posts reached. The post was rejected.", $throttle_week);
                                $errorobj = new \Friendica\Object\Api\Mastodon\Error($error, $error_description);
@@ -269,7 +269,7 @@ class BaseApi extends BaseModule
                        $posts_month = Post::countThread($condition);
 
                        if ($posts_month > $throttle_month) {
-                               Logger::info('Monthly posting limit reached', ['uid' => $uid, 'posts' => $posts_month, 'limit' => $throttle_month]);
+                               Logger::notice('Monthly posting limit reached', ['uid' => $uid, 'posts' => $posts_month, 'limit' => $throttle_month]);
                                $error = DI::l10n()->t('Too Many Requests');
                                $error_description = DI::l10n()->tt('Monthly posting limit of %d post reached. The post was rejected.', 'Monthly posting limit of %d posts reached. The post was rejected.', $throttle_month);
                                $errorobj = new \Friendica\Object\Api\Mastodon\Error($error, $error_description);
index 090ed3492656a8492e6fd97296c9cd714fe80180..08ec7340cbe0f40ea6a438f6c6b304e3e60f841f 100644 (file)
@@ -82,7 +82,7 @@ class Notify extends BaseModule
                        System::xmlExit(3, 'Contact ' . $msg['author'] . ' not found');
                }
 
-               Logger::info('Importing post with the public envelope.', ['transmitter' => $msg['author']]);
+               Logger::debug('Importing post with the public envelope.', ['transmitter' => $msg['author']]);
 
                // Now we should be able to import it
                $ret = DFRN::import($msg['message'], $importer, Conversation::PARCEL_DIASPORA_DFRN, Conversation::RELAY);
@@ -117,7 +117,7 @@ class Notify extends BaseModule
                        System::xmlExit(3, 'Contact ' . $msg['author'] . ' not found');
                }
 
-               Logger::info('Importing post with the private envelope.', ['transmitter' => $msg['author'], 'receiver' => $user['nickname']]);
+               Logger::debug('Importing post with the private envelope.', ['transmitter' => $msg['author'], 'receiver' => $user['nickname']]);
 
                // Now we should be able to import it
                $ret = DFRN::import($msg['message'], $importer, Conversation::PARCEL_DIASPORA_DFRN, Conversation::PUSH);
index a9be6e265b1036194c3b0984aeeef3c8691e8962..0604e90bf7de2bbcae6b3f0d3f277d3ded09e599 100644 (file)
@@ -49,7 +49,7 @@ class Revoke extends BaseApi
                $condition = ['client_id' => $request['client_id'], 'client_secret' => $request['client_secret'], 'access_token' => $request['token']];
                $token = DBA::selectFirst('application-view', ['id'], $condition);
                if (empty($token['id'])) {
-                       Logger::warning('Token not found', $condition);
+                       Logger::notice('Token not found', $condition);
                        DI::mstdnError()->Unauthorized();
                }
 
index 020dd931a9fc86a5ebab8f28131bf3f4a9a86ccc..1da8df18d5a41c64137a4661edce2a2362fb68a2 100644 (file)
@@ -88,7 +88,7 @@ class Token extends BaseApi
 
                        $token = DBA::selectFirst('application-view', ['access_token', 'created_at'], $condition);
                        if (!DBA::isResult($token)) {
-                               Logger::warning('Token not found or outdated', $condition);
+                               Logger::notice('Token not found or outdated', $condition);
                                DI::mstdnError()->Unauthorized();
                        }
                } else {
index c521d2be828bc1ec40693b64ffecbbb4b5f8041a..076dc8107afc7dee4e68221207dc03a688597fd2 100644 (file)
@@ -219,7 +219,7 @@ class Photo extends BaseModule
                $rest = $total - ($fetch + $data + $checksum + $output);
 
                if (!is_null($scale) && ($scale < 4)) {
-                       Logger::info('Performance:', ['scale' => $scale, 'resource' => $photo['resource-id'],
+                       Logger::debug('Performance:', ['scale' => $scale, 'resource' => $photo['resource-id'],
                                'total' => number_format($total, 3), 'fetch' => number_format($fetch, 3),
                                'data' => number_format($data, 3), 'checksum' => number_format($checksum, 3),
                                'output' => number_format($output, 3), 'rest' => number_format($rest, 3)]);
index cff5ed90b00fbe7d827efa1e6bbcb216b3b58697..7aecf682d7cd5507b2e5503a211e3f37f9e38c2b 100644 (file)
@@ -75,7 +75,7 @@ class Proxy extends BaseModule
                }
 
                if (!local_user()) {
-                       Logger::info('Redirecting not logged in user to original address', ['url' => $request['url']]);
+                       Logger::debug('Redirecting not logged in user to original address', ['url' => $request['url']]);
                        System::externalRedirect($request['url']);
                }
 
@@ -87,7 +87,7 @@ class Proxy extends BaseModule
                $img_str = $fetchResult->getBody();
 
                if (!$fetchResult->isSuccess() || empty($img_str)) {
-                       Logger::info('Error fetching image', ['image' => $request['url'], 'return' => $fetchResult->getReturnCode(), 'empty' => empty($img_str)]);
+                       Logger::notice('Error fetching image', ['image' => $request['url'], 'return' => $fetchResult->getReturnCode(), 'empty' => empty($img_str)]);
                        self::responseError();
                        // stop.
                }
@@ -98,7 +98,7 @@ class Proxy extends BaseModule
 
                $image = new Image($img_str, $mime);
                if (!$image->isValid()) {
-                       Logger::info('The image is invalid', ['image' => $request['url'], 'mime' => $mime]);
+                       Logger::notice('The image is invalid', ['image' => $request['url'], 'mime' => $mime]);
                        self::responseError();
                        // stop.
                }
@@ -193,7 +193,7 @@ class Proxy extends BaseModule
        private static function responseImageHttpCache(Image $img)
        {
                if (is_null($img) || !$img->isValid()) {
-                       Logger::info('The cached image is invalid');
+                       Logger::notice('The cached image is invalid');
                        self::responseError();
                        // stop.
                }
index 4f1bec61c9f3a19141a049d0989226269f5a3ca9..9aa45d0419a93dbb87e03b2f2612e684430fb56a 100644 (file)
@@ -52,7 +52,7 @@ class Delivery
                                if ($result['serverfailure']) {
                                        // In a timeout situation we assume that every delivery to that inbox will time out.
                                        // So we set the flag and try all deliveries at a later time.
-                                       Logger::info('Inbox delivery has a server failure', ['inbox' => $inbox]);
+                                       Logger::notice('Inbox delivery has a server failure', ['inbox' => $inbox]);
                                        $serverfail = true;
                                }
                        }
@@ -151,7 +151,7 @@ class Delivery
 
                                        }
 
-                                       Logger::info('Delivery failed', ['retcode' => $response->getReturnCode(), 'serverfailure' => $serverfail, 'drop' => $drop, 'runtime' => round($runtime, 3), 'uri-id' => $uri_id, 'uid' => $uid, 'item_id' => $item_id, 'cmd' => $cmd, 'inbox' => $inbox]);
+                                       Logger::notice('Delivery failed', ['retcode' => $response->getReturnCode(), 'serverfailure' => $serverfail, 'drop' => $drop, 'runtime' => round($runtime, 3), 'uri-id' => $uri_id, 'uid' => $uid, 'item_id' => $item_id, 'cmd' => $cmd, 'inbox' => $inbox]);
                                }
                                if ($uri_id) {
                                        if ($success) {
index 668b8a5b89b5e56d07f879e8d45fe12589aacd5e..5889d9f6e0067cdc4c35ede8b975ac2b2779f56f 100644 (file)
@@ -357,7 +357,7 @@ class Processor
                $item['diaspora_signed_text'] = $activity['diaspora:comment'] ?? '';
 
                if (empty($conversation) && empty($activity['directmessage']) && ($item['gravity'] != GRAVITY_PARENT) && !Post::exists(['uri' => $item['thr-parent']])) {
-                       Logger::info('Parent not found, message will be discarded.', ['thr-parent' => $item['thr-parent']]);
+                       Logger::notice('Parent not found, message will be discarded.', ['thr-parent' => $item['thr-parent']]);
                        if (!$fetch_parents) {
                                Queue::remove($activity);
                        }
@@ -657,6 +657,7 @@ class Processor
                $activity['reply-to-id'] = $activity['object_id'];
                $item = self::createItem($activity, false);
                if (empty($item)) {
+                       Logger::debug('Activity was not prepared', ['id' => $activity['object_id']]);
                        return;
                }
 
@@ -1304,7 +1305,7 @@ class Processor
 
                $pcid = Contact::getIdForURL($url, 0, false);
                if (empty($pcid)) {
-                       Logger::info('Contact not found', ['contact' => $url]);
+                       Logger::notice('Contact not found', ['contact' => $url]);
                        return;
                }
 
@@ -1364,7 +1365,7 @@ class Processor
 
        public static function fetchCachedActivity(string $url, int $uid): array
        {
-               $cachekey = self::CACHEKEY_FETCH_ACTIVITY . $uid . ':' . $url;
+               $cachekey = self::CACHEKEY_FETCH_ACTIVITY . $uid . ':' . hash('sha256', $url);
                $object = DI::cache()->get($cachekey);
 
                if (!is_null($object)) {
index 10ff58b4bd231504b32c943bf624cf2439170f86..d6a7384b67297563e39a76b8f12d6f4ca7cdc1f2 100644 (file)
@@ -391,6 +391,7 @@ class Receiver
 
                // Fetch the activity on Lemmy "Announce" messages (announces of activities)
                if (($type == 'as:Announce') && in_array($object_type, array_merge(self::ACTIVITY_TYPES, ['as:Delete', 'as:Undo', 'as:Update']))) {
+                       Logger::debug('Fetch announced activity', ['object' => $object_id]);
                        $data = Processor::fetchCachedActivity($object_id, $fetch_uid);
                        if (!empty($data)) {
                                $type = $object_type;
@@ -590,6 +591,7 @@ class Receiver
                // Lemmy is announcing activities.
                // We are changing the announces into regular activities.
                if (($type == 'as:Announce') && in_array($object_data['type'] ?? '', array_merge(self::ACTIVITY_TYPES, ['as:Delete', 'as:Undo', 'as:Update']))) {
+                       Logger::debug('Change type of announce to activity', ['type' => $object_data['type']]);
                        $type = $object_data['type'];
                }
 
@@ -727,11 +729,13 @@ class Receiver
                                        if (!Post::exists(['uri' => $object_data['id'], 'uid' => 0])) {
                                                $item = ActivityPub\Processor::createItem($object_data, $fetch_parents);
                                                if (empty($item)) {
+                                                       Logger::debug('announced id was not created', ['id' => $object_data['id']]);
                                                        return false;
                                                }
 
                                                $item['post-reason'] = Item::PR_ANNOUNCEMENT;
                                                ActivityPub\Processor::postItem($object_data, $item);
+                                               Logger::debug('Created announced id', ['id' => $object_data['id']]);
                                        } else {
                                                Logger::info('Announced id already exists', ['id' => $object_data['id']]);
                                                Queue::remove($object_data);
@@ -744,6 +748,7 @@ class Receiver
                                                $announce_object_data['object_id'] = $object_data['object_id'];
                                                $announce_object_data['object_type'] = $object_data['object_type'];
                                                $announce_object_data['push'] = $push;
+                                               Logger::debug('Create announce activity', ['id' => $announce_object_data['id'], 'object_data' => $announce_object_data]);
 
                                                if (!empty($object_data['raw'])) {
                                                        $announce_object_data['raw'] = $object_data['raw'];
index 3758b0fe644c1f139a6902e988d9a4f5a7724abf..bd6002392a5659b3d24950f924ec97ae2e93d106 100644 (file)
@@ -938,7 +938,7 @@ class OStatus
                                                break;
 
                                        default:
-                                               Logger::warning('Unsupported rel=' . $attribute['rel'] . ', href=' . $attribute['href'] . ', object-type=' . $item['object-type']);
+                                               Logger::notice('Unsupported rel=' . $attribute['rel'] . ', href=' . $attribute['href'] . ', object-type=' . $item['object-type']);
                                }
                        }
                }
index a6f4fad80af0d117f564b2daafabfd942206b2ff..3eaa022c502152361e822eb59f2f8121fc00d8cc 100644 (file)
@@ -96,7 +96,7 @@ class OAuth
 
                $token = DBA::selectFirst('application-view', ['uid', 'id', 'name', 'website', 'created_at', 'read', 'write', 'follow', 'push'], $condition);
                if (!DBA::isResult($token)) {
-                       Logger::warning('Token not found', $condition);
+                       Logger::notice('Token not found', $condition);
                        return [];
                }
                Logger::debug('Token found', $token);
index 786f71a664282f7dab0c603bb035cc8521d13792..32d4887003bc90794eeb21b97ee8246004d381df 100644 (file)
@@ -103,7 +103,7 @@ class Delivery
                        DBA::close($itemdata);
 
                        if (empty($target_item)) {
-                               Logger::warning('Item ' . $target_id . "wasn't found. Quitting here.");
+                               Logger::warning("No target item data. Quitting here.", ['id' => $target_id]);
                                return;
                        }