2010-07-24 18:21:33 -04:00
|
|
|
<?php
|
2018-01-22 07:29:50 -05:00
|
|
|
/**
|
|
|
|
* @file mod/update_network
|
|
|
|
* See update_profile.php for documentation
|
|
|
|
*/
|
2010-07-24 18:21:33 -04:00
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2018-01-22 07:29:50 -05:00
|
|
|
use Friendica\Core\L10n;
|
2017-11-06 21:22:52 -05:00
|
|
|
use Friendica\Core\PConfig;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2017-12-09 13:42:02 -05:00
|
|
|
require_once "mod/network.php";
|
2016-10-22 21:33:54 -04:00
|
|
|
|
2017-12-09 13:42:02 -05:00
|
|
|
function update_network_content(App $a)
|
|
|
|
{
|
2018-08-09 01:40:35 -04:00
|
|
|
if (!isset($_GET['p']) || !isset($_GET['item'])) {
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2018-08-09 00:20:31 -04:00
|
|
|
}
|
|
|
|
|
2018-02-27 16:10:05 -05:00
|
|
|
$profile_uid = intval($_GET['p']);
|
|
|
|
$parent = intval($_GET['item']);
|
2016-10-22 21:33:54 -04:00
|
|
|
|
|
|
|
header("Content-type: text/html");
|
|
|
|
echo "<!DOCTYPE html><html><body>\r\n";
|
|
|
|
echo "<section>";
|
|
|
|
|
2017-11-06 21:22:52 -05:00
|
|
|
if (!PConfig::get($profile_uid, "system", "no_auto_update") || ($_GET["force"] == 1)) {
|
2018-02-27 16:10:05 -05:00
|
|
|
$text = network_content($a, $profile_uid, $parent);
|
2016-10-22 21:33:54 -04:00
|
|
|
} else {
|
|
|
|
$text = "";
|
|
|
|
}
|
|
|
|
|
2018-05-30 02:50:29 -04:00
|
|
|
if (PConfig::get(local_user(), "system", "bandwidth_saver")) {
|
2018-01-22 07:29:50 -05:00
|
|
|
$replace = "<br />" . L10n::t("[Embedded content - reload page to view]") . "<br />";
|
2016-10-22 21:33:54 -04:00
|
|
|
$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);
|
|
|
|
}
|
|
|
|
|
|
|
|
echo str_replace("\t", " ", $text);
|
|
|
|
echo "</section>";
|
|
|
|
echo "</body></html>\r\n";
|
2018-12-26 00:40:12 -05:00
|
|
|
exit();
|
2012-11-01 20:31:50 -04:00
|
|
|
}
|