]> git.mxchange.org Git - friendica.git/blobdiff - mod/item.php
Just cleaning up the code.
[friendica.git] / mod / item.php
index 901fb3385da8cb2779212e7242fb02d4cf668cae..a66535d7ded21bb0061690f92d573a6dd9234375 100644 (file)
@@ -90,14 +90,14 @@ function item_post(&$a) {
                        $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
                                intval($parent)
                        );
-               }
-               elseif($parent_uri && local_user()) {
+               } elseif($parent_uri && local_user()) {
                        // This is coming from an API source, and we are logged in
                        $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
                                dbesc($parent_uri),
                                intval(local_user())
                        );
                }
+
                // if this isn't the real parent of the conversation, find it
                if($r !== false && count($r)) {
                        $parid = $r[0]['parent'];
@@ -127,8 +127,27 @@ function item_post(&$a) {
                                intval($parent_item['contact-id']),
                                intval($uid)
                        );
-                       if(count($r))
+                       if(count($r)) {
                                $parent_contact = $r[0];
+
+                               // If the contact id doesn't fit with the contact, then set the contact to null
+                               $thrparent = q("SELECT `author-link`, `network` FROM `item` WHERE `uri` = '%s' LIMIT 1", dbesc($thr_parent));
+                               if (count($thrparent) AND ($thrparent[0]["network"] === NETWORK_OSTATUS)
+                                       AND (normalise_link($parent_contact["url"]) != normalise_link($thrparent[0]["author-link"]))) {
+                                       $parent_contact = null;
+
+                                       require_once("include/Scrape.php");
+                                       $probed_contact = probe_url($thrparent[0]["author-link"]);
+                                       if ($probed_contact["network"] != NETWORK_FEED) {
+                                               $parent_contact = $probed_contact;
+                                               $parent_contact["nurl"] = normalise_link($probed_contact["url"]);
+                                               $parent_contact["thumb"] = $probed_contact["photo"];
+                                               $parent_contact["micro"] = $probed_contact["photo"];
+                                       }
+                                       logger('parent contact: '.print_r($parent_contact, true), LOGGER_DEBUG);
+                               } else
+                                       logger('no contact found: '.print_r($thrparent, true), LOGGER_DEBUG);
+                       }
                }
        }
 
