]> git.mxchange.org Git - friendica.git/blob - mod/item.php
acb97a062607ba32277341af8fafb60ec1f0a0ea
[friendica.git] / mod / item.php
1 <?php
2
3 function item_post(&$a) {
4
5         if((! local_user()) && (! remote_user()))
6                 return;
7
8         require_once('include/security.php');
9
10         $uid = $_SESSION['uid'];
11
12
13         $parent = ((x($_POST,'parent')) ? intval($_POST['parent']) : 0);
14
15         $parent_item = null;
16
17         if($parent) {
18                 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
19                         intval($parent)
20                 );
21                 if(! count($r)) {
22                         notice( t('Unable to locate original post.') . EOL);
23                         goaway($a->get_baseurl() . "/" . $_POST['return'] );
24                 }
25                 $parent_item = $r[0];
26         }
27
28         $profile_uid = ((x($_POST,'profile_uid')) ? intval($_POST['profile_uid']) : 0);
29
30         if(! can_write_wall($a,$profile_uid)) {
31                 notice("Permission denied." . EOL) ;
32                 return;
33         }
34         
35         $str_group_allow = '';
36         $group_allow = $_POST['group_allow'];
37         if(is_array($group_allow)) {
38                 array_walk($group_allow,'sanitise_acl');
39                 $str_group_allow = implode('',$group_allow);
40         }
41
42         $str_contact_allow = '';
43         $contact_allow = $_POST['contact_allow'];
44         if(is_array($contact_allow)) {
45                 array_walk($contact_allow,'sanitise_acl');
46                 $str_contact_allow = implode('',$contact_allow);
47         }
48
49         $str_group_deny = '';
50         $group_deny = $_POST['group_deny'];
51         if(is_array($group_deny)) {
52                 array_walk($group_deny,'sanitise_acl');
53                 $str_group_deny = implode('',$group_deny);
54         }
55
56         $str_contact_deny = '';
57         $contact_deny = $_POST['contact_deny'];
58         if(is_array($contact_deny)) {
59                 array_walk($contact_deny,'sanitise_acl');
60                 $str_contact_deny = implode('',$contact_deny);
61         }
62
63         $title = notags(trim($_POST['title']));
64         $body = escape_tags(trim($_POST['body']));
65
66         if(! strlen($body)) {
67                 notice( t('Empty post discarded.') . EOL );
68                 goaway($a->get_baseurl() . "/" . $_POST['return'] );
69
70         }
71
72         // get contact info for poster
73
74         if((x($_SESSION,'visitor_id')) && (intval($_SESSION['visitor_id']))) {
75                 $contact_id = $_SESSION['visitor_id'];
76         }
77         else {
78                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
79                         intval($_SESSION['uid']));
80                 if(count($r))
81                         $contact_id = $r[0]['id'];
82         }
83
84         // get contact info for owner
85         
86         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
87                 intval($profile_uid)
88         );
89         if(count($r))
90                 $contact_record = $r[0];
91
92         $post_type == notags(trim($_POST['type']));
93
94         if($post_type == 'net-comment') {
95                 if($parent_item !== null) {
96                         if($parent_item['type'] == 'remote')
97                                 $post_type = 'remote-comment';
98                         else            
99                                 $post_type = 'wall-comment';
100                 }
101         }
102
103         $notify_type = (($parent) ? 'comment-new' : 'wall-new' );
104
105         do {
106                 $dups = false;
107                 $hash = random_string();
108
109                 $uri = "urn:X-dfrn:" . $a->get_hostname() . ':' . $profile_uid . ':' . $hash;
110
111                 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' LIMIT 1",
112                         dbesc($uri));
113                 if(count($r))
114                         $dups = true;
115         } while($dups == true);
116
117
118         $r = q("INSERT INTO `item` (`uid`,`type`,`contact-id`,`owner-name`,`owner-link`,`owner-avatar`, `created`,
119                 `edited`, `uri`, `title`, `body`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`)
120                 VALUES( %d, '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' )",
121                 intval($profile_uid),
122                 dbesc($post_type),
123                 intval($contact_id),
124                 dbesc($contact_record['name']),
125                 dbesc($contact_record['url']),
126                 dbesc($contact_record['thumb']),
127                 datetime_convert(),
128                 datetime_convert(),
129                 dbesc($uri),
130                 dbesc($title),
131                 dbesc($body),
132                 dbesc($str_contact_allow),
133                 dbesc($str_group_allow),
134                 dbesc($str_contact_deny),
135                 dbesc($str_group_deny)
136         );
137         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' LIMIT 1",
138                 dbesc($uri));
139         if(count($r)) {
140                 $post_id = $r[0]['id'];
141
142                 if($parent) {
143
144                         // This item is the last leaf and gets the comment box, clear any ancestors
145                         $r = q("UPDATE `item` SET `last-child` = 0 WHERE `parent` = %d ",
146                                 intval($parent)
147                         );
148
149                         // Inherit ACL's from the parent item.
150                         // TODO merge with subsequent UPDATE operation and save a db write 
151
152                         $r = q("UPDATE `item` SET `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s'
153                                 WHERE `id` = %d LIMIT 1",
154                                 dbesc($parent_item['allow_cid']),
155                                 dbesc($parent_item['allow_gid']),
156                                 dbesc($parent_item['deny_cid']),
157                                 dbesc($parent_item['deny_gid']),
158                                 intval($post_id)
159                         );
160                 }
161                 else {
162                         $parent = $post_id;
163                 }
164
165                 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s', `last-child` = 1, `visible` = 1
166                         WHERE `id` = %d LIMIT 1",
167                         intval($parent),
168                         dbesc(($parent == $post_id) ? $uri : $parent_item['uri']),
169                         intval($post_id)
170                 );
171                 // photo comments turn the corresponding item visible to the profile wall
172                 if(! $parent_item['visible']) {
173                         $r = q("UPDATE `item` SET `visible = 1 WHERE `id` = %d LIMIT 1",
174                                 intval($parent_item['id'])
175                         );
176                 }
177         }
178         $url = $a->get_baseurl();
179
180         proc_close(proc_open("php include/notifier.php \"$url\" \"$notify_type\" \"$post_id\" > notify.log &",
181                 array(),$foo));
182
183         goaway($a->get_baseurl() . "/" . $_POST['return'] );
184         return; // NOTREACHED
185 }
186
187 function item_content(&$a) {
188
189         if((! local_user()) && (! remote_user()))
190                 return;
191
192         require_once('include/security.php');
193
194         $uid = $_SESSION['uid'];
195
196         if(($a->argc == 3) && ($a->argv[1] == 'drop') && intval($a->argv[2])) {
197
198                 // locate item to be deleted
199
200                 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
201                         intval($a->argv[2])
202                 );
203
204                 if(! count($r)) {
205                         notice("Item not found." . EOL);
206                         goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
207                 }
208                 $item = $r[0];
209
210                 // check if logged in user is either the author or owner of this item
211
212                 if(($_SESSION['visitor_id'] == $item['contact-id']) || ($_SESSION['uid'] == $item['uid'])) {
213
214                         // delete the item
215
216                         $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s' WHERE `id` = %d LIMIT 1",
217                                 dbesc(datetime_convert()),
218                                 intval($item['id'])
219                         );
220
221                         // If item is a link to a photo resource, nuke all the associated photos 
222                         // (visitors will not have photo resources)
223                         // This only applies to photos uploaded from the photos page. Photos inserted into a post do not
224                         // generate a resource-id and therefore aren't intimately linked to the item. 
225
226                         if(strlen($item['resource-id'])) {
227                                 $q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d ",
228                                         dbesc($item['resource-id']),
229                                         intval($item['uid'])
230                                 );
231                                 // ignore the result
232                         }
233
234                         // If it's the parent of a comment thread, kill all the kids
235
236                         if($item['uri'] == $item['parent-uri']) {
237                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s' 
238                                         WHERE `parent-uri` = '%s' AND `uid` = %d ",
239                                         dbesc(datetime_convert()),
240                                         dbesc($item['parent-uri']),
241                                         intval($item['uid'])
242                                 );
243                                 // ignore the result
244                         }
245
246                         $url = $a->get_baseurl();
247                         $drop_id = intval($item['id']);
248
249                         // send the notification upstream/downstream as the case may be
250
251                         proc_close(proc_open("php include/notifier.php \"$url\" \"drop\" \"$drop_id\" > notify.log &",
252                                 array(),$foo));
253
254                         goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
255                         return; //NOTREACHED
256                 }
257                 else {
258                         notice("Permission denied." . EOL);
259                         goaway($a->get_baseurl() . '/' . $_SESSION['return_url']);
260                         return; //NOTREACHED
261                 }
262         }
263 }