3 // See update_profile.php for documentation
6 use Friendica\Core\PConfig;
8 require_once "mod/network.php";
10 function update_network_content(App $a)
12 $profile_uid = intval($_GET["p"]);
14 header("Content-type: text/html");
15 echo "<!DOCTYPE html><html><body>\r\n";
18 if (!PConfig::get($profile_uid, "system", "no_auto_update") || ($_GET["force"] == 1)) {
19 $text = network_content($a, $profile_uid);
24 $pattern = "/<img([^>]*) src=\"([^\"]*)\"/";
25 $replace = "<img\${1} dst=\"\${2}\"";
26 $text = preg_replace($pattern, $replace, $text);
28 if (PConfig::get(local_user(), "system", "bandwith_saver")) {
29 $replace = "<br />" . t("[Embedded content - reload page to view]") . "<br />";
30 $pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i";
31 $text = preg_replace($pattern, $replace, $text);
32 $pattern = "/<\s*video[^>]*>(.*?)<\s*\/\s*video>/i";
33 $text = preg_replace($pattern, $replace, $text);
34 $pattern = "/<\s*embed[^>]*>(.*?)<\s*\/\s*embed>/i";
35 $text = preg_replace($pattern, $replace, $text);
36 $pattern = "/<\s*iframe[^>]*>(.*?)<\s*\/\s*iframe>/i";
37 $text = preg_replace($pattern, $replace, $text);
40 echo str_replace("\t", " ", $text);
42 echo "</body></html>\r\n";