]> git.mxchange.org Git - friendica.git/blobdiff - include/conversation.php
first work for consensus
[friendica.git] / include / conversation.php
index 95792640e3b64484738c73401d40c27dc68a1397..a5d8ac551f8a17c6737a67c7a7aed69fe372b57f 100644 (file)
@@ -203,12 +203,11 @@ function localize_item(&$item){
 
                // we can't have a translation string with three positions but no distinguishable text
                // So here is the translate string.
-
                $txt = t('%1$s poked %2$s');
-
+               
                // now translate the verb
-
-               $txt = str_replace( t('poked'), t($verb), $txt);
+               $poked_t = trim(sprintf($txt, "",""));
+               $txt = str_replace( $poked_t, t($verb), $txt);
 
                // then do the sprintf on the translation string
 
@@ -342,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);
+       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()))) {
@@ -370,6 +376,7 @@ if(!function_exists('conversation')) {
 function conversation(&$a, $items, $mode, $update, $preview = false) {
 
        require_once('include/bbcode.php');
+       require_once('mod/proxy.php');
 
        $ssl_state = ((local_user()) ? true : false);
 
@@ -484,8 +491,7 @@ 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(array('like'),array('dislike'),array('agree'),array('disagree'),array('abstain'));
 
        // array with html for each thread (parent+comments)
        $threads = array();
@@ -597,7 +603,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')
@@ -656,7 +662,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
                                        'name' => $profile_name_e,
                                        'sparkle' => $sparkle,
                                        'lock' => $lock,
-                                       'thumb' => $profile_avatar,
+                                       'thumb' => proxy_url($profile_avatar),
                                        'title' => $item['title_e'],
                                        'body' => $body_e,
                                        'tags' => $tags_e,
@@ -675,7 +681,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
                                        'indent' => '',
                                        'owner_name' => $owner_name_e,
                                        'owner_url' => $owner_url,
-                                       'owner_photo' => $owner_photo,
+                                       'owner_photo' => proxy_url($owner_photo),
                                        'plink' => get_plink($item),
                                        'edpost' => false,
                                        'isstarred' => $isstarred,
@@ -734,8 +740,11 @@ 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');
+                               like_puller($a, $item, $conv_responses, 'like');
+                               like_puller($a, $item, $conv_responses, 'dislike');
+                               like_puller($a, $item, $conv_responses, 'agree');
+                               like_puller($a, $item, $conv_responses, 'disagree');
+                               like_puller($a, $item, $conv_responses, 'abstain');
 
                                // 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,9 +901,9 @@ 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;
 }}
@@ -904,11 +913,35 @@ function like_puller($a,$item,&$arr,$mode) {
 
        $url = '';
        $sparkle = '';
-       $verb = (($mode === 'like') ? ACTIVITY_LIKE : ACTIVITY_DISLIKE);
+       switch($mode) {
+               case 'like':
+               case 'unlike':
+                       $verb = ACTIVITY_LIKE;
+                       break;
+               case 'dislike':
+               case 'undislike':
+                       $verb = ACTIVITY_DISLIKE;
+                       break;
+               case 'agree':
+               case 'unagree':
+                       $verb = ACTIVITY_AGREE;
+                       break;
+               case 'disagree':
+               case 'undisagree':
+                       $verb = ACTIVITY_DISAGREE;
+                       break;
+               case 'abstain':
+               case 'unabstain':
+                       $verb = ACTIVITY_ABSTAIN;
+                       break;
+               default:
+                       return;
+                       break;
+       }
 
        if((activity_match($item['verb'],$verb)) && ($item['id'] != $item['parent'])) {
                $url = $item['author-link'];
-               if((local_user()) && (local_user() == $item['uid']) && ($item['network'] === 'dfrn') && (! $item['self']) && (link_compare($item['author-link'],$item['url']))) {
+               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" ';
                }
@@ -918,13 +951,14 @@ function like_puller($a,$item,&$arr,$mode) {
                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;
+               if(! ((isset($arr[$mode][$item['thr-parent'] . '-l'])) && (is_array($arr[$item['thr-parent'] . '-l']))))
+                       $arr[$mode][$item['thr-parent'] . '-l'] = array();
+               if(! isset($arr[$mode][$item['thr-parent']]))
+                       $arr[$mode][$item['thr-parent']] = 1;
                else
-                       $arr[$item['thr-parent']] ++;
-               $arr[$item['thr-parent'] . '-l'][] = '<a href="'. $url . '"'. $sparkle .'>' . $item['author-name'] . '</a>';
+                       $arr[$mode][$item['thr-parent']] ++;
+
+               $arr[$mode][$item['thr-parent'] . '-l'][] = '<a href="'. $url . '"'. $sparkle .'>' . $item['author-name'] . '</a>';
        }
        return;
 }}
@@ -1024,43 +1058,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,29 +1101,28 @@ function status_editor($a,$x, $notes_cid = 0, $popup=false) {
                '$shortsetloc' => t('set location'),
                '$noloc' => t('Clear browser location'),
                '$shortnoloc' => t('clear location'),
-               '$title' => "",
+               '$title' => $x['title'],
                '$placeholdertitle' => t('Set title'),
-               '$category' => "",
+               '$category' => $x['category'],
                '$placeholdercategory' => (feature_enabled(local_user(),'categories') ? t('Categories (comma-separated list)') : ''),
                '$wait' => t('Please wait'),
                '$permset' => t('Permission settings'),
                '$shortpermset' => t('permissions'),
                '$ptyp' => (($notes_cid) ? 'note' : 'wall'),
-               '$content' => '',
-               '$post_id' => '',
+               '$content' => $x['content'],
+               '$post_id' => $x['post_id'],
                '$baseurl' => $a->get_baseurl(true),
                '$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 +1263,10 @@ 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>';
-       }
-       return $location;
+function render_location_dummy($item) {
+       if ($item['location'] != "")
+               return $item['location'];
+
+       if ($item['coord'] != "")
+               return $item['coord'];
 }