The preview picture can now be remote or local
This commit is contained in:
parent
540d217134
commit
37bd03422b
|
@ -9,6 +9,7 @@ require_once("include/socgraph.php");
|
||||||
require_once("include/Photo.php");
|
require_once("include/Photo.php");
|
||||||
require_once("include/Scrape.php");
|
require_once("include/Scrape.php");
|
||||||
require_once("include/follow.php");
|
require_once("include/follow.php");
|
||||||
|
require_once("mod/proxy.php");
|
||||||
|
|
||||||
define('OSTATUS_DEFAULT_POLL_INTERVAL', 30); // given in minutes
|
define('OSTATUS_DEFAULT_POLL_INTERVAL', 30); // given in minutes
|
||||||
define('OSTATUS_DEFAULT_POLL_TIMEFRAME', 1440); // given in minutes
|
define('OSTATUS_DEFAULT_POLL_TIMEFRAME', 1440); // given in minutes
|
||||||
|
@ -1092,9 +1093,25 @@ function xml_add_element($doc, $parent, $element, $value = "", $attributes = arr
|
||||||
function ostatus_format_picture_post($body) {
|
function ostatus_format_picture_post($body) {
|
||||||
$siteinfo = get_attached_data($body);
|
$siteinfo = get_attached_data($body);
|
||||||
|
|
||||||
if (($siteinfo["type"] == "photo") AND isset($siteinfo["url"]) AND isset($siteinfo["preview"])) {
|
if (($siteinfo["type"] == "photo")) {
|
||||||
$siteinfo["preview"] = str_replace(array("-1.jpg", "-1.png"), array("-2.jpg", "-2.png"), $siteinfo["preview"]);
|
if (isset($siteinfo["preview"]))
|
||||||
$body = trim($siteinfo["text"])." [url]".$siteinfo["url"]."[/url]\n[img]".$siteinfo["preview"]."[/img]";
|
$preview = $siteinfo["preview"];
|
||||||
|
else
|
||||||
|
$preview = $siteinfo["image"];
|
||||||
|
|
||||||
|
// Is it a remote picture? Then make a smaller preview here
|
||||||
|
$preview = proxy_url($preview, false, PROXY_SIZE_SMALL);
|
||||||
|
|
||||||
|
// Is it a local picture? Then make it smaller here
|
||||||
|
$preview = str_replace(array("-0.jpg", "-0.png"), array("-2.jpg", "-2.png"), $preview);
|
||||||
|
$preview = str_replace(array("-1.jpg", "-1.png"), array("-2.jpg", "-2.png"), $preview);
|
||||||
|
|
||||||
|
if (isset($siteinfo["url"]))
|
||||||
|
$url = $siteinfo["url"];
|
||||||
|
else
|
||||||
|
$url = $siteinfo["image"];
|
||||||
|
|
||||||
|
$body = trim($siteinfo["text"])." [url]".$url."[/url]\n[img]".$preview."[/img]";
|
||||||
}
|
}
|
||||||
|
|
||||||
return $body;
|
return $body;
|
||||||
|
|
Loading…
Reference in a new issue