]> git.mxchange.org Git - friendica.git/blob - mod/item.php
e0497af7a54e79e240915d6fa1365252d04e706a
[friendica.git] / mod / item.php
1 <?php
2
3 function sanitise_acl(&$item) {
4         $item = '<' . intval(notags(trim($item))) . '>';
5 }
6
7 function item_post(&$a) {
8
9         if((! local_user()) && (! remote_user()))
10                 return;
11
12         require_once('include/security.php');
13
14         $uid = $_SESSION['uid'];
15         $parent = ((x($_POST,'parent')) ? intval($_POST['parent']) : 0);
16
17         $parent_item = null;
18
19         if($parent) {
20                 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
21                         intval($parent)
22                 );
23                 if(! count($r)) {
24                         notice("Unable to locate original post." . EOL);
25                         goaway($a->get_baseurl() . "/" . $_POST['return'] );
26                 }
27                 $parent_item = $r[0];
28         }
29
30         $profile_uid = ((x($_POST,'profile_uid')) ? intval($_POST['profile_uid']) : 0);
31
32         if(! can_write_wall($a,$profile_uid)) {
33                 notice("Permission denied." . EOL) ;
34                 return;
35         }
36         
37         $str_group_allow = '';
38         $group_allow = $_POST['group_allow'];
39         if(is_array($group_allow)) {
40                 array_walk($group_allow,'sanitise_acl');
41                 $str_group_allow = implode('',$group_allow);
42         }
43
44         $str_contact_allow = '';
45         $contact_allow = $_POST['contact_allow'];
46         if(is_array($contact_allow)) {
47                 array_walk($contact_allow,'sanitise_acl');
48                 $str_contact_allow = implode('',$contact_allow);
49         }
50
51         $str_group_deny = '';
52         $group_deny = $_POST['group_deny'];
53         if(is_array($group_deny)) {
54                 array_walk($group_deny,'sanitise_acl');
55                 $str_group_deny = implode('',$group_deny);
56         }
57
58         $str_contact_deny = '';
59         $contact_deny = $_POST['contact_deny'];
60         if(is_array($contact_deny)) {
61                 array_walk($contact_deny,'sanitise_acl');
62                 $str_contact_deny = implode('',$contact_deny);
63         }
64
65
66         $body = escape_tags(trim($_POST['body']));
67
68         if(! strlen($body)) {
69                 notice("Empty post discarded." . EOL );
70                 goaway($a->get_baseurl() . "/" . $_POST['return'] );
71
72         }
73
74         // get contact info for poster
75
76         if((x($_SESSION,'visitor_id')) && (intval($_SESSION['visitor_id']))) {
77                 $contact_id = $_SESSION['visitor_id'];
78         }
79         else {
80                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
81                         intval($_SESSION['uid']));
82                 if(count($r))
83                         $contact_id = $r[0]['id'];
84         }
85
86         // get contact info for owner
87         
88         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
89                 intval($profile_uid)
90         );
91         if(count($r))
92                 $contact_record = $r[0];
93
94
95         $notify_type = (($parent) ? 'comment-new' : 'wall-new' );
96
97         if(($_POST['type'] == 'wall') || ($_POST['type'] == 'wall-comment')) {
98
99                 do {
100                         $dups = false;
101                         $hash = random_string();
102
103                         $uri = "urn:X-dfrn:" . $a->get_hostname() . ':' . $profile_uid . ':' . $hash;
104
105                         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' LIMIT 1",
106                         dbesc($uri));
107                         if(count($r))
108                                 $dups = true;
109                 } while($dups == true);
110
111
112                 $r = q("INSERT INTO `item` (`uid`,`type`,`contact-id`,`owner-name`,`owner-link`,`owner-avatar`, `created`,
113                         `edited`, `uri`, `body`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`)
114                         VALUES( %d, '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' )",
115                         intval($profile_uid),
116                         dbesc($_POST['type']),
117                         intval($contact_id),
118                         dbesc($contact_record['name']),
119                         dbesc($contact_record['url']),
120                         dbesc($contact_record['thumb']),
121                         datetime_convert(),
122                         datetime_convert(),
123                         dbesc($uri),
124                         dbesc(escape_tags(trim($_POST['body']))),
125                         dbesc($str_contact_allow),
126                         dbesc($str_group_allow),
127                         dbesc($str_contact_deny),
128                         dbesc($str_group_deny)
129
130                 );
131                 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' LIMIT 1",
132                         dbesc($uri));
133                 if(count($r)) {
134                         $post_id = $r[0]['id'];
135
136                         if($parent) {
137
138                                 // This item is the last leaf and gets the comment box, clear any ancestors
139                                 $r = q("UPDATE `item` SET `last-child` = 0 WHERE `parent` = %d ",
140                                         intval($parent)
141                                 );
142
143                                 // Inherit ACL's from the parent item.
144                                 // TODO merge with subsequent UPDATE operation and save a db write 
145
146                                 $r = q("UPDATE `item` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s'
147                                         WHERE `id` = %d LIMIT 1",
148                                         dbesc($parent_item['allow_cid']),
149                                         dbesc($parent_item['allow_gid']),
150                                         dbesc($parent_item['deny_cid']),
151                                         dbesc($parent_item['deny_gid']),
152                                         intval($post_id)
153                                 );
154                         }
155                         else {
156                                 $parent = $post_id;
157                         }
158
159                         $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s', `last-child` = 1, `visible` = 1
160                                 WHERE `id` = %d LIMIT 1",
161                                 intval($parent),
162                                 dbesc(($parent == $post_id) ? $uri : $parent_item['uri']),
163                                 intval($post_id)
164                         );
165                 }
166
167                 $url = $a->get_baseurl();
168
169                 proc_close(proc_open("php include/notifier.php \"$url\" \"$notify_type\" \"$post_id\" > notify.log &",
170                         array(),$foo));
171
172         }
173         goaway($a->get_baseurl() . "/" . $_POST['return'] );
174         return; // NOTREACHED
175 }