]> git.mxchange.org Git - friendica.git/blobdiff - mod/ostatus_subscribe.php
Merge pull request #8883 from annando/replace-getdetails
[friendica.git] / mod / ostatus_subscribe.php
index f835f0ed20b38fc17fca23a18c375841c1a868ab..64774eead9fc5a4ede2f612baa200457667018be 100644 (file)
@@ -1,60 +1,84 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @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/>.
+ *
+ */
 
 use Friendica\App;
-use Friendica\Core\System;
-
-require_once 'include/probe.php';
-require_once 'include/follow.php';
-
-function ostatus_subscribe_content(App $a) {
-
-       if (! local_user()) {
-               notice( t('Permission denied.') . EOL);
-               goaway($_SESSION['return_url']);
+use Friendica\Core\Protocol;
+use Friendica\DI;
+use Friendica\Model\Contact;
+use Friendica\Network\Probe;
+use Friendica\Util\Network;
+
+function ostatus_subscribe_content(App $a)
+{
+       if (!local_user()) {
+               notice(DI::l10n()->t('Permission denied.') . EOL);
+               DI::baseUrl()->redirect('ostatus_subscribe');
                // NOTREACHED
        }
 
-       $o = "<h2>".t("Subscribing to OStatus contacts")."</h2>";
+       $o = '<h2>' . DI::l10n()->t('Subscribing to OStatus contacts') . '</h2>';
 
        $uid = local_user();
 
-       $a = get_app();
-
        $counter = intval($_REQUEST['counter']);
 
-       if (get_pconfig($uid, "ostatus", "legacy_friends") == "") {
+       if (DI::pConfig()->get($uid, 'ostatus', 'legacy_friends') == '') {
 
-               if ($_REQUEST["url"] == "") {
-                       return $o.t("No contact provided.");
+               if ($_REQUEST['url'] == '') {
+                       DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
+                       return $o . DI::l10n()->t('No contact provided.');
                }
 
-               $contact = probe_url($_REQUEST["url"]);
-
+               $contact = Probe::uri($_REQUEST['url']);
                if (!$contact) {
-                       return $o.t("Couldn't fetch information for contact.");
+                       DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
+                       return $o . DI::l10n()->t('Couldn\'t fetch information for contact.');
                }
 
-               $api = $contact["baseurl"]."/api/";
+               $api = $contact['baseurl'] . '/api/';
 
                // Fetching friends
-               $data = z_fetch_url($api."statuses/friends.json?screen_name=".$contact["nick"]);
+               $curlResult = Network::curl($api . 'statuses/friends.json?screen_name=' . $contact['nick']);
 
-               if (!$data["success"]) {
-                       return $o.t("Couldn't fetch friends for contact.");
+               if (!$curlResult->isSuccess()) {
+                       DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
+                       return $o . DI::l10n()->t('Couldn\'t fetch friends for contact.');
                }
 
-               set_pconfig($uid, "ostatus", "legacy_friends", $data["body"]);
+               DI::pConfig()->set($uid, 'ostatus', 'legacy_friends', $curlResult->getBody());
        }
 
-       $friends = json_decode(get_pconfig($uid, "ostatus", "legacy_friends"));
+       $friends = json_decode(DI::pConfig()->get($uid, 'ostatus', 'legacy_friends'));
+
+       if (empty($friends)) {
+               $friends = [];
+       }
 
        $total = sizeof($friends);
 
        if ($counter >= $total) {
-               $a->page['htmlhead'] = '<meta http-equiv="refresh" content="0; URL='.System::baseUrl().'/settings/connectors">';
-               del_pconfig($uid, "ostatus", "legacy_friends");
-               del_pconfig($uid, "ostatus", "legacy_contact");
-               $o .= t("Done");
+               DI::page()['htmlhead'] = '<meta http-equiv="refresh" content="0; URL=' . DI::baseUrl() . '/settings/connectors">';
+               DI::pConfig()->delete($uid, 'ostatus', 'legacy_friends');
+               DI::pConfig()->delete($uid, 'ostatus', 'legacy_contact');
+               $o .= DI::l10n()->t('Done');
                return $o;
        }
 
@@ -62,25 +86,25 @@ function ostatus_subscribe_content(App $a) {
 
        $url = $friend->statusnet_profile_url;
 
-       $o .= "<p>".$counter."/".$total.": ".$url;
+       $o .= '<p>' . $counter . '/' . $total . ': ' . $url;
 
-       $data = probe_url($url);
-       if ($data["network"] == NETWORK_OSTATUS) {
-               $result = new_contact($uid, $url, true, NETWORK_OSTATUS);
-               if ($result["success"]) {
-                       $o .= " - ".t("success");
+       $probed = Probe::uri($url);
+       if ($probed['network'] == Protocol::OSTATUS) {
+               $result = Contact::createFromProbe($a->user, $probed['url'], true, Protocol::OSTATUS);
+               if ($result['success']) {
+                       $o .= ' - ' . DI::l10n()->t('success');
                } else {
-                       $o .= " - ".t("failed");
+                       $o .= ' - ' . DI::l10n()->t('failed');
                }
        } else {
-               $o .= " - ".t("ignored");
+               $o .= ' - ' . DI::l10n()->t('ignored');
        }
 
-       $o .= "</p>";
+       $o .= '</p>';
 
-       $o .= "<p>".t("Keep this window open until done.")."</p>";
+       $o .= '<p>' . DI::l10n()->t('Keep this window open until done.') . '</p>';
 
-       $a->page['htmlhead'] = '<meta http-equiv="refresh" content="0; URL='.System::baseUrl().'/ostatus_subscribe?counter='.$counter.'">';
+       DI::page()['htmlhead'] = '<meta http-equiv="refresh" content="0; URL=' . DI::baseUrl() . '/ostatus_subscribe?counter=' . $counter . '">';
 
        return $o;
 }