X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Frepair_ostatus.php;h=0d30fc298dea1c83be9183906b7a2aa23dc801e9;hb=e076998ffe7ed9e29c01463c10a0b36a49659e9d;hp=ea83b08adf6256db6e3c48569c8b0c4424181056;hpb=5adfeb0bd5fed2f793332056c03bb7c043d5fc69;p=friendica.git diff --git a/mod/repair_ostatus.php b/mod/repair_ostatus.php old mode 100755 new mode 100644 index ea83b08adf..0d30fc298d --- a/mod/repair_ostatus.php +++ b/mod/repair_ostatus.php @@ -1,60 +1,78 @@ . + * + */ use Friendica\App; -use Friendica\Core\System; - -require_once 'include/probe.php'; -require_once 'include/follow.php'; +use Friendica\Core\Protocol; +use Friendica\Database\DBA; +use Friendica\DI; +use Friendica\Model\Contact; function repair_ostatus_content(App $a) { if (! local_user()) { - notice( t('Permission denied.') . EOL); - goaway($_SESSION['return_url']); + notice(DI::l10n()->t('Permission denied.')); + DI::baseUrl()->redirect('ostatus_repair'); // NOTREACHED } - $o = "

".t("Resubscribing to OStatus contacts")."

"; + $o = "

".DI::l10n()->t("Resubscribing to OStatus contacts")."

"; $uid = local_user(); - $a = get_app(); - $counter = intval($_REQUEST['counter']); - $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE - `uid` = %d AND `network` = '%s' AND `rel` IN (%d, %d)", - intval($uid), - dbesc(NETWORK_OSTATUS), - intval(CONTACT_IS_FRIEND), - intval(CONTACT_IS_SHARING)); + $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE + `uid` = %d AND `network` = '%s' AND `rel` IN (%d, %d)", + intval($uid), + DBA::escape(Protocol::OSTATUS), + intval(Contact::FRIEND), + intval(Contact::SHARING)); - if (!$r) - return($o.t("Error")); + if (!DBA::isResult($r)) { + return ($o . DI::l10n()->t("Error")); + } $total = $r[0]["total"]; - $r = q("SELECT `url` FROM `contact` WHERE - `uid` = %d AND `network` = '%s' AND `rel` IN (%d, %d) + $r = q("SELECT `url` FROM `contact` WHERE + `uid` = %d AND `network` = '%s' AND `rel` IN (%d, %d) ORDER BY `url` LIMIT %d, 1", - intval($uid), - dbesc(NETWORK_OSTATUS), - intval(CONTACT_IS_FRIEND), - intval(CONTACT_IS_SHARING), $counter++); + intval($uid), + DBA::escape(Protocol::OSTATUS), + intval(Contact::FRIEND), + intval(Contact::SHARING), $counter++); - if (!$r) { - $o .= t("Done"); + if (!DBA::isResult($r)) { + $o .= DI::l10n()->t("Done"); return $o; } $o .= "

".$counter."/".$total.": ".$r[0]["url"]."

"; - $o .= "

".t("Keep this window open until done.")."

"; + $o .= "

".DI::l10n()->t("Keep this window open until done.")."

"; - $result = new_contact($uid,$r[0]["url"],true); + Contact::createFromProbe($a->user, $r[0]["url"], true); - $a->page['htmlhead'] = ''; + DI::page()['htmlhead'] = ''; return $o; }