]> git.mxchange.org Git - friendica.git/blobdiff - include/conversation.php
work on api.
[friendica.git] / include / conversation.php
index b2d20300f706a12844ff15bece99f84b515984c9..1c56fa1bfafc506825665348308900a19d591e6d 100644 (file)
@@ -1,5 +1,69 @@
 <?php
 
+/**
+ * Render actions localized
+ */
+function localize_item(&$item){
+       
+       if ($item['verb']=="http://activitystrea.ms/schema/1.0/like" ||
+               $item['verb']=="http://activitystrea.ms/schema/1.0/dislike"){
+
+               $r = q("SELECT * from `item`,`contact` WHERE 
+                               `item`.`contact-id`=`contact`.`id` AND `item`.`uri`='%s';",
+                                dbesc($item['parent-uri']));
+               if(count($r)==0) return;
+               $obj=$r[0];
+               
+               $author  = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
+               $objauthor =  '[url=' . $obj['author-link'] . ']' . $obj['author-name'] . '[/url]';
+               
+               $post_type = (($obj['resource-id']) ? t('photo') : t('status'));                
+               $plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]';
+                
+               switch($item['verb']){
+                       case "http://activitystrea.ms/schema/1.0/like":
+                               $bodyverb = t('%1$s likes %2$s\'s %3$s');
+                               break;
+                       case "http://activitystrea.ms/schema/1.0/dislike":
+                               $bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s');
+                               break;
+               }
+               $item['body'] = sprintf($bodyverb, $author, $objauthor, $plink);
+                       
+       }
+       if ($item['verb']=='http://activitystrea.ms/schema/1.0/make-friend'){
+
+               if ($item['object-type']=="" || $item['object-type']!='http://activitystrea.ms/schema/1.0/person') return;
+
+               $Aname = $item['author-name'];
+               $Alink = $item['author-link'];
+               
+               $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
+               
+               $obj = parse_xml_string($xmlhead.$item['object']);
+               $links = parse_xml_string($xmlhead."<links>".unxmlify($obj->link)."</links>");
+               
+               $Bname = $obj->title;
+               $Blink = ""; $Bphoto = "";
+               foreach ($links->link as $l){
+                       $atts = $l->attributes();
+                       switch($atts['rel']){
+                               case "alternate": $Blink = $atts['href'];
+                               case "photo": $Bphoto = $atts['href'];
+                       }
+                       
+               }
+               
+               $A = '[url=' . $Alink . ']' . $Aname . '[/url]';
+               $B = '[url=' . $Blink . ']' . $Bname . '[/url]';
+               if ($Bphoto!="") $Bphoto = '[url=' . $Blink . '][img]' . $Bphoto . '[/img][/url]';
+
+               $item['body'] = sprintf( t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$Bphoto;
+
+       }
+        
+}
+
 /**
  * "Render" a conversation or list of items for HTML display.
  * There are two major forms of display:
@@ -10,7 +74,6 @@
  * that are based on unique features of the calling module.
  *
  */
