X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mod%2Fupdate_contact.php;h=c6a49a417fe055f870183c885aa085df1cdee782;hb=037e181f82a84718d1719db4777cb58429734c47;hp=bd9ced0e9a44a5dc392f0ab2c5759111b0076c83;hpb=ab8997f9db910ba70c592bf106a7f5fc41a55b2d;p=friendica.git diff --git a/mod/update_contact.php b/mod/update_contact.php index bd9ced0e9a..c6a49a417f 100644 --- a/mod/update_contact.php +++ b/mod/update_contact.php @@ -1,37 +1,47 @@ . + * + * See update_profile.php for documentation + * + */ use Friendica\App; +use Friendica\Core\System; +use Friendica\Database\DBA; use Friendica\DI; -use Friendica\Module\Contact; +use Friendica\Model\Post; +use Friendica\Model\Contact; function update_contact_content(App $a) { - header("Content-type: text/html"); - echo "\r\n"; - echo "
"; + if (!empty(DI::args()->get(1)) && (!empty($_GET['force']) || !DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'no_auto_update'))) { + $contact = Contact::getById(DI::args()->get(1), ['id', 'deleted']); + if (DBA::isResult($contact) && empty($contact['deleted'])) { + DI::page()['aside'] = ''; - if ($_GET["force"] == 1) { - $text = Contact::content([], true); - } else { - $text = ''; - } + if (!empty($_GET['item'])) { + $item = Post::selectFirst(['parent'], ['id' => $_GET['item']]); + } - if (DI::pConfig()->get(local_user(), "system", "bandwidth_saver")) { - $replace = "
" . DI::l10n()->t("[Embedded content - reload page to view]") . "
"; - $pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i"; - $text = preg_replace($pattern, $replace, $text); - $pattern = "/<\s*video[^>]*>(.*?)<\s*\/\s*video>/i"; - $text = preg_replace($pattern, $replace, $text); - $pattern = "/<\s*embed[^>]*>(.*?)<\s*\/\s*embed>/i"; - $text = preg_replace($pattern, $replace, $text); - $pattern = "/<\s*iframe[^>]*>(.*?)<\s*\/\s*iframe>/i"; - $text = preg_replace($pattern, $replace, $text); + $text = Contact::getPostsFromId($contact['id'], true, true, $item['parent'] ?? 0); + } } - echo str_replace("\t", " ", $text); - echo "
"; - echo "\r\n"; - exit(); + System::htmlUpdateExit($text ?? ''); }