aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-10-22 10:52:10 +0200
committerMario Vavti <mario@mariovavti.com>2015-10-22 10:52:10 +0200
commit6f8d29ad8076fc53019739cdc9afa3d15d250d8e (patch)
treec426b70647c55eda335239ac31a5c43170d41790
parenteb947acebe696eeccd378e1ef1e3bffd6533165c (diff)
downloadvolse-hubzilla-6f8d29ad8076fc53019739cdc9afa3d15d250d8e.tar.gz
volse-hubzilla-6f8d29ad8076fc53019739cdc9afa3d15d250d8e.tar.bz2
volse-hubzilla-6f8d29ad8076fc53019739cdc9afa3d15d250d8e.zip
move photo object stuff from itemObject to prepare_body() so we can do more stuff with it
-rw-r--r--include/ItemObject.php14
-rw-r--r--include/text.php37
-rw-r--r--view/css/conversation.css5
-rw-r--r--view/theme/redbasic/css/style.css5
-rwxr-xr-xview/tpl/conv_item.tpl4
5 files changed, 34 insertions, 31 deletions
diff --git a/include/ItemObject.php b/include/ItemObject.php
index 9fe86118c..c5c2cb2e6 100644
--- a/include/ItemObject.php
+++ b/include/ItemObject.php
@@ -278,17 +278,6 @@ class Item extends BaseObject {
$children = $this->get_children();
- $is_photo = (($item['obj_type'] == ACTIVITY_OBJ_PHOTO) ? true : false);
- if($is_photo) {
- $object = json_decode($item['object'],true);
- $photo = array(
- 'url' => rawurldecode($object['id']) . '?zid=' . $observer['xchan_addr'],
- 'link' => rawurldecode(get_rel_link($object['link'],'alternate')) . '?zid=' . $observer['xchan_addr'],
- 'width' => $object['width'],
- 'height' => $object['height']
- );
- }
-
$has_tags = (($body['tags'] || $body['categories'] || $body['mentions'] || $body['attachments'] || $body['folders']) ? true : false);
$tmp_item = array(
@@ -342,8 +331,7 @@ class Item extends BaseObject {
'owner_url' => $this->get_owner_url(),
'owner_photo' => $this->get_owner_photo(),
'owner_name' => $this->get_owner_name(),
- 'is_photo' => $is_photo,
- 'photo' => (($is_photo) ? $photo : ''),
+ 'photo' => $body['photo'],
'has_tags' => $has_tags,
// Item toolbar buttons
diff --git a/include/text.php b/include/text.php
index d395a2523..d918a865a 100644
--- a/include/text.php
+++ b/include/text.php
@@ -1363,6 +1363,7 @@ function generate_named_map($location) {
function prepare_body(&$item,$attach = false) {
+ require_once('include/identity.php');
// if($item['html']) {
// $s = bb_observer($item['html']);
@@ -1373,9 +1374,22 @@ function prepare_body(&$item,$attach = false) {
$s = prepare_text($item['body'],$item['mimetype'], false);
// }
- $prep_arr = array('item' => $item, 'html' => $s);
+ $is_photo = (($item['obj_type'] === ACTIVITY_OBJ_PHOTO) ? true : false);
+ if($is_photo) {
+ $object = json_decode($item['object'],true);
+ $photo = '<a href="' . zid(rawurldecode(get_rel_link($object['link'],'alternate'))) . '"><img style="max-width:' . $object['width'] . 'px; width:100%; height:auto;" src="'. zid(rawurldecode($object['id'])) . '"></a>';
+ }
+
+ $prep_arr = array(
+ 'item' => $item,
+ 'html' => $s,
+ 'photo' => $photo
+ );
+
call_hooks('prepare_body', $prep_arr);
+
$s = $prep_arr['html'];
+ $photo = $prep_arr['photo'];
// q("update item set html = '%s' where id = %d",
// dbesc($s),
@@ -1391,7 +1405,7 @@ function prepare_body(&$item,$attach = false) {
if($x) {
$s = preg_replace('/\<div class\=\"map\"\>/','$0' . $x,$s);
}
- }
+ }
$attachments = theme_attachments($item);
@@ -1439,17 +1453,20 @@ function prepare_body(&$item,$attach = false) {
}
$prep_arr = array(
- //'item' => $item,
- 'html' => $s,
- 'categories' => $categories,
- 'folders' => $filer,
- 'tags' => $tags,
- 'mentions' => $mentions,
- 'attachments' => $attachments
- );
+ 'item' => $item,
+ 'photo' => $photo,
+ 'html' => $s,
+ 'categories' => $categories,
+ 'folders' => $filer,
+ 'tags' => $tags,
+ 'mentions' => $mentions,
+ 'attachments' => $attachments
+ );
call_hooks('prepare_body_final', $prep_arr);
+ unset($prep_arr['item']);
+
return $prep_arr;
}
diff --git a/view/css/conversation.css b/view/css/conversation.css
index ecdf9dc2f..6f1d4b899 100644
--- a/view/css/conversation.css
+++ b/view/css/conversation.css
@@ -77,11 +77,6 @@ code {
/* conv_item */
-.wall-photo-item {
- display: table;
- margin: 0px auto;
-}
-
.wall-item-info {
display: block;
float: left;
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index e079af4da..d90e9e7c8 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -1621,6 +1621,10 @@ img.mail-conv-sender-photo {
}
/* conversation */
+.nsfw-wrap {
+ text-align: center;
+ font-size: $body_font_size;
+}
.wall-item-head {
padding: 10px 10px 0.5em 10px;
@@ -1762,7 +1766,6 @@ img.mail-conv-sender-photo {
.divgrow-showmore:hover {
border-top: 1px dashed #adadad;
- text-decoration: underline;
}
diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl
index 0a6622fa4..e6e9d880e 100755
--- a/view/tpl/conv_item.tpl
+++ b/view/tpl/conv_item.tpl
@@ -33,9 +33,9 @@
</div>
<div class="clear"></div>
</div>
- {{if $item.is_photo}}
+ {{if $item.photo}}
<div class="wall-photo-item" id="wall-photo-item-{{$item.id}}">
- <a href="{{$item.photo.link}}"><img style="max-width:{{$item.photo.width}}px; width:100%; height:auto;" src={{$item.photo.url}}></a>
+ {{$item.photo}}
</div>
{{/if}}
{{if $item.body}}