@@ -137,6 +156,7 @@ function item_post(&$a) {
        $profile_uid = ((x($_REQUEST,'profile_uid')) ? intval($_REQUEST['profile_uid']) : 0);
        $post_id     = ((x($_REQUEST,'post_id'))     ? intval($_REQUEST['post_id'])     : 0);
        $app         = ((x($_REQUEST,'source'))      ? strip_tags($_REQUEST['source'])  : '');
+       $extid       = ((x($_REQUEST,'extid'))       ? strip_tags($_REQUEST['extid'])  : '');
 
        $allow_moderated = false;
 
@@ -200,7 +220,7 @@ function item_post(&$a) {
                $verb              = $orig_post['verb'];
                $objecttype        = $orig_post['object-type'];
                $emailcc           = $orig_post['emailcc'];
-               $app                       = $orig_post['app'];
+               $app               = $orig_post['app'];
                $categories        = $orig_post['file'];
                $title             = notags(trim($_REQUEST['title']));
                $body              = escape_tags(trim($_REQUEST['body']));
@@ -208,6 +228,7 @@ function item_post(&$a) {
                $pubmail_enable    = $orig_post['pubmail'];
                $network           = $orig_post['network'];
                $guid              = $orig_post['guid'];
+               $extid             = $orig_post['extid'];
 
        } else {
 
@@ -573,7 +594,7 @@ function item_post(&$a) {
                        if($fullnametagged)
                                continue;
 
-                       $success = handle_tag($a, $body, $inform, $str_tags, (local_user()) ? local_user() : $profile_uid , $tag); 
+                       $success = handle_tag($a, $body, $inform, $str_tags, (local_user()) ? local_user() : $profile_uid , $tag, $network);
                        if($success['replaced'])
                                $tagged[] = $tag;
                        if(is_array($success['contact']) && intval($success['contact']['prv'])) {
@@ -652,6 +673,7 @@ function item_post(&$a) {
        $datarray['commented']     = datetime_convert();
        $datarray['received']      = datetime_convert();
        $datarray['changed']       = datetime_convert();
+       $datarray['extid']         = $extid;
        $datarray['guid']          = $guid;
        $datarray['uri']           = $uri;
        $datarray['title']         = $title;
@@ -736,7 +758,7 @@ function item_post(&$a) {
                update_thread($post_id);
 
                // update filetags in pconfig
-                file_tag_update_pconfig($uid,$categories_old,$categories_new,'category');
+               file_tag_update_pconfig($uid,$categories_old,$categories_new,'category');
 
                proc_run('php', "include/notifier.php", 'edit_post', "$post_id");
                if((x($_REQUEST,'return')) && strlen($return_path)) {
@@ -749,11 +771,12 @@ function item_post(&$a) {
                $post_id = 0;
 
 
-       $r = q("INSERT INTO `item` (`guid`, `uid`,`type`,`wall`,`gravity`, `network`, `contact-id`,`owner-name`,`owner-link`,`owner-avatar`, 
+       $r = q("INSERT INTO `item` (`guid`, `extid`, `uid`,`type`,`wall`,`gravity`, `network`, `contact-id`,`owner-name`,`owner-link`,`owner-avatar`, 
                `author-name`, `author-link`, `author-avatar`, `created`, `edited`, `commented`, `received`, `changed`, `uri`, `thr-parent`, `title`, `body`, `app`, `location`, `coord`, 
                `tag`, `inform`, `verb`, `object-type`, `postopts`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`, `private`, `pubmail`, `attach`, `bookmark`,`origin`, `moderated`, `file` )
-               VALUES( '%s', %d, '%s', %d, %d, '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', %d, %d, %d, '%s' )",
+               VALUES( '%s', '%s', %d, '%s', %d, %d, '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', %d, %d, %d, '%s' )",
                dbesc($datarray['guid']),
+               dbesc($datarray['extid']),
                intval($datarray['uid']),
                dbesc($datarray['type']),
                intval($datarray['wall']),
@@ -792,8 +815,8 @@ function item_post(&$a) {
                dbesc($datarray['attach']),
                intval($datarray['bookmark']),
                intval($datarray['origin']),
-               intval($datarray['moderated']),
-               dbesc($datarray['file'])
+               intval($datarray['moderated']),
+               dbesc($datarray['file'])
               );
 
        $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' LIMIT 1",
@@ -804,10 +827,10 @@ function item_post(&$a) {
                add_thread($post_id);
 
                // update filetags in pconfig
-                file_tag_update_pconfig($uid,$categories_old,$categories_new,'category');
+               file_tag_update_pconfig($uid,$categories_old,$categories_new,'category');
 
                // Store the fresh generated item into the cache
-               $cachefile = get_cachefile($datarray["guid"]."-".hash("md5", $datarray['body']));
+               $cachefile = get_cachefile(urlencode($datarray["guid"])."-".hash("md5", $datarray['body']));
 
                if (($cachefile != '') AND !file_exists($cachefile)) {
                        $s = prepare_text($datarray['body']);
@@ -847,8 +870,7 @@ function item_post(&$a) {
                                        'to_email'     => $user['email'],
                                        'uid'          => $user['uid'],
                                        'item'         => $datarray,
-                                       //'link'                   => $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id,
-                                       'link'             => $a->get_baseurl().'/display/'.$datarray['guid'],
+                                       'link'          => $a->get_baseurl().'/display/'.urlencode($datarray['guid']),
                                        'source_name'  => $datarray['author-name'],
                                        'source_link'  => $datarray['author-link'],
                                        'source_photo' => $datarray['author-avatar'],
@@ -876,8 +898,7 @@ function item_post(&$a) {
                                        'to_email'     => $user['email'],
                                        'uid'          => $user['uid'],
                                        'item'         => $datarray,
-                                       //'link'                   => $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id,
-                                       'link'             => $a->get_baseurl().'/display/'.$datarray['guid'],
+                                       'link'          => $a->get_baseurl().'/display/'.urlencode($datarray['guid']),
                                        'source_name'  => $datarray['author-name'],
                                        'source_link'  => $datarray['author-link'],
                                        'source_photo' => $datarray['author-avatar'],
@@ -896,8 +917,7 @@ function item_post(&$a) {
                        WHERE `id` = %d",
                        intval($parent),
                        dbesc(($parent == $post_id) ? $uri : $parent_item['uri']),
-                       //dbesc($a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id),
-                       dbesc($a->get_baseurl().'/display/'.$datarray['guid']),
+                       dbesc($a->get_baseurl().'/display/'.urlencode($datarray['guid'])),
                        dbesc(datetime_convert()),
                        intval($post_id)
                );
@@ -930,8 +950,7 @@ function item_post(&$a) {
        update_thread($parent);
 
        $datarray['id']    = $post_id;
-       //$datarray['plink'] = $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id;
-       $datarray['plink'] = $a->get_baseurl().'/display/'.$datarray['guid'];
+       $datarray['plink'] = $a->get_baseurl().'/display/'.urlencode($datarray['guid']);
 
        call_hooks('post_local_end', $datarray);
 
@@ -946,25 +965,25 @@ function item_post(&$a) {
                                        . '<br />';
                                $disclaimer .= sprintf( t('You may visit them online at %s'), $a->get_baseurl() . '/profile/' . $a->user['nickname']) . EOL;
                                $disclaimer .= t('Please contact the sender by replying to this post if you do not wish to receive these messages.') . EOL; 
-                                if (!$datarray['title']=='') {
-                                    $subject = email_header_encode($datarray['title'],'UTF-8');
-                                } else {
+                               if (!$datarray['title']=='') {
+                                   $subject = email_header_encode($datarray['title'],'UTF-8');
+                               } else {
                                    $subject = email_header_encode('[Friendica]' . ' ' . sprintf( t('%s posted an update.'),$a->user['username']),'UTF-8');
-                                }
+                               }
                                $link = '<a href="' . $a->get_baseurl() . '/profile/' . $a->user['nickname'] . '"><img src="' . $author['thumb'] . '" alt="' . $a->user['username'] . '" /></a><br /><br />';
                                $html    = prepare_body($datarray);
                                $message = '<html><body>' . $link . $html . $disclaimer . '</body></html>';
-                                include_once('include/html2plain.php');
-                                $params = array (
-                                    'fromName' => $a->user['username'],
-                                    'fromEmail' => $a->user['email'],
-                                    'toEmail' => $addr,
-                                    'replyTo' => $a->user['email'],
-                                    'messageSubject' => $subject,
-                                    'htmlVersion' => $message,
-                                    'textVersion' => html2plain($html.$disclaimer),
-                                );
-                                enotify::send($params);
+                               include_once('include/html2plain.php');
+                               $params = array (
+                                   'fromName' => $a->user['username'],
+                                   'fromEmail' => $a->user['email'],
+                                   'toEmail' => $addr,
+                                   'replyTo' => $a->user['email'],
+                                   'messageSubject' => $subject,
+                                   'htmlVersion' => $message,
+                                   'textVersion' => html2plain($html.$disclaimer),
+                               );
+                               enotify::send($params);
                        }
                }
        }
@@ -1044,12 +1063,12 @@ function item_content(&$a) {
  *
  * @return boolean true if replaced, false if not replaced
  */
-function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
+function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag, $network = "") {
 
        $replaced = false;
        $r = null;
 
-       //is it a hash tag? 
+       //is it a hash tag?
        if(strpos($tag,'#') === 0) {
                //if the tag is replaced...
                if(strpos($tag,'[url='))
@@ -1072,15 +1091,15 @@ function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
                }
                return $replaced;
        }
-       //is it a person tag? 
+       //is it a person tag?
        if(strpos($tag,'@') === 0) {
-               //is it already replaced? 
+               //is it already replaced?
                if(strpos($tag,'[url='))
                        return $replaced;
                $stat = false;
                //get the person's name
                $name = substr($tag,1);
-               //is it a link or a full dfrn address? 
+               //is it a link or a full dfrn address?
                if((strpos($name,'@')) || (strpos($name,'http://'))) {
                        $newname = $name;
                        //get the profile links
@@ -1097,7 +1116,9 @@ function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
                                        }
                                }
                        }
-               } else { //if it is a name rather than an address
+               } elseif (($network != NETWORK_OSTATUS) AND ($network != NETWORK_TWITTER) AND
+                       ($network != NETWORK_STATUSNET) AND ($network != NETWORK_APPNET)) {
+                       //if it is a name rather than an address
                        $newname = $name;
                        $alias = '';
                        $tagcid = 0;
@@ -1120,11 +1141,33 @@ function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
                        else {
                                $newname = str_replace('_',' ',$name);
 
-                               //select someone from this user's contacts by name
-                               $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
-                                               dbesc($newname),
-                                               intval($profile_uid)
-                               );
+                               // At first try to fetch a contact according to the given network
+                               if ($network != "") {
+                                       //select someone from this user's contacts by name
+                                       $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `network` = '%s' AND `uid` = %d LIMIT 1",
+                                                       dbesc($newname),
+                                                       dbesc($network),
+                                                       intval($profile_uid)
+                                       );
+                                       if(! $r) {
+                                               //select someone by attag or nick and the name passed in
+                                               $r = q("SELECT * FROM `contact` WHERE `attag` = '%s' OR `nick` = '%s' AND `network` = '%s' AND `uid` = %d ORDER BY `attag` DESC LIMIT 1",
+                                                               dbesc($name),
+                                                               dbesc($name),
+                                                               dbesc($network),
+                                                               intval($profile_uid)
+                                               );
+                                       }
+                               } else
+                                       $r = false;
+
+                               if(! $r) {
+                                       //select someone from this user's contacts by name
+                                       $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
+                                                       dbesc($newname),
+                                                       intval($profile_uid)
+                                       );
+                               }
 
                                if(! $r) {
                                        //select someone by attag or nick and the name passed in
@@ -1183,10 +1226,10 @@ function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
                                        $str_tags .= ',';
                                $str_tags .= $newtag;
                        }
-       
+
                        // Status.Net seems to require the numeric ID URL in a mention if the person isn't
                        // subscribed to you. But the nickname URL is OK if they are. Grrr. We'll tag both.
-       
+
                        if(strlen($alias)) {
                                $newtag = '@[url=' . $alias . ']' . $newname    . '[/url]';
                                if(! stristr($str_tags,$newtag)) {
@@ -1198,7 +1241,7 @@ function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
                }
        }
 
-       return array('replaced' => $replaced, 'contact' => $r[0]);      
+       return array('replaced' => $replaced, 'contact' => $r[0]);
 }