]> git.mxchange.org Git - friendica.git/commitdiff
Renamed function
authorMichael <heluecht@pirati.ca>
Thu, 6 Aug 2020 10:31:05 +0000 (10:31 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 6 Aug 2020 10:31:05 +0000 (10:31 +0000)
src/Model/FContact.php
src/Protocol/DFRN.php
src/Protocol/Diaspora.php
src/Worker/Delivery.php

index 07e8af407554c0ebae6da7b10019bee7b95cd169..c4d6251c3b4d951618afa5d83594988c846eaf87 100644 (file)
@@ -40,7 +40,7 @@ class FContact
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         * @throws \ImagickException
         */
-       public static function getByUrl($handle, $update = null)
+       public static function getByURL($handle, $update = null)
        {
                $person = DBA::selectFirst('fcontact', [], ['network' => Protocol::DIASPORA, 'addr' => $handle]);
                if (!DBA::isResult($person)) {
@@ -77,7 +77,7 @@ class FContact
                        if ($r && ($r["network"] === Protocol::DIASPORA)) {
                                self::updateFContact($r);
 
-                               $person = self::getByUrl($handle, false);
+                               $person = self::getByURL($handle, false);
                        }
                }
 
index e10cc6915ce96b467aa1d01a50393fd88312ed8c..96b1450aedaceb282d3b8732c2482be04a4bc812 100644 (file)
@@ -1410,7 +1410,7 @@ class DFRN
                                }
                        }
 
-                       $fcontact = FContact::getByUrl($contact['addr']);
+                       $fcontact = FContact::getByURL($contact['addr']);
                        if (empty($fcontact)) {
                                Logger::log('Unable to find contact details for ' . $contact['id'] . ' - ' . $contact['addr']);
                                return -22;
index be32eb88b4d213a7d2415161b7c31a68a40e032e..c77e1610d007c325de571edd1b7c771840e414a3 100644 (file)
@@ -937,7 +937,7 @@ class Diaspora
 
                Logger::log("Fetching diaspora key for: ".$handle);
 
-               $r = FContact::getByUrl($handle);
+               $r = FContact::getByURL($handle);
                if ($r) {
                        return $r["pubkey"];
                }
@@ -1020,7 +1020,7 @@ class Diaspora
         */
        public static function isSupportedByContactUrl($url, $update = null)
        {
-               return !empty(FContact::getByUrl($url, $update));
+               return !empty(FContact::getByURL($url, $update));
        }
 
        /**
@@ -1379,7 +1379,7 @@ class Diaspora
                $item = Item::selectFirst($fields, $condition);
 
                if (!DBA::isResult($item)) {
-                       $person = FContact::getByUrl($author);
+                       $person = FContact::getByURL($author);
                        $result = self::storeByGuid($guid, $person["url"], $uid);
 
                        // We don't have an url for items that arrived at the public dispatcher
@@ -1602,7 +1602,7 @@ class Diaspora
                if (DBA::isResult($item)) {
                        return $item["uri"];
                } elseif (!$onlyfound) {
-                       $person = FContact::getByUrl($author);
+                       $person = FContact::getByURL($author);
 
                        $parts = parse_url($person['url']);
                        unset($parts['path']);
@@ -1658,7 +1658,7 @@ class Diaspora
                                continue;
                        }
 
-                       $person = FContact::getByUrl($match[3]);
+                       $person = FContact::getByURL($match[3]);
                        if (empty($person)) {
                                continue;
                        }
@@ -1714,7 +1714,7 @@ class Diaspora
                        return false;
                }
 
-               $person = FContact::getByUrl($author);
+               $person = FContact::getByURL($author);
                if (!is_array($person)) {
                        Logger::log("unable to find author details");
                        return false;
@@ -1829,7 +1829,7 @@ class Diaspora
                $body = Markdown::toBBCode($msg_text);
                $message_uri = $msg_author.":".$msg_guid;
 
-               $person = FContact::getByUrl($msg_author);
+               $person = FContact::getByURL($msg_author);
 
                return Mail::insert([
                        'uid'        => $importer['uid'],
@@ -1946,7 +1946,7 @@ class Diaspora
                        return false;
                }
 
-               $person = FContact::getByUrl($author);
+               $person = FContact::getByURL($author);
                if (!is_array($person)) {
                        Logger::log("unable to find author details");
                        return false;
@@ -2052,7 +2052,7 @@ class Diaspora
 
                $message_uri = $author.":".$guid;
 
-               $person = FContact::getByUrl($author);
+               $person = FContact::getByURL($author);
                if (!$person) {
                        Logger::log("unable to find author details");
                        return false;
@@ -2118,7 +2118,7 @@ class Diaspora
                        return false;
                }
 
-               $person = FContact::getByUrl($author);
+               $person = FContact::getByURL($author);
                if (!is_array($person)) {
                        Logger::log("Person not found: ".$author);
                        return false;
@@ -2392,7 +2392,7 @@ class Diaspora
                        Logger::log("Author ".$author." wants to listen to us.", Logger::DEBUG);
                }
 
-               $ret = FContact::getByUrl($author);
+               $ret = FContact::getByURL($author);
 
                if (!$ret || ($ret["network"] != Protocol::DIASPORA)) {
                        Logger::log("Cannot resolve diaspora handle ".$author." for ".$recipient);
@@ -2680,7 +2680,7 @@ class Diaspora
                $target_guid = Strings::escapeTags(XML::unescape($data->target_guid));
                $target_type = Strings::escapeTags(XML::unescape($data->target_type));
 
-               $person = FContact::getByUrl($author);
+               $person = FContact::getByURL($author);
                if (!is_array($person)) {
                        Logger::log("unable to find author detail for ".$author);
                        return false;
@@ -3083,7 +3083,7 @@ class Diaspora
                // We always try to use the data from the fcontact table.
                // This is important for transmitting data to Friendica servers.
                if (!empty($contact['addr'])) {
-                       $fcontact = FContact::getByUrl($contact['addr']);
+                       $fcontact = FContact::getByURL($contact['addr']);
                        if (!empty($fcontact)) {
                                $dest_url = ($public_batch ? $fcontact["batch"] : $fcontact["notify"]);
                        }
index 5278a7647fcf64ab0194d720fbd93964fd4095a8..9027598c4eaff281684636d99e227149d26ca37d 100644 (file)
@@ -268,7 +268,7 @@ class Delivery
        private static function deliverDFRN($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup)
        {
                // Transmit Diaspora reshares via Diaspora if the Friendica contact support Diaspora
-               if (Diaspora::isReshare($target_item['body']) && !empty(FContact::getByUrl($contact['addr'], false))) {
+               if (Diaspora::isReshare($target_item['body']) && !empty(FContact::getByURL($contact['addr'], false))) {
                        Logger::info('Reshare will be transmitted via Diaspora', ['url' => $contact['url'], 'guid' => ($target_item['guid'] ?? '') ?: $target_item['id']]);
                        self::deliverDiaspora($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup);
                        return;