]> git.mxchange.org Git - friendica.git/commitdiff
Review changes
authorAdam Magness <adam.magness@gmail.com>
Tue, 9 Jan 2018 16:23:26 +0000 (11:23 -0500)
committerAdam Magness <adam.magness@gmail.com>
Tue, 9 Jan 2018 16:23:26 +0000 (11:23 -0500)
Update update and new functions to updateFromProbe and create. Update calls to renamed functions.

mod/contacts.php
mod/follow.php
mod/ostatus_subscribe.php
mod/repair_ostatus.php
mod/salmon.php
src/Model/Contact.php
src/Worker/OnePoll.php

index ea384fbefd845cb9bd0bb0a1218d9cad693c5e5f..a2a734f7588a1f4e40f895d25148a09ba8819e01 100644 (file)
@@ -242,7 +242,7 @@ function _contact_update($contact_id)
        $uid = $contact["uid"];
 
        if ($r[0]["network"] == NETWORK_OSTATUS) {
-               $result = Contact::new($uid, $contact["url"], false, $contact["network"]);
+               $result = Contact::create($uid, $contact["url"], false, $contact["network"]);
 
                if ($result['success']) {
                        q("UPDATE `contact` SET `subhub` = 1 WHERE `id` = %d", intval($contact_id));
@@ -274,7 +274,7 @@ function _contact_update_profile($contact_id)
        $update = array();
 
        if ($data["network"] == NETWORK_OSTATUS) {
-               $result = Contact::new($uid, $data["url"], false);
+               $result = Contact::create($uid, $data["url"], false);
 
                if ($result['success']) {
                        $update["subhub"] = true;
index 1f5abccae02c7cfed77d73dbfad3baa5f8cb129a..58ebdf88ed46bce3423ba3d617a6c242ca2fc9f7 100644 (file)
@@ -30,7 +30,7 @@ function follow_post(App $a) {
        // This is just a precaution if maybe this page is called somewhere directly via POST
        $_SESSION["fastlane"] = $url;
 
-       $result = Contact::new($uid, $url, true);
+       $result = Contact::create($uid, $url, true);
 
        if ($result['success'] == false) {
                if ($result['message']) {
index cae042c6722b859799e14fa5343a31b311392127..0104c3ca1b6cb51f39df2258208bffaa6576c592 100644 (file)
@@ -68,7 +68,7 @@ function ostatus_subscribe_content(App $a) {
 
        $data = Probe::uri($url);
        if ($data["network"] == NETWORK_OSTATUS) {
-               $result = Contact::new($uid, $url, true, NETWORK_OSTATUS);
+               $result = Contact::create($uid, $url, true, NETWORK_OSTATUS);
                if ($result["success"]) {
                        $o .= " - ".t("success");
                } else {
index b3d5a402b5a192219160a7ada345d0adb4e7a328..5ac08890cd46313f230883a6913bd9678d36dcb0 100644 (file)
@@ -52,7 +52,7 @@ function repair_ostatus_content(App $a) {
 
        $o .= "<p>".t("Keep this window open until done.")."</p>";
 
-       $result = Contact::new($uid,$r[0]["url"],true);
+       $result = Contact::create($uid,$r[0]["url"],true);
 
        $a->page['htmlhead'] = '<meta http-equiv="refresh" content="1; URL='.System::baseUrl().'/repair_ostatus?counter='.$counter.'">';
 
index 1cb118355b8c71f45a7ee0ff0311d47024fee2bc..9dddc0096df57b9d9d3dc79cc06a28c6d59c3b4c 100644 (file)
@@ -164,7 +164,7 @@ function salmon_post(App $a) {
        if (! DBM::is_result($r)) {
                logger('mod-salmon: Author unknown to us.');
                if(PConfig::get($importer['uid'],'system','ostatus_autofriend')) {
-                       $result = Contact::new($importer['uid'], $author_link);
+                       $result = Contact::create($importer['uid'], $author_link);
                        if($result['success']) {
                                $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND ( `url` = '%s' OR `alias` = '%s')
                                        AND `uid` = %d LIMIT 1",
index 057a06a31de9c8fc181581bb5060b8e01450eb7e..1ab6d63ce84b94d4c85c661bf343a0f1b9fd797c 100644 (file)
@@ -1016,7 +1016,7 @@ class Contact extends BaseObject
         * @param integer $id contact id
         * @return boolean
         */
-       public static function update($id)
+       public static function updateFromProbe($id)
        {
                /*
                Warning: Never ever fetch the public key via Probe::uri and write it into the contacts.
@@ -1089,7 +1089,7 @@ class Contact extends BaseObject
         * @param string $network
         * @return boolean|string
         */
-       public static function add($uid, $url, $interactive = false, $network = '')
+       public static function create($uid, $url, $interactive = false, $network = '')
        {
                $result = array('cid' => -1, 'success' => false, 'message' => '');
 
index f175c4aa5c6cab080785be26d8691db10f934017..a527bf0da13d472be12a2ade6bc473c046435d16 100644 (file)
@@ -117,7 +117,7 @@ Class OnePoll
                                return;
                        }
 
-                       if (!Contact::update($contact["id"])) {
+                       if (!Contact::updateFromProbe($contact["id"])) {
                                Contact::markForArchival($contact);
                                logger('Contact is marked dead');