X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnoscrape.php;h=0b3d490a3b20cef11e671b2fbf79e544f67d904b;hb=5dfee31108fc92a7abca5f99b8fdf1b34aec5dd5;hp=e1d51e5a801eae0f8a5bcee7c27d0cc9d43e2c1e;hpb=924869ab5b75fd496014a1b7ca1240a6df939fc6;p=friendica.git diff --git a/mod/noscrape.php b/mod/noscrape.php index e1d51e5a80..0b3d490a3b 100644 --- a/mod/noscrape.php +++ b/mod/noscrape.php @@ -5,17 +5,17 @@ use Friendica\App; use Friendica\Core\Protocol; -use Friendica\Core\System; use Friendica\Database\DBA; -use Friendica\Model\Contact; +use Friendica\DI; use Friendica\Model\Profile; +use Friendica\Model\User; function noscrape_init(App $a) { if ($a->argc > 1) { $which = $a->argv[1]; } else { - killme(); + exit(); } $profile = 0; @@ -31,14 +31,14 @@ function noscrape_init(App $a) 'nick' => $which, 'guid' => $a->profile['guid'], 'key' => $a->profile['pubkey'], - 'homepage' => System::baseUrl()."/profile/{$which}", - 'comm' => ($a->profile['account-type'] == Contact::ACCOUNT_TYPE_COMMUNITY), + 'homepage' => DI::baseUrl()."/profile/{$which}", + 'comm' => ($a->profile['account-type'] == User::ACCOUNT_TYPE_COMMUNITY), 'account-type' => $a->profile['account-type'], ]; $dfrn_pages = ['request', 'confirm', 'notify', 'poll']; foreach ($dfrn_pages as $dfrn) { - $json_info["dfrn-{$dfrn}"] = System::baseUrl()."/dfrn_{$dfrn}/{$which}"; + $json_info["dfrn-{$dfrn}"] = DI::baseUrl()."/dfrn_{$dfrn}/{$which}"; } if (!$a->profile['net-publish'] || $a->profile['hidewall']) { @@ -48,7 +48,7 @@ function noscrape_init(App $a) exit; } - $keywords = defaults($a->profile, 'pub_keywords', ''); + $keywords = $a->profile['pub_keywords'] ?? ''; $keywords = str_replace(['#',',',' ',',,'], ['',' ',',',','], $keywords); $keywords = explode(',', $keywords);