X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Frepair_ostatus.php;h=9504a3fcf481648fd58348b16e002abfcafecef8;hb=903d829f4988592c102495eab82d523d7d093300;hp=f1a86e6b2343f30b3abae54f07a45c83aef6719d;hpb=03038e7a3bb74bdab497d26b7f829a5c3036d1c2;p=friendica.git diff --git a/mod/repair_ostatus.php b/mod/repair_ostatus.php index f1a86e6b23..9504a3fcf4 100644 --- a/mod/repair_ostatus.php +++ b/mod/repair_ostatus.php @@ -1,66 +1,64 @@ . + * */ use Friendica\App; -use Friendica\Core\L10n; use Friendica\Core\Protocol; -use Friendica\Core\System; 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); + if (!local_user()) { + notice(DI::l10n()->t('Permission denied.')); 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'] ?? 0); - $counter = intval($_REQUEST['counter']); + $condition = ['uid' => $uid, 'network' => Protocol::OSTATUS, 'rel' => [Contact::FRIEND, Contact::SHARING]]; + $total = DBA::count('contact', $condition); - $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 (!DBA::isResult($r)) { - return ($o . L10n::t("Error")); + if (!$total) { + 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) - ORDER BY `url` - LIMIT %d, 1", - intval($uid), - DBA::escape(Protocol::OSTATUS), - intval(Contact::FRIEND), - intval(Contact::SHARING), $counter++); - - if (!DBA::isResult($r)) { - $o .= L10n::t("Done"); + $contact = Contact::selectToArray(['url'], $condition, ['order' => ['url'], 'limit' => [$counter++, 1]]); + if (!DBA::isResult($contact)) { + $o .= DI::l10n()->t('Done'); return $o; } - $o .= "

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

"; + $o .= '

' . $counter . '/' . $total . ': ' . $contact[0]['url'] . '

'; - $o .= "

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

"; + $o .= '

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

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