]> git.mxchange.org Git - friendica.git/blobdiff - object/Item.php
Vier: Now the language of a post is shown
[friendica.git] / object / Item.php
index ce4caa9cb35b3d430b7238d8f59b72dd9adc1b0c..5cea341f029f562d647d2a717b172626e392f662 100644 (file)
@@ -27,6 +27,8 @@ class Item extends BaseObject {
        private $owner_photo = '';
        private $owner_name = '';
        private $wall_to_wall = false;
+       private $threaded = false;
+       private $visiting = false;
 
        public function __construct($data) {
                $a = $this->get_app();
@@ -34,11 +36,24 @@ class Item extends BaseObject {
                $this->data = $data;
                $this->set_template('wall');
                $this->toplevel = ($this->get_id() == $this->get_data_value('parent'));
+
+               if(is_array($_SESSION['remote'])) {
+                       foreach($_SESSION['remote'] as $visitor) {
+                               if($visitor['cid'] == $this->get_data_value('contact-id')) {
+                                       $this->visiting = true;
+                                       break;
+                               }
+                       }
+               }
+               
                $this->writable = ($this->get_data_value('writable') || $this->get_data_value('self'));
 
                $ssl_state = ((local_user()) ? true : false);
                $this->redirect_url = $a->get_baseurl($ssl_state) . '/redir/' . $this->get_data_value('cid') ;
 
+               if(get_config('system','thread_allow') && $a->theme_thread_allow && !$this->is_toplevel())
+                       $this->threaded = true;
+
                // Prepare the children
                if(count($data['children'])) {
                        foreach($data['children'] as $item) {
@@ -48,7 +63,7 @@ class Item extends BaseObject {
                                if($item['network'] === NETWORK_MAIL && local_user() != $item['uid']) {
                                        continue;
                                }
-                               if($item['verb'] === ACTIVITY_LIKE || $item['verb'] === ACTIVITY_DISLIKE) {
+                               if(! visible_activity($item)) {
                                        continue;
                                }
                                $child = new Item($item);
@@ -61,8 +76,8 @@ class Item extends BaseObject {
         * Get data in a form usable by a conversation template
         *
         * Returns:
-        *              _ The data requested on success
-        *              _ false on failure
+        *      _ The data requested on success
+        *      _ false on failure
         */
        public function get_template_data($alike, $dlike, $thread_level=1) {
                $result = array();
@@ -78,11 +93,13 @@ class Item extends BaseObject {
                $star = false;
                $isstarred = "unstarred";
                $indent = '';
+               $shiny = '';
                $osparkle = '';
                $total_children = $this->count_descendants();
 
                $conv = $this->get_conversation();
 
+
                $lock = ((($item['private'] == 1) || (($item['uid'] == local_user()) && (strlen($item['allow_cid']) || strlen($item['allow_gid']) 
                        || strlen($item['deny_cid']) || strlen($item['deny_gid']))))
                        ? t('Private Message')
@@ -92,15 +109,16 @@ class Item extends BaseObject {
                        $edpost = array($a->get_baseurl($ssl_state)."/editpost/".$item['id'], t("Edit"));
                else
                        $edpost = false;
-               if((intval($item['contact-id']) && $item['contact-id'] == remote_user()) || ($item['uid'] == local_user()))
+               if(($this->get_data_value('uid') == local_user()) || $this->is_visiting())
                        $dropping = true;
 
                $drop = array(
                        'dropping' => $dropping,
-                       'select' => t('Select'), 
+                       'pagedrop' => ((feature_enabled($conv->get_profile_owner(),'multi_delete')) ? $item['pagedrop'] : ''),
+                       'select' => t('Select'),
                        'delete' => t('Delete'),
                );
-               
+
                $filer = (($conv->get_profile_owner() == local_user()) ? t("save to folder") : false);
 
                $diff_author    = ((link_compare($item['url'],$item['author-link'])) ? false : true);
@@ -115,7 +133,7 @@ class Item extends BaseObject {
                if($sp)
                        $sparkle = ' sparkle';
                else
-                       $profile_link = zrl($profile_link);                                     
+                       $profile_link = zrl($profile_link);
 
                $normalised = normalise_link((strlen($item['author-link'])) ? $item['author-link'] : $item['url']);
                if(($normalised != 'mailbox') && (x($a->contacts,$normalised)))
@@ -128,10 +146,20 @@ class Item extends BaseObject {
                $location = ((strlen($locate['html'])) ? $locate['html'] : render_location_google($locate));
 
                $tags=array();
+               $hashtags = array();
+               $mentions = array();
                foreach(explode(',',$item['tag']) as $tag){
                        $tag = trim($tag);
-                       if ($tag!="") $tags[] = bbcode($tag);
-               }
+                       if ($tag!="") {
+                               $t = bbcode($tag);
+                               $tags[] = $t;
+                               if($t[0] == '#')
+                                       $hashtags[] = $t;
+                               elseif($t[0] == '@')
+                                       $mentions[] = $t;
+                       }
+
+               }        
 
                $like    = ((x($alike,$item['uri'])) ? format_like($alike[$item['uri']],$alike[$item['uri'] . '-l'],'like',$item['uri']) : '');
                $dislike = ((x($dlike,$item['uri'])) ? format_like($dlike[$item['uri']],$dlike[$item['uri'] . '-l'],'dislike',$item['uri']) : '');
@@ -157,9 +185,14 @@ class Item extends BaseObject {
                                        'classdo' => (($item['starred']) ? "hidden" : ""),
                                        'classundo' => (($item['starred']) ? "" : "hidden"),
                                        'starred' =>  t('starred'),
-                                       'tagger' => t("add tag"),
-                                       'classtagger' => "",
                                );
+                               $tagger = '';
+                               if(feature_enabled($conv->get_profile_owner(),'commtag')) {
+                                       $tagger = array(
+                                               'add' => t("add tag"),
+                                               'class' => "",
+                                       );
+                               }
                        }
                } else {
                        $indent = 'comment';
@@ -168,29 +201,46 @@ class Item extends BaseObject {
                if($conv->is_writable()) {
                        $buttons = array(
                                'like' => array( t("I like this \x28toggle\x29"), t("like")),
-                               'dislike' => array( t("I don't like this \x28toggle\x29"), t("dislike")),
+                               'dislike' => ((feature_enabled($conv->get_profile_owner(),'dislike')) ? array( t("I don't like this \x28toggle\x29"), t("dislike")) : ''),
                        );
                        if ($shareable) $buttons['share'] = array( t('Share this'), t('share'));
                }
 
-               if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0)
-                       $indent .= ' shiny';
+               if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0){
+                       $shiny = 'shiny';
+               }
 
                localize_item($item);
 
+               if ($item["postopts"]) {
+                       $langdata = explode(";", $item["postopts"]);
+                       $langstr = substr($langdata[0], 5)." (".round($langdata[1]*100, 1)."%)";
+               }
+
                $body = prepare_body($item,true);
 
+               list($categories, $folders) = get_cats_and_terms($item);
+
                $tmp_item = array(
                        'template' => $this->get_template(),
-                       
+
                        'type' => implode("",array_slice(explode("/",$item['verb']),-1)),
                        'tags' => $tags,
+            'hashtags' => $hashtags,
+            'mentions' => $mentions,
+                       'txt_cats' => t('Categories:'),
+                       'txt_folders' => t('Filed under:'),
+                       'has_cats' => ((count($categories)) ? 'true' : ''),
+                       'has_folders' => ((count($folders)) ? 'true' : ''),
+            'categories' => $categories,
+            'folders' => $folders,            
                        'body' => template_escape($body),
                        'text' => strip_tags(template_escape($body)),
                        'id' => $this->get_id(),
                        'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])),
                        'olinktitle' => sprintf( t('View %s\'s profile @ %s'), $this->get_owner_name(), ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])),
                        'to' => t('to'),
+                       'via' => t('via'),
                        'wall' => t('Wall-to-Wall'),
                        'vwall' => t('via Wall-To-Wall:'),
                        'profile_url' => $profile_link,
@@ -200,26 +250,31 @@ class Item extends BaseObject {
                        'osparkle' => $osparkle,
                        'sparkle' => $sparkle,
                        'title' => template_escape($item['title']),
+                       'localtime' => datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'r'),
                        'ago' => (($item['app']) ? sprintf( t('%s from %s'),relative_date($item['created']),$item['app']) : relative_date($item['created'])),
                        'lock' => $lock,
                        'location' => template_escape($location),
                        'indent' => $indent,
+                       'shiny' => $shiny,
                        'owner_url' => $this->get_owner_url(),
                        'owner_photo' => $this->get_owner_photo(),
                        'owner_name' => template_escape($this->get_owner_name()),
                        'plink' => get_plink($item),
-                       'edpost' => $edpost,
+                       'edpost'    => ((feature_enabled($conv->get_profile_owner(),'edit_posts')) ? $edpost : ''),
                        'isstarred' => $isstarred,
-                       'star' => $star,
-                       'filer' => $filer,
+                       'star'      => ((feature_enabled($conv->get_profile_owner(),'star_posts')) ? $star : ''),
+                       'tagger'        => $tagger,
+                       'filer'     => ((feature_enabled($conv->get_profile_owner(),'filing')) ? $filer : ''),
                        'drop' => $drop,
                        'vote' => $buttons,
                        'like' => $like,
-                       'dislike' => $dislike,
+                       'dislike'   => $dislike,
+                       'switchcomment' => t('Comment'),
                        'comment' => $this->get_comment_box($indent),
-                       'previewing' => $previewing,
+                       'previewing' => ($conv->is_preview() ? ' preview ' : ''),
                        'wait' => t('Please wait'),
-                       'thread_level' => $thread_level
+                       'thread_level' => $thread_level,
+                       'postopts' => $langstr
                );
 
                $arr = array('item' => $item, 'output' => $tmp_item);
@@ -238,6 +293,8 @@ class Item extends BaseObject {
                        if(($nb_children > 2) || ($thread_level > 1)) {
                                $result['children'][0]['comment_firstcollapsed'] = true;
                                $result['children'][0]['num_comments'] = sprintf( tt('%d comment','%d comments',$total_children),$total_children );
+                               $result['children'][0]['hidden_comments_num'] = $total_children;
+                               $result['children'][0]['hidden_comments_text'] = tt('comment', 'comments', $total_children);
                                $result['children'][0]['hide_text'] = t('show more');
                                if($thread_level > 1) {
                                        $result['children'][$nb_children - 1]['comment_lastcollapsed'] = true;
@@ -248,10 +305,15 @@ class Item extends BaseObject {
                        }
                }
                
+        if ($this->is_toplevel()) {
+            $result['total_comments_num'] = "$total_children";
+            $result['total_comments_text'] = tt('comment', 'comments', $total_children);
+        }
+        
                $result['private'] = $item['private'];
                $result['toplevel'] = ($this->is_toplevel() ? 'toplevel_item' : '');
 
-               if(get_config('system','thread_allow') && $a->theme_thread_allow) {
+               if($this->is_threaded()) {
                        $result['flatten'] = false;
                        $result['threaded'] = true;
                }
@@ -267,6 +329,10 @@ class Item extends BaseObject {
                return $this->get_data_value('id');
        }
 
+       public function is_threaded() {
+               return $this->threaded;
+       }
+
        /**
         * Add a child item
         */
@@ -284,11 +350,9 @@ class Item extends BaseObject {
                 * Only add what will be displayed
                 */
                if($item->get_data_value('network') === NETWORK_MAIL && local_user() != $item->get_data_value('uid')) {
-                       logger('[WARN] Item::add_child : Item is a mail ('. $item->get_id() .').', LOGGER_DEBUG);
                        return false;
                }
-               if($item->get_data_value('verb') === ACTIVITY_LIKE || $item->get_data_value('verb') === ACTIVITY_DISLIKE) {
-                       logger('[WARN] Item::add_child : Item is a (dis)like ('. $item->get_id() .').', LOGGER_DEBUG);
+               if(activity_match($item->get_data_value('verb'),ACTIVITY_LIKE) || activity_match($item->get_data_value('verb'),ACTIVITY_DISLIKE)) {
                        return false;
                }
                
@@ -393,8 +457,8 @@ class Item extends BaseObject {
         * Get a data value
         *
         * Returns:
-        *              _ value on success
-        *              _ false on failure
+        *      _ value on success
+        *      _ false on failure
         */
        public function get_data_value($name) {
                if(!isset($this->data[$name])) {
@@ -434,6 +498,19 @@ class Item extends BaseObject {
         * Check if this is writable
         */
        private function is_writable() {
+               $conv = $this->get_conversation();
+
+               if($conv) {
+                       // This will allow us to comment on wall-to-wall items owned by our friends
+                       // and community forums even if somebody else wrote the post.
+
+                       // bug #517 - this fixes for conversation owner
+                       if($conv->get_mode() == 'profile' && $conv->get_profile_owner() == local_user())
+                               return true; 
+
+                       // this fixes for visitors
+                       return ($this->writable || ($this->is_visiting() && $conv->get_mode() == 'profile'));
+               }
                return $this->writable;
        }
 
@@ -462,11 +539,12 @@ class Item extends BaseObject {
         * Get the comment box
         *
         * Returns:
-        *              _ The comment box string (empty if no comment box)
-        *              _ false on failure
+        *      _ The comment box string (empty if no comment box)
+        *      _ false on failure
         */
        private function get_comment_box($indent) {
-               if(!$this->is_toplevel() && !get_config('system','thread_allow')) {
+               $a = $this->get_app();
+               if(!$this->is_toplevel() && !(get_config('system','thread_allow') && $a->theme_thread_allow)) {
                        return '';
                }
                
@@ -478,7 +556,6 @@ class Item extends BaseObject {
                        $ww = 'ww';
 
                if($conv->is_writable() && $this->is_writable()) {
-                       $a = $this->get_app();
                        $qc = $qcomment =  null;
 
                        /*
@@ -490,8 +567,10 @@ class Item extends BaseObject {
                                $qcomment = (($qc) ? explode("\n",$qc) : null);
                        }
                        $comment_box = replace_macros($template,array(
-                               '$return_path' => '', 
-                               '$jsreload' => (($conv->get_mode() === 'display') ? $_SESSION['return_url'] : ''),
+                               '$return_path' => '',
+                               '$threaded' => $this->is_threaded(),
+//                             '$jsreload' => (($conv->get_mode() === 'display') ? $_SESSION['return_url'] : ''),
+                               '$jsreload' => '',
                                '$type' => (($conv->get_mode() === 'profile') ? 'wall-comment' : 'net-comment'),
                                '$id' => $this->get_id(),
                                '$parent' => $this->get_id(),
@@ -510,10 +589,11 @@ class Item extends BaseObject {
                                '$edimg' => t('Image'),
                                '$edurl' => t('Link'),
                                '$edvideo' => t('Video'),
-                               '$preview' => t('Preview'),
+                               '$preview' => ((feature_enabled($conv->get_profile_owner(),'preview')) ? t('Preview') : ''),
                                '$indent' => $indent,
                                '$sourceapp' => t($a->sourcename),
-                               '$ww' => (($conv->get_mode() === 'network') ? $ww : '')
+                               '$ww' => (($conv->get_mode() === 'network') ? $ww : ''),
+                               '$rand_num' => random_digits(12)
                        ));
                }
 
@@ -543,7 +623,6 @@ class Item extends BaseObject {
                                        $this->owner_url = zrl($a->page_contact['url']);
                                        $this->owner_photo = $a->page_contact['thumb'];
                                        $this->owner_name = $a->page_contact['name'];
-                                       $this->set_template('wall2wall');
                                        $this->wall_to_wall = true;
                                }
                                else if($this->get_data_value('owner-link')) {
@@ -565,7 +644,6 @@ class Item extends BaseObject {
 
                                                $this->owner_photo = $this->get_data_value('owner-avatar');
                                                $this->owner_name = $this->get_data_value('owner-name');
-                                               $this->set_template('wall2wall');
                                                $this->wall_to_wall = true;
                                                // If it is our contact, use a friendly redirect link
                                                if((link_compare($this->get_data_value('owner-link'),$this->get_data_value('url'))) 
@@ -602,5 +680,13 @@ class Item extends BaseObject {
        private function get_owner_name() {
                return $this->owner_name;
        }
+
+       private function is_visiting() {
+               return $this->visiting;
+       }
+
+
+
+
 }
 ?>