-
 function conversation(&$a, $items, $mode, $update) {
 
        require_once('bbcode.php');
@@ -85,6 +148,8 @@ function conversation(&$a, $items, $mode, $update) {
                                $profile_name   = ((strlen($item['author-name']))   ? $item['author-name']   : $item['name']);
                                $profile_avatar = ((strlen($item['author-avatar'])) ? $item['author-avatar'] : $item['thumb']);
                                $profile_link   = ((strlen($item['author-link']))   ? $item['author-link']   : $item['url']);
+                               if($profile_link === 'mailbox')
+                                       $profile_link = '';
 
                                $redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
 
@@ -116,7 +181,8 @@ function conversation(&$a, $items, $mode, $update) {
 
                    $drop = replace_macros((($dropping)? $droptpl : $fakedrop), array('$id' => $item['id'], '$delete' => t('Delete')));
 
-
+                               // 
+                               localize_item($item);
 
                                $drop = replace_macros($droptpl,array('$id' => $item['id']));
                                $lock = '<div class="wall-item-lock"></div>';
@@ -360,6 +426,9 @@ function conversation(&$a, $items, $mode, $update) {
                        else 
                                $profile_link = $item['url'];
 
+                       if($profile_link === 'mailbox')
+                               $profile_link = '';
+
                        $like    = ((x($alike,$item['id'])) ? format_like($alike[$item['id']],$alike[$item['id'] . '-l'],'like',$item['id']) : '');
                        $dislike = ((x($dlike,$item['id'])) ? format_like($dlike[$item['id']],$dlike[$item['id'] . '-l'],'dislike',$item['id']) : '');
 
@@ -379,6 +448,9 @@ function conversation(&$a, $items, $mode, $update) {
                        if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0)
                                $indent .= ' shiny'; 
 
+                       // 
+                       localize_item($item);
+
                        // Build the HTML
 
                        $tmp_item = replace_macros($template,array(
@@ -479,10 +551,14 @@ function item_photo_menu($item){
        $pm_url="";
 
        $status_link="";
-       $photo_link="";
+       $photos_link="";
+       $posts_link="";
        $profile_link   = ((strlen($item['author-link']))   ? $item['author-link'] : $item['url']);
        $redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
 
+       if($profile_link === 'mailbox')
+               $profile_link = '';
+
        // $item['contact-uid'] is only set on profile page and indicates the uid of the user who owns the profile.
 
        $profile_owner = ((x($item,'contact-uid')) && intval($item['contact-uid']) ? intval($item['contact-uid']) : 0); 
@@ -503,9 +579,12 @@ function item_photo_menu($item){
                        $redir = $a->get_baseurl() . '/redir/' . $a->authors[$item['author-link']]['id'];
                        $cid = $a->authors[$item['author-link']]['id'];
                }
+               if($item['author-link'] === 'mailbox')
+                       $cid = $item['cid'];
 
                if((isset($cid)) && (! $item['self'])) {
                        $contact_url = $a->get_baseurl() . '/contacts/' . $cid;
+                       $posts_link = $a->get_baseurl() . '/network/?cid=' . $cid;
                        if($item['network'] === 'dfrn') {
                                $status_link = $redir . "?url=status";
                                $profile_link = $redir . "?url=profile";
@@ -520,6 +599,7 @@ function item_photo_menu($item){
                t("View status") => $status_link,
                t("View profile") => $profile_link,
                t("View photos") => $photos_link,               
+               t("View recent") => $posts_link, 
                t("Edit contact") => $contact_url,
                t("Send PM") => $pm_url,
        );
@@ -592,3 +672,88 @@ function format_like($cnt,$arr,$type,$id) {
        }
        return $o;
 }}
+
+
+function status_editor($a,$x) {
+
+       $o = '';
+               
+       $geotag = (($x['allow_location']) ? load_view_file('view/jot_geotag.tpl') : '');
+
+               $tpl = load_view_file('view/jot-header.tpl');
+       
+               $a->page['htmlhead'] .= replace_macros($tpl, array(
+                       '$baseurl' => $a->get_baseurl(),
+                       '$geotag' => $geotag,
+                       '$nickname' => $x['nickname'],
+                       '$linkurl' => t('Please enter a link URL:'),
+                       '$utubeurl' => t('Please enter a YouTube link:'),
+                       '$vidurl' => t("Please enter a video\x28.ogg\x29 link/URL:"),
+                       '$audurl' => t("Please enter an audio\x28.ogg\x29 link/URL:"),
+                       '$whereareu' => t('Where are you right now?'),
+                       '$title' => t('Enter a title for this item') 
+               ));
+
+
+               $tpl = load_view_file("view/jot.tpl");
+               
+               $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($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_tool', $jotplugins);
+               call_hooks('jot_networks', $jotnets);
+
+               $tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins));        
+
+               $o .= replace_macros($tpl,array(
+                       '$return_path' => $a->cmd,
+                       '$action' => 'item',
+                       '$share' => t('Share'),
+                       '$upload' => t('Upload photo'),
+                       '$weblink' => t('Insert web link'),
+                       '$youtube' => t('Insert YouTube video'),
+                       '$video' => t('Insert Vorbis [.ogg] video'),
+                       '$audio' => t('Insert Vorbis [.ogg] audio'),
+                       '$setloc' => t('Set your location'),
+                       '$noloc' => t('Clear browser location'),
+                       '$title' => t('Set title'),
+                       '$wait' => t('Please wait'),
+                       '$permset' => t('Permission settings'),
+                       '$content' => '',
+                       '$post_id' => '',
+                       '$baseurl' => $a->get_baseurl(),
+                       '$defloc' => $x['default-location'],
+                       '$visitor' => $x['visitor'],
+                       '$emailcc' => t('CC: email addresses'),
+                       '$jotnets' => $jotnets,
+                       '$emtitle' => t('Example: bob@example.com, mary@example.com'),
+                       '$lockstate' => $x['lockstate'],
+                       '$acl' => $x['acl'],
+                       '$bang' => $x['bang'],
+                       '$profile_uid' => $x['profile_uid'],
+               ));
+
+       return $o;
+}
\ No newline at end of file