X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Frepair_ostatus.php;h=b2ca6121853fea1f2e59aee1015da20cc3055f4f;hb=f329d5c067f0b981fb100fafdf5ad484e5b828f7;hp=2b1224f4233fa6bec55792ad3242278b541a795c;hpb=04dceb955109eed93db5da1bd6c6d4cdd411a9be;p=friendica.git diff --git a/mod/repair_ostatus.php b/mod/repair_ostatus.php old mode 100755 new mode 100644 index 2b1224f423..b2ca612185 --- a/mod/repair_ostatus.php +++ b/mod/repair_ostatus.php @@ -1,57 +1,64 @@ . + * + */ + +use Friendica\App; +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(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']); + $counter = intval($_REQUEST['counter'] ?? 0); - $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)); + $condition = ['uid' => $uid, 'network' => Protocol::OSTATUS, 'rel' => [Contact::FRIEND, Contact::SHARING]]; + $total = DBA::count('contact', $condition); - if (!$r) - return($o.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), - dbesc(NETWORK_OSTATUS), - intval(CONTACT_IS_FRIEND), - intval(CONTACT_IS_SHARING), $counter++); + if (!$total) { + return ($o . DI::l10n()->t('Error')); + } - if (!$r) { - $o .= 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 .= "

".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::createFromProbeForUser($a->getLoggedInUserId(), $contact[0]['url']); - $a->page['htmlhead'] = ''; + DI::page()['htmlhead'] = ''; return $o; }