]> git.mxchange.org Git - friendica.git/blobdiff - include/conversation.php
rest of the consensus porting work and integration into friendica
[friendica.git] / include / conversation.php
index a6ea4da810f634a03edd860cf7cb40d57fd57f3c..4924470875a6ee14383809b0beca1758b1eafecf 100644 (file)
@@ -341,8 +341,15 @@ function count_descendants($item) {
 
 function visible_activity($item) {
 
-       if(activity_match($item['verb'],ACTIVITY_LIKE) || activity_match($item['verb'],ACTIVITY_DISLIKE))
-               return false;
+       // likes (etc.) can apply to other things besides posts. Check if they are post children, 
+       // in which case we handle them specially
+
+       $hidden_activities = array(ACTIVITY_LIKE, ACTIVITY_DISLIKE, ACTIVITY_AGREE, ACTIVITY_DISAGREE, ACTIVITY_ABSTAIN, ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE);
+       foreach($hidden_activities as $act) {
+               if(activity_match($item['verb'],$act)) {
+                       return false;
+               }
+       }
 
        if(activity_match($item['verb'],ACTIVITY_FOLLOW) && $item['object-type'] === ACTIVITY_OBJ_NOTE) {
                if(! (($item['self']) && ($item['uid'] == local_user()))) {
@@ -484,8 +491,11 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
        $cmnt_tpl    = get_markup_template('comment_item.tpl');
        $hide_comments_tpl = get_markup_template('hide_comments.tpl');
 
-       $alike = array();
-       $dlike = array();
+       $conv_responses = array(
+               'like' => array('title' => t('Likes','title')),'dislike' => array('title' => t('Dislikes','title')),
+               'agree' => array('title' => t('Agree','title')),'disagree' => array('title' => t('Disagree','title')), 'abstain' => array('title' => t('Abstain','title')), 
+               'attendyes' => array('title' => t('Attending','title')), 'attendno' => array('title' => t('Not attending','title')), 'attendmaybe' => array('title' => t('Might attend','title'))
+       );
 
        // array with html for each thread (parent+comments)
        $threads = array();
@@ -597,7 +607,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
                                $locate = array('location' => $item['location'], 'coord' => $item['coord'], 'html' => '');
                                call_hooks('render_location',$locate);
 
-                               $location = ((strlen($locate['html'])) ? $locate['html'] : render_location_google($locate));
+                               $location = ((strlen($locate['html'])) ? $locate['html'] : render_location_dummy($locate));
 
                                localize_item($item);
                                if($mode === 'network-new')
@@ -734,8 +744,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
 
 
                                // Can we put this after the visibility check?
-                               like_puller($a,$item,$alike,'like');
-                               like_puller($a,$item,$dlike,'dislike');
+                               builtin_activity_puller($item, $conv_responses);
 
                                // Only add what is visible
                                if($item['network'] === NETWORK_MAIL && local_user() != $item['uid']) {
@@ -755,7 +764,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
                                }
                        }
 
-                       $threads = $conv->get_template_data($alike, $dlike);
+                       $threads = $conv->get_template_data($conv_responses);
 
                        if(!$threads) {
                                logger('[ERROR] conversation : Failed to get template data.', LOGGER_DEBUG);
@@ -892,72 +901,109 @@ function item_photo_menu($item){
        foreach($menu as $k=>$v){
                if(strpos($v,'javascript:') === 0) {
                        $v = substr($v,11);
-                       $o .= "<li><a href=\"#\" onclick=\"$v\">$k</a></li>\n";
+                       $o .= "<li role=\"menuitem\"><a onclick=\"$v\">$k</a></li>\n";
                }
-               elseif ($v!="") $o .= "<li><a href=\"$v\">$k</a></li>\n";
+               elseif ($v!="") $o .= "<li role=\"menuitem\"><a href=\"$v\">$k</a></li>\n";
        }
        return $o;
 }}
 
-if(! function_exists('like_puller')) {
-function like_puller($a,$item,&$arr,$mode) {
-
-       $url = '';
-       $sparkle = '';
-       $verb = (($mode === 'like') ? ACTIVITY_LIKE : ACTIVITY_DISLIKE);
+/**
+ * @brief Checks item to see if it is one of the builtin activities (like/dislike, event attendance, consensus items, etc.)
+ * Increments the count of each matching activity and adds a link to the author as needed.
+ *
+ * @param array $a (not used)
+ * @param array $item
+ * @param array &$conv_responses (already created with builtin activity structure)
+ * @return void
+ */
+if(! function_exists(builtin_activity_puller)) {
+function builtin_activity_puller($item, &$conv_responses) {
+       foreach($conv_responses as $mode => $v) {
+               $url = '';
+               $sparkle = '';
 
-       if((activity_match($item['verb'],$verb)) && ($item['id'] != $item['parent'])) {
-               $url = $item['author-link'];
-               if((local_user()) && (local_user() == $item['uid']) && ($item['network'] === NETWORK_DFRN) && (! $item['self']) && (link_compare($item['author-link'],$item['url']))) {
-                       $url = $a->get_baseurl(true) . '/redir/' . $item['contact-id'];
-                       $sparkle = ' class="sparkle" ';
+               switch($mode) {
+                       case 'like':
+                               $verb = ACTIVITY_LIKE;
+                               break;
+                       case 'dislike':
+                               $verb = ACTIVITY_DISLIKE;
+                               break;
+                       case 'agree':
+                               $verb = ACTIVITY_AGREE;
+                               break;
+                       case 'disagree':
+                               $verb = ACTIVITY_DISAGREE;
+                               break;
+                       case 'abstain':
+                               $verb = ACTIVITY_ABSTAIN;
+                               break;
+                       case 'attendyes':
+                               $verb = ACTIVITY_ATTEND;
+                               break;
+                       case 'attendno':
+                               $verb = ACTIVITY_ATTENDNO;
+                               break;
+                       case 'attendmaybe':
+                               $verb = ACTIVITY_ATTENDMAYBE;
+                               break;
+                       default:
+                               return;
+                               break;
                }
-               else
-                       $url = zrl($url);
 
-               if(! $item['thr-parent'])
-                       $item['thr-parent'] = $item['parent-uri'];
+               if((activity_match($item['verb'], $verb)) && ($item['id'] != $item['parent'])) {
+                       $url = $item['author-link'];
+                       if((local_user()) && (local_user() == $item['uid']) && ($item['network'] === NETWORK_DFRN) && (! $item['self']) && (link_compare($item['author-link'],$item['url']))) {
+                               $url = z_root(true) . '/redir/' . $item['contact-id'];
+                               $sparkle = ' class="sparkle" ';
+                       }
+                       else 
+                               $url = zrl($url);
+                       
+                       $url = '<a href="'. $url . '"'. $sparkle .'>' . $item['author-name'] . '</a>';
+
+                       if(! $item['thr-parent'])
+                               $item['thr-parent'] = $item['parent-uri'];
 
-               if(! ((isset($arr[$item['thr-parent'] . '-l'])) && (is_array($arr[$item['thr-parent'] . '-l']))))
-                       $arr[$item['thr-parent'] . '-l'] = array();
-               if(! isset($arr[$item['thr-parent']]))
-                       $arr[$item['thr-parent']] = 1;
-               else
-                       $arr[$item['thr-parent']] ++;
-               $arr[$item['thr-parent'] . '-l'][] = '<a href="'. $url . '"'. $sparkle .'>' . $item['author-name'] . '</a>';
+                       if(! ((isset($conv_responses[$mode][$item['thr-parent'] . '-l'])) 
+                               && (is_array($conv_responses[$mode][$item['thr-parent'] . '-l']))))
+                               $conv_responses[$mode][$item['thr-parent'] . '-l'] = array();
+
+                       // only list each unique author once
+                       if(in_array($url,$conv_responses[$mode][$item['thr-parent'] . '-l']))
+                               continue;
+
+                       if(! isset($conv_responses[$mode][$item['thr-parent']]))
+                               $conv_responses[$mode][$item['thr-parent']] = 1;
+                       else
+                               $conv_responses[$mode][$item['thr-parent']] ++;
+
+                       $conv_responses[$mode][$item['thr-parent'] . '-l'][] = $url;
+
+                       // there can only be one activity verb per item so if we found anything, we can stop looking
+                       return;
+               }
        }
-       return;
 }}
 
-// Format the like/dislike text for a profile item
-// $cnt = number of people who like/dislike the item
+// Format the vote text for a profile item
+// $cnt = number of people who vote the item
 // $arr = array of pre-linked names of likers/dislikers
-// $type = one of 'like, 'dislike'
+// $type = one of 'like, 'dislike', 'attendyes', 'attendno', 'attendmaybe', 'agree', 'disagree', 'abstain'
 // $id  = item id
 // returns formatted text
 
 if(! function_exists('format_like')) {
 function format_like($cnt,$arr,$type,$id) {
        $o = '';
+       $expanded = '';
+
        if($cnt == 1)
-               $o .= (($type === 'like') ? sprintf( t('%s likes this.'), $arr[0]) : sprintf( t('%s doesn\'t like this.'), $arr[0])) . EOL ;
-       else {
-               $spanatts = "class=\"fakelink\" onclick=\"openClose('{$type}list-$id');\"";
-               switch($type) {
-                       case 'like':
-                               $phrase = sprintf( t('<span  %1$s>%2$d people</span> like this'), $spanatts, $cnt);
-                               break;
-                       case 'dislike':
-                               $phrase = sprintf( t('<span  %1$s>%2$d people</span> don\'t like this'), $spanatts, $cnt);
-                               break;
-               }
-               $phrase .= EOL ;
-               $o .= replace_macros(get_markup_template('voting_fakelink.tpl'), array(
-                       '$phrase' => $phrase,
-                       '$type' => $type,
-                       '$id' => $id
-               ));
+               $likers = $arr[0];
 
+       else {
                $total = count($arr);
                if($total >= MAX_LIKERS)
                        $arr = array_slice($arr, 0, MAX_LIKERS - 1);
@@ -970,9 +1016,76 @@ function format_like($cnt,$arr,$type,$id) {
                        $str = implode(', ', $arr);
                        $str .= sprintf( t(', and %d other people'), $total - MAX_LIKERS );
                }
-               $str = (($type === 'like') ? sprintf( t('%s like this.'), $str) : sprintf( t('%s don\'t like this.'), $str));
-               $o .= "\t" . '<div class="wall-item-' . $type . '-expanded" id="' . $type . 'list-' . $id . '" style="display: none;" >' . $str . '</div>';
+
+               $likers = $str;
+       }
+
+       // Phrase if there is only one liker. In other cases it will be uses for the expanded
+       // list which show all likers
+       switch($type) {
+               case 'like' :
+                       $phrase = sprintf( t('%s likes this.'), $likers);
+                       break;
+               case 'dislike' :
+                       $phrase = sprintf( t('%s doesn\'t like this.'), $likers);
+                       break;
+               case 'attendyes' :
+                       $phrase = sprintf( t('%s attends.'), $likers);
+                       break;
+               case 'attendno' :
+                       $phrase = sprintf( t('%s doesn\'t attend.'), $likers);
+                       break;
+               case 'attendmaybe' :
+                       $phrase = sprintf( t('%s attends maybe.'), $likers);
+                       break;
+               case 'agree' :
+                       $phrase = sprintf( t('%s agrees.'), $likers);
+                       break;
+               case 'disagree' :
+                       $phrase = sprintf( t('%s doesn\'t agree.'), $likers);
+                       break;
+               case 'abstain' :
+                       $phrase = sprintf( t('%s abstains.'), $likers);
+                       break;
+       }
+
+       if($cnt > 1) {
+               $spanatts = "class=\"fakelink\" onclick=\"openClose('{$type}list-$id');\"";
+               $expanded .= "\t" . '<div class="wall-item-' . $type . '-expanded" id="' . $type . 'list-' . $id . '" style="display: none;" >' . $phrase . EOL . '</div>';
+               switch($type) {
+                       case 'like':
+                               $phrase = sprintf( t('<span  %1$s>%2$d people</span> like this'), $spanatts, $cnt);
+                               break;
+                       case 'dislike':
+                               $phrase = sprintf( t('<span  %1$s>%2$d people</span> don\'t like this'), $spanatts, $cnt);
+                               break;
+                       case 'attendyes':
+                               $phrase = sprintf( t('<span  %1$s>%2$d people</span> attend'), $spanatts, $cnt);
+                               break;
+                       case 'attendno':
+                               $phrase = sprintf( t('<span  %1$s>%2$d people</span> don\'t attend'), $spanatts, $cnt);
+                               break;
+                       case 'attendmaybe':
+                               $phrase = sprintf( t('<span  %1$s>%2$d people</span> anttend maybe'), $spanatts, $cnt);
+                       case 'agree':
+                               $phrase = sprintf( t('<span  %1$s>%2$d people</span> agree'), $spanatts, $cnt);
+                               break;
+                       case 'disagree':
+                               $phrase = sprintf( t('<span  %1$s>%2$d people</span> don\'t agree'), $spanatts, $cnt);
+                               break;
+                       case 'abstain':
+                               $phrase = sprintf( t('<span  %1$s>%2$d people</span> abstains'), $spanatts, $cnt);
+               }
        }
+
+       $phrase .= EOL ;
+       $o .= replace_macros(get_markup_template('voting_fakelink.tpl'), array(
+               '$phrase' => $phrase,
+               '$type' => $type,
+               '$id' => $id
+       ));
+       $o .= $expanded;
+
        return $o;
 }}
 
@@ -990,6 +1103,8 @@ function status_editor($a,$x, $notes_cid = 0, $popup=false) {
        if( local_user() && feature_enabled(local_user(),'richtext') )
                $plaintext = false;
 
+       $voting = feature_enabled(local_user(),'consensus_tools');
+
        $tpl = get_markup_template('jot-header.tpl');
        $a->page['htmlhead'] .= replace_macros($tpl, array(
                '$newpost' => 'true',
@@ -1024,43 +1139,9 @@ function status_editor($a,$x, $notes_cid = 0, $popup=false) {
                '$whereareu' => t('Where are you right now?')
        ));
 
-
        $jotplugins = '';
-       $jotnets = '';
-
-       $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
-
-       $mail_enabled = false;
-       $pubmail_enabled = false;
-
-       if(($x['is_owner']) && (! $mail_disabled)) {
-               $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
-                       intval(local_user())
-               );
-               if(count($r)) {
-                       $mail_enabled = true;
-                       if(intval($r[0]['pubmail']))
-                               $pubmail_enabled = true;
-               }
-       }
-
-       if (!$a->user['hidewall']) {
-               if($mail_enabled) {
-                       $selected = (($pubmail_enabled) ? ' checked="checked" ' : '');
-                       $jotnets .= '<div class="profile-jot-net"><input type="checkbox" name="pubmail_enable"' . $selected . ' value="1" /> ' . t("Post to Email") . '</div>';
-               }
-
-               call_hooks('jot_networks', $jotnets);
-       } else
-               $jotnets .= sprintf(t('Connectors disabled, since "%s" is enabled.'),
-                                   t('Hide your profile details from unknown viewers?'));
-
        call_hooks('jot_tool', $jotplugins);
 
-       if($notes_cid)
-               $jotnets .= '<input type="hidden" name="contact_allow[]" value="' . $notes_cid .'" />';
-
-
        // Private/public post links for the non-JS ACL form
        $private_post = 1;
        if($_REQUEST['public'])
@@ -1101,6 +1182,9 @@ function status_editor($a,$x, $notes_cid = 0, $popup=false) {
                '$shortsetloc' => t('set location'),
                '$noloc' => t('Clear browser location'),
                '$shortnoloc' => t('clear location'),
+               '$voting' => t('Toggle voting'),
+               '$feature_voting' => $voting,
+               '$consensus' => 0,
                '$title' => $x['title'],
                '$placeholdertitle' => t('Set title'),
                '$category' => $x['category'],
@@ -1115,15 +1199,14 @@ function status_editor($a,$x, $notes_cid = 0, $popup=false) {
                '$defloc' => $x['default_location'],
                '$visitor' => $x['visitor'],
                '$pvisit' => (($notes_cid) ? 'none' : $x['visitor']),
-               '$emailcc' => t('CC: email addresses'),
                '$public' => t('Public post'),
                '$jotnets' => $jotnets,
-               '$emtitle' => t('Example: bob@example.com, mary@example.com'),
                '$lockstate' => $x['lockstate'],
                '$bang' => $x['bang'],
                '$profile_uid' => $x['profile_uid'],
                '$preview' => ((feature_enabled($x['profile_uid'],'preview')) ? t('Preview') : ''),
                '$jotplugins' => $jotplugins,
+               '$notes_cid' => $notes_cid,
                '$sourceapp' => t($a->sourcename),
                '$cancel' => t('Cancel'),
                '$rand_num' => random_digits(12),
@@ -1264,14 +1347,70 @@ function find_thread_parent_index($arr,$x) {
        return false;
 }
 
-function render_location_google($item) {
-       $location = (($item['location']) ? '<a target="map" title="' . $item['location'] . '" href="http://maps.google.com/?q=' . urlencode($item['location']) . '">' . $item['location'] . '</a>' : '');
-       $coord = (($item['coord']) ? '<a target="map" title="' . $item['coord'] . '" href="http://maps.google.com/?q=' . urlencode($item['coord']) . '">' . $item['coord'] . '</a>' : '');
-       if($coord) {
-               if($location)
-                       $location .= '<br /><span class="smalltext">(' . $coord . ')</span>';
-               else
-                       $location = '<span class="smalltext">' . $coord . '</span>';
+function render_location_dummy($item) {
+       if ($item['location'] != "")
+               return $item['location'];
+
+       if ($item['coord'] != "")
+               return $item['coord'];
+}
+
+function get_responses($conv_responses,$response_verbs,$ob,$item) {
+       $ret = array();
+       foreach($response_verbs as $v) {
+               $ret[$v] = array();
+               $ret[$v]['count'] = ((x($conv_responses[$v],$item['uri'])) ? $conv_responses[$v][$item['uri']] : '');
+               $ret[$v]['list']  = ((x($conv_responses[$v],$item['uri'])) ? $conv_responses[$v][$item['uri'] . '-l'] : '');
+               if(count($ret[$v]['list']) > MAX_LIKERS) {
+                       $ret[$v]['list_part'] = array_slice($ret[$v]['list'], 0, MAX_LIKERS);
+                       array_push($ret[$v]['list_part'], '<a href="#" data-toggle="modal" data-target="#' . $v . 'Modal-' 
+                               . $ob->get_id() . '"><b>' . t('View all') . '</b></a>');
+               } 
+               else {
+                       $ret[$v]['list_part'] = '';
+               }
+               $ret[$v]['button'] = get_response_button_text($v,$ret[$v]['count']);
+               $ret[$v]['title'] = $conv_responses[$v]['title'];
+       }
+
+       $count = 0;
+       foreach($ret as $key) {
+               if ($key['count'] == true)
+                       $count++;
+       }
+       $ret['count'] = $count;
+
+       return $ret;
+}
+
+function get_response_button_text($v,$count) {
+       switch($v) {
+               case 'like':
+                       return tt('Like','Likes',$count,'noun');
+                       break;
+               case 'dislike':
+                       return tt('Dislike','Dislikes',$count,'noun');
+                       break;
+               case 'attendyes':
+                       return tt('Attending','Attending',$count,'noun');
+                       break;
+               case 'attendno':
+                       return tt('Not Attending','Not Attending',$count,'noun');
+                       break;
+               case 'attendmaybe':
+                       return tt('Undecided','Undecided',$count,'noun');
+                       break;
+               case 'agree':
+                       return tt('Agree','Agrees',$count,'noun');
+                       break;
+               case 'disagree':
+                       return tt('Disagree','Disagrees',$count,'noun');
+                       break;
+               case 'abstain':
+                       return tt('Abstain','Abstains',$count,'noun');
+                       break;
+               default:
+                       return '';
+                       break;
        }
-       return $location;
 }