X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fupdate_contact.php;h=b97e9ec7be9df49a2cfa1b65d45f5f496f842f47;hb=a609e545b66808f8a8e6c9d2f8dab08acd968880;hp=bea33b4841f96286ffd4c9ff4a86b93c5a0e23fa;hpb=f2c31ef1c0e92208b58d22791fc72d0ad3e3d6ae;p=friendica.git diff --git a/mod/update_contact.php b/mod/update_contact.php index bea33b4841..b97e9ec7be 100644 --- a/mod/update_contact.php +++ b/mod/update_contact.php @@ -1,38 +1,47 @@ . + * + * See update_profile.php for documentation + * + */ use Friendica\App; -use Friendica\Core\L10n; -use Friendica\Core\PConfig; -use Friendica\Module\Contact; +use Friendica\Core\System; +use Friendica\Database\DBA; +use Friendica\DI; +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'])) { + $contact = DBA::selectFirst('account-user-view', ['pid', 'deleted'], ['id' => DI::args()->get(1)]); + 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 (PConfig::get(local_user(), "system", "bandwidth_saver")) { - $replace = "
".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::getThreadsFromId($contact['pid'], DI::userSession()->getLocalUserId(), true, $item['parent'] ?? 0, $_GET['last_received'] ?? ''); + } } - echo str_replace("\t", " ", $text); - echo "
"; - echo "\r\n"; - exit(); + System::htmlUpdateExit($text ?? ''); }