Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev
This commit is contained in:
commit
40d99c1716
@ -55,10 +55,10 @@ class Linkinfo extends \Zotlabs\Web\Controller {
|
||||
$h = explode("\n",$result['header']);
|
||||
foreach ($h as $l) {
|
||||
list($k,$v) = array_map("trim", explode(":", trim($l), 2));
|
||||
$hdrs[$k] = $v;
|
||||
$hdrs[strtolower($k)] = $v;
|
||||
}
|
||||
if (array_key_exists('Content-Type', $hdrs))
|
||||
$type = $hdrs['Content-Type'];
|
||||
if (array_key_exists('content-type', $hdrs))
|
||||
$type = $hdrs['content-type'];
|
||||
if($type) {
|
||||
$zrl = is_matrix_url($url);
|
||||
if(stripos($type,'image/') !== false) {
|
||||
|
@ -4,6 +4,7 @@ namespace Zotlabs\Module;
|
||||
require_once('include/security.php');
|
||||
require_once('include/attach.php');
|
||||
require_once('include/photo/photo_driver.php');
|
||||
require_once('include/photos.php');
|
||||
|
||||
|
||||
class Photo extends \Zotlabs\Web\Controller {
|
||||
@ -83,7 +84,7 @@ class Photo extends \Zotlabs\Web\Controller {
|
||||
$data = file_get_contents($data);
|
||||
}
|
||||
if(! $data) {
|
||||
$data = file_get_contents($default);
|
||||
$data = fetch_image_from_url($default,$mimetype);
|
||||
}
|
||||
if(! $mimetype) {
|
||||
$mimetype = 'image/png';
|
||||
@ -183,16 +184,13 @@ class Photo extends \Zotlabs\Web\Controller {
|
||||
switch($resolution) {
|
||||
|
||||
case 4:
|
||||
$data = file_get_contents(z_root() . '/' . get_default_profile_photo());
|
||||
$mimetype = 'image/png';
|
||||
$data = fetch_image_from_url(z_root() . '/' . get_default_profile_photo(),$mimetype);
|
||||
break;
|
||||
case 5:
|
||||
$data = file_get_contents(z_root() . '/' . get_default_profile_photo(80));
|
||||
$mimetype = 'image/png';
|
||||
$data = fetch_image_from_url(z_root() . '/' . get_default_profile_photo(80),$mimetype);
|
||||
break;
|
||||
case 6:
|
||||
$data = file_get_contents(z_root() . '/' . get_default_profile_photo(48));
|
||||
$mimetype = 'image/png';
|
||||
$data = fetch_image_from_url(z_root() . '/' . get_default_profile_photo(48),$mimetype);
|
||||
break;
|
||||
default:
|
||||
killme();
|
||||
|
@ -261,6 +261,7 @@ function can_comment_on_post($observer_xchan, $item) {
|
||||
return true;
|
||||
break;
|
||||
case 'public':
|
||||
case 'authenticated':
|
||||
// We don't really allow or support public comments yet, but anonymous
|
||||
// folks won't ever reach this point (as $observer_xchan will be empty).
|
||||
// This means the viewer has an xchan and we can identify them.
|
||||
@ -268,7 +269,6 @@ function can_comment_on_post($observer_xchan, $item) {
|
||||
break;
|
||||
case 'any connections':
|
||||
case 'contacts':
|
||||
case 'authenticated':
|
||||
case '':
|
||||
if(array_key_exists('owner',$item) && get_abconfig($item['uid'],$item['owner']['abook_xchan'],'their_perms','post_comments')) {
|
||||
return true;
|
||||
|
@ -1011,3 +1011,23 @@ function profile_photo_set_profile_perms($uid, $profileid = 0) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function fetch_image_from_url($url,&$mimetype) {
|
||||
|
||||
$redirects = 0;
|
||||
$x = z_fetch_url($url,true,$redirects,[ 'novalidate' => true ]);
|
||||
if($x['success']) {
|
||||
$hdrs = [];
|
||||
$h = explode("\n",$x['header']);
|
||||
foreach ($h as $l) {
|
||||
list($k,$v) = array_map("trim", explode(":", trim($l), 2));
|
||||
$hdrs[strtolower($k)] = $v;
|
||||
}
|
||||
if (array_key_exists('content-type', $hdrs))
|
||||
$mimetype = $hdrs['content-type'];
|
||||
|
||||
return $x['body'];
|
||||
}
|
||||
|
||||
return EMPTY_STR;
|
||||
}
|
@ -40,7 +40,7 @@ function contact_format(item) {
|
||||
var desc = ((item.label) ? item.nick + ' ' + item.label : item.nick);
|
||||
if(typeof desc === 'undefined') desc = '';
|
||||
if(desc) desc = ' ('+desc+')';
|
||||
return "<div class='{0} dropdown-item dropdown-notification clearfix' title='{4}'><img class='menu-img-2' src='{1}'><span class='contactname'>{2}</span><span class='dropdown-sub-text'>{3}</span></div>".format(item.taggable, item.photo, item.name, desc, typeof(item.link) !== 'undefined' ? item.link : desc.replace('(','').replace(')',''));
|
||||
return "<div class='{0} dropdown-item dropdown-notification clearfix' title='{4}'><img class='menu-img-2' src='{1}'><span class='contactname'>{2}</span><span class='dropdown-sub-text'>{4}</span></div>".format(item.taggable, item.photo, item.name, desc, typeof(item.link) !== 'undefined' ? item.link : desc.replace('(','').replace(')',''));
|
||||
}
|
||||
else
|
||||
return "<div>" + item.text + "</div>";
|
||||
|
Reference in New Issue
Block a user