X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Frepair_ostatus.php;h=6ceba80553fbe40be7417cfb657b43217a307c7b;hb=62f3c1f4b8b63bba6117ac50a49387fafd71a90a;hp=1d2e202ecf36f149fa04c36801283f0b932abdc8;hpb=a6fb3568f989f72164b435baafc63a174397b542;p=friendica.git diff --git a/mod/repair_ostatus.php b/mod/repair_ostatus.php index 1d2e202ecf..6ceba80553 100644 --- a/mod/repair_ostatus.php +++ b/mod/repair_ostatus.php @@ -1,61 +1,78 @@ . + * */ + use Friendica\App; -use Friendica\Core\L10n; -use Friendica\Core\System; +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(L10n::t('Permission denied.') . EOL); - goaway($_SESSION['return_url']); + notice(DI::l10n()->t('Permission denied.') . EOL); + DI::baseUrl()->redirect('ostatus_repair'); // NOTREACHED } - $o = "

".L10n::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), - DBA::escape(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.L10n::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), - DBA::escape(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 .= L10n::t("Done"); + if (!DBA::isResult($r)) { + $o .= DI::l10n()->t("Done"); return $o; } $o .= "

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

"; - $o .= "

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

"; + $o .= "

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

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