]> git.mxchange.org Git - friendica.git/blobdiff - mod/item.php
now that we have admin interface, completely remove register approvals from notifications
[friendica.git] / mod / item.php
index 776c0dcc2d501dbe1eaeff58fe059fe7783c96a1..8a4f8293c83a0162f4be6b4e765896de58d550e1 100644 (file)
@@ -22,6 +22,15 @@ function item_post(&$a) {
 
        $uid = local_user();
 
+       if(x($_POST,'dropitems')) {
+               require_once('include/items.php');
+               $arr_drop = explode(',',$_POST['dropitems']);
+               drop_items($arr_drop);
+               $json = array('success' => 1);
+               echo json_encode($json);
+               killme();
+       }
+
        call_hooks('post_local_start', $_POST);
 
        $parent = ((x($_POST,'parent')) ? intval($_POST['parent']) : 0);
@@ -52,6 +61,7 @@ function item_post(&$a) {
 
        $profile_uid = ((x($_POST,'profile_uid')) ? intval($_POST['profile_uid']) : 0);
        $post_id     = ((x($_POST['post_id']))    ? intval($_POST['post_id'])     : 0);
+       $app         = ((x($_POST['source']))     ? strip_tags($_POST['source'])  : '');
 
        if(! can_write_wall($a,$profile_uid)) {
                notice( t('Permission denied.') . EOL) ;
@@ -93,6 +103,7 @@ function item_post(&$a) {
                $coord             = $orig_post['coord'];
                $verb              = $orig_post['verb'];
                $emailcc           = $orig_post['emailcc'];
+               $app                       = $orig_post['app'];
 
                $body              = escape_tags(trim($_POST['body']));
                $private           = $orig_post['private'];
@@ -233,6 +244,10 @@ function item_post(&$a) {
        }
 
 
+       /**
+        * Next link in any attachment references we find in the post.
+        */
+
        $match = false;
 
        if(preg_match_all("/\[attachment\](.*?)\[\/attachment\]/",$body,$match)) {
@@ -254,10 +269,6 @@ function item_post(&$a) {
                }
        }
 
-
-
-
-
        /**
         * Fold multi-line [code] sequences
         */
@@ -274,13 +285,21 @@ function item_post(&$a) {
 
        $tags = get_tags($body);
 
-       if(($parent_contact) && ($parent_contact['network'] === 'stat') && ($parent_contact['nick']) && (! in_array('@' . $parent_contact['nick'],$tags))) {
+       /**
+        * add a statusnet style reply tag if the original post was from there
+        * and we are replying, and there isn't one already
+        */
+
+       if(($parent_contact) && ($parent_contact['network'] === 'stat') 
+               && ($parent_contact['nick']) && (! in_array('@' . $parent_contact['nick'],$tags))) {
                $body = '@' . $parent_contact['nick'] . ' ' . $body;
                $tags[] = '@' . $parent_contact['nick'];
        }               
 
        if(count($tags)) {
                foreach($tags as $tag) {
+                       if(isset($profile))
+                               unset($profile);
                        if(strpos($tag,'#') === 0) {
                                if(strpos($tag,'[url='))
                                        continue;
@@ -314,7 +333,7 @@ function item_post(&$a) {
                                else {
                                        $newname = $name;
                                        $alias = '';
-                                       if(strstr($name,'_')) {
+                                       if(strstr($name,'_') || strstr($name,' ')) {
                                                $newname = str_replace('_',' ',$name);
                                                $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
                                                        dbesc($newname),
@@ -408,10 +427,12 @@ function item_post(&$a) {
        $datarray['author-avatar'] = $author['thumb'];
        $datarray['created']       = datetime_convert();
        $datarray['edited']        = datetime_convert();
+       $datarray['received']      = datetime_convert();
        $datarray['changed']       = datetime_convert();
        $datarray['uri']           = $uri;
        $datarray['title']         = $title;
        $datarray['body']          = $body;
+       $datarray['app']           = $app;
        $datarray['location']      = $location;
        $datarray['coord']         = $coord;
        $datarray['tag']           = $str_tags;
@@ -433,6 +454,7 @@ function item_post(&$a) {
 
        $datarray['parent']        = $parent;
        $datarray['self']          = $self;
+       $datarray['prvnets']       = $user['prvnets'];
 
        if($orig_post)
                $datarray['edit']      = true;
@@ -460,9 +482,9 @@ function item_post(&$a) {
 
 
        $r = q("INSERT INTO `item` (`uid`,`type`,`wall`,`gravity`,`contact-id`,`owner-name`,`owner-link`,`owner-avatar`, 
-               `author-name`, `author-link`, `author-avatar`, `created`, `edited`, `changed`, `uri`, `title`, `body`, `location`, `coord`, 
+               `author-name`, `author-link`, `author-avatar`, `created`, `edited`, `received`, `changed`, `uri`, `title`, `body`, `app`, `location`, `coord`, 
                `tag`, `inform`, `verb`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`, `private`, `pubmail`, `attach` )
-               VALUES( %d, '%s', %d, %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s' )",
+               VALUES( %d, '%s', %d, %d, %d, '%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' )",
                intval($datarray['uid']),
                dbesc($datarray['type']),
                intval($datarray['wall']),
@@ -476,10 +498,12 @@ function item_post(&$a) {
                dbesc($datarray['author-avatar']),
                dbesc($datarray['created']),
                dbesc($datarray['edited']),
+               dbesc($datarray['received']),
                dbesc($datarray['changed']),
                dbesc($datarray['uri']),
                dbesc($datarray['title']),
                dbesc($datarray['body']),
+               dbesc($datarray['app']),
                dbesc($datarray['location']),
                dbesc($datarray['coord']),
                dbesc($datarray['tag']),
@@ -713,6 +737,8 @@ function item_post(&$a) {
                logger('return: ' . $_POST['return']);
                goaway($a->get_baseurl() . "/" . $_POST['return'] );
        }
+       if($_POST['api_source'])
+               return;
        $json = array('success' => 1);
        if(x($_POST,'jsreload') && strlen($_POST['jsreload']))
                $json['reload'] = $a->get_baseurl() . '/' . $_POST['jsreload'];
@@ -735,102 +761,8 @@ function item_content(&$a) {
 
        require_once('include/security.php');
 
-       $uid = local_user();
-
        if(($a->argc == 3) && ($a->argv[1] === 'drop') && intval($a->argv[2])) {
-
-               // locate item to be deleted
-
-               $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
-                       intval($a->argv[2])
-               );
-
-               if(! count($r)) {
-                       notice( t('Item not found.') . EOL);
-                       goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
-               }
-               $item = $r[0];
-
-               // check if logged in user is either the author or owner of this item
-
-               if(($_SESSION['visitor_id'] == $item['contact-id']) || ($_SESSION['uid'] == $item['uid'])) {
-
-                       // delete the item
-
-                       $r = q("UPDATE `item` SET `deleted` = 1, `body` = '', `edited` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
-                               dbesc(datetime_convert()),
-                               dbesc(datetime_convert()),
-                               intval($item['id'])
-                       );
-
-                       // If item is a link to a photo resource, nuke all the associated photos 
-                       // (visitors will not have photo resources)
-                       // This only applies to photos uploaded from the photos page. Photos inserted into a post do not
-                       // generate a resource-id and therefore aren't intimately linked to the item. 
-
-                       if(strlen($item['resource-id'])) {
-                               q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d ",
-                                       dbesc($item['resource-id']),
-                                       intval($item['uid'])
-                               );
-                               // ignore the result
-                       }
-
-                       // If item is a link to an event, nuke the event record.
-
-                       if(intval($item['event-id'])) {
-                               q("DELETE FROM `event` WHERE `id` = %d AND `uid` = %d LIMIT 1",
-                                       intval($item['event-id']),
-                                       intval($item['uid'])
-                               );
-                               // ignore the result
-                       }
-
-
-                       // If it's the parent of a comment thread, kill all the kids
-
-                       if($item['uri'] == $item['parent-uri']) {
-                               $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s', `body` = '' 
-                                       WHERE `parent-uri` = '%s' AND `uid` = %d ",
-                                       dbesc(datetime_convert()),
-                                       dbesc(datetime_convert()),
-                                       dbesc($item['parent-uri']),
-                                       intval($item['uid'])
-                               );
-                               // ignore the result
-                       }
-                       else {
-                               // ensure that last-child is set in case the comment that had it just got wiped.
-                               q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
-                                       dbesc(datetime_convert()),
-                                       dbesc($item['parent-uri']),
-                                       intval($item['uid'])
-                               );
-                               // who is the last child now? 
-                               $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `uid` = %d ORDER BY `edited` DESC LIMIT 1",
-                                       dbesc($item['parent-uri']),
-                                       intval($item['uid'])
-                               );
-                               if(count($r)) {
-                                       q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
-                                               intval($r[0]['id'])
-                                       );
-                               }       
-                       }
-                       $drop_id = intval($item['id']);
-                       
-                       // send the notification upstream/downstream as the case may be
-
-                       proc_run('php',"include/notifier.php","drop","$drop_id");
-// We seem to lose the return url occasionally. Have not been able to reliably duplicate
-//                     logger('drop_return_url: ' . $_SESSION['return_url']);
-                       goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
-                       //NOTREACHED
-               }
-               else {
-                       notice( t('Permission denied.') . EOL);
-                       goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
-                       //NOTREACHED
-               }
+               require_once('include/items.php');
+               drop_item($a->argv[2]);
        }
 }