]> git.mxchange.org Git - friendica.git/blob - mod/dfrn_notify.php
Some Bugfixes, and variable checks
[friendica.git] / mod / dfrn_notify.php
1 <?php
2
3 require_once('library/simplepie/simplepie.inc');
4 require_once('include/items.php');
5 require_once('include/event.php');
6
7
8 function dfrn_notify_post(&$a) {
9
10         $dfrn_id      = ((x($_POST,'dfrn_id'))      ? notags(trim($_POST['dfrn_id']))   : '');
11         $dfrn_version = ((x($_POST,'dfrn_version')) ? (float) $_POST['dfrn_version']    : 2.0);
12         $challenge    = ((x($_POST,'challenge'))    ? notags(trim($_POST['challenge'])) : '');
13         $data         = ((x($_POST,'data'))         ? $_POST['data']                    : '');
14         $key          = ((x($_POST,'key'))          ? $_POST['key']                     : '');
15         $dissolve     = ((x($_POST,'dissolve'))     ? intval($_POST['dissolve'])        :  0);
16         $perm         = ((x($_POST,'perm'))         ? notags(trim($_POST['perm']))      : 'r');
17         $ssl_policy   = ((x($_POST,'ssl_policy'))   ? notags(trim($_POST['ssl_policy'])): 'none');
18         $page         = ((x($_POST,'page'))         ? intval($_POST['page'])            :  0);
19
20         $writable = (-1);
21         if($dfrn_version >= 2.21) {
22                 $writable = (($perm === 'rw') ? 1 : 0);
23         }
24
25         $direction = (-1);
26         if(strpos($dfrn_id,':') == 1) {
27                 $direction = intval(substr($dfrn_id,0,1));
28                 $dfrn_id = substr($dfrn_id,2);
29         }
30
31         $r = q("SELECT * FROM `challenge` WHERE `dfrn-id` = '%s' AND `challenge` = '%s' LIMIT 1",
32                 dbesc($dfrn_id),
33                 dbesc($challenge)
34         );
35         if(! count($r)) {
36                 logger('dfrn_notify: could not match challenge to dfrn_id ' . $dfrn_id . ' challenge=' . $challenge);
37                 xml_status(3);
38         }
39
40         $r = q("DELETE FROM `challenge` WHERE `dfrn-id` = '%s' AND `challenge` = '%s' LIMIT 1",
41                 dbesc($dfrn_id),
42                 dbesc($challenge)
43         );
44
45         // find the local user who owns this relationship.
46
47         $sql_extra = '';
48         switch($direction) {
49                 case (-1):
50                         $sql_extra = sprintf(" AND ( `issued-id` = '%s' OR `dfrn-id` = '%s' ) ", dbesc($dfrn_id), dbesc($dfrn_id));
51                         break;
52                 case 0:
53                         $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
54                         break;
55                 case 1:
56                         $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
57                         break;
58                 default:
59                         xml_status(3);
60                         break; // NOTREACHED
61         }
62                  
63         // be careful - $importer will contain both the contact information for the contact
64         // sending us the post, and also the user information for the person receiving it.
65         // since they are mixed together, it is easy to get them confused.
66
67         $r = q("SELECT  `contact`.*, `contact`.`uid` AS `importer_uid`, 
68                                         `contact`.`pubkey` AS `cpubkey`, 
69                                         `contact`.`prvkey` AS `cprvkey`, 
70                                         `contact`.`thumb` AS `thumb`, 
71                                         `contact`.`url` as `url`,
72                                         `contact`.`name` as `senderName`,
73                                         `user`.* 
74                         FROM `contact` 
75                         LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid` 
76                         WHERE `contact`.`blocked` = 0 AND `contact`.`pending` = 0 
77                                 AND `user`.`nickname` = '%s' AND `user`.`account_expired` = 0 $sql_extra LIMIT 1",
78                 dbesc($a->argv[1])
79         );
80
81         if(! count($r)) {
82                 logger('dfrn_notify: contact not found for dfrn_id ' . $dfrn_id);
83                 xml_status(3);
84                 //NOTREACHED
85         }
86
87         // $importer in this case contains the contact record for the remote contact joined with the user record of our user. 
88
89         $importer = $r[0];
90
91         if((($writable != (-1)) && ($writable != $importer['writable'])) || ($importer['forum'] != $page)) {
92                 q("UPDATE `contact` SET `writable` = %d, forum = %d WHERE `id` = %d LIMIT 1",
93                         intval(($writable == (-1)) ? $importer['writable'] : $writable),
94                         intval($page),
95                         intval($importer['id'])
96                 );
97                 if($writable != (-1))
98                         $importer['writable'] = $writable;
99                 $importer['forum'] = $page;
100         }
101
102
103         // if contact's ssl policy changed, update our links
104
105         fix_contact_ssl_policy($importer,$ssl_policy);
106
107         logger('dfrn_notify: received notify from ' . $importer['name'] . ' for ' . $importer['username']);
108         logger('dfrn_notify: data: ' . $data, LOGGER_DATA);
109
110         if($dissolve == 1) {
111
112                 /**
113                  * Relationship is dissolved permanently
114                  */
115
116                 require_once('include/Contact.php'); 
117                 contact_remove($importer['id']);
118                 logger('relationship dissolved : ' . $importer['name'] . ' dissolved ' . $importer['username']);
119                 xml_status(0);
120
121         }
122
123
124         // If we are setup as a soapbox we aren't accepting input from this person
125
126         if($importer['page-flags'] == PAGE_SOAPBOX)
127                 xml_status(0);
128
129
130         if(strlen($key)) {
131                 $rawkey = hex2bin(trim($key));
132                 logger('rino: md5 raw key: ' . md5($rawkey));
133                 $final_key = '';
134
135                 if($dfrn_version >= 2.1) {
136                         if((($importer['duplex']) && strlen($importer['cprvkey'])) || (! strlen($importer['cpubkey']))) {
137                                 openssl_private_decrypt($rawkey,$final_key,$importer['cprvkey']);
138                         }
139                         else {
140                                 openssl_public_decrypt($rawkey,$final_key,$importer['cpubkey']);
141                         }
142                 }
143                 else {
144                         if((($importer['duplex']) && strlen($importer['cpubkey'])) || (! strlen($importer['cprvkey']))) {
145                                 openssl_public_decrypt($rawkey,$final_key,$importer['cpubkey']);
146                         }
147                         else {
148                                 openssl_private_decrypt($rawkey,$final_key,$importer['cprvkey']);
149                         }
150                 }
151
152                 logger('rino: received key : ' . $final_key);
153                 $data = aes_decrypt(hex2bin($data),$final_key);
154                 logger('rino: decrypted data: ' . $data, LOGGER_DATA);
155         }
156
157
158         $ret = local_delivery($importer,$data);
159         xml_status($ret);
160
161         // NOTREACHED
162 }
163
164
165 function dfrn_notify_content(&$a) {
166
167         if(x($_GET,'dfrn_id')) {
168
169                 // initial communication from external contact, $direction is their direction.
170                 // If this is a duplex communication, ours will be the opposite.
171
172                 $dfrn_id = notags(trim($_GET['dfrn_id']));
173                 $dfrn_version = (float) $_GET['dfrn_version'];
174
175                 logger('dfrn_notify: new notification dfrn_id=' . $dfrn_id);
176
177                 $direction = (-1);
178                 if(strpos($dfrn_id,':') == 1) {
179                         $direction = intval(substr($dfrn_id,0,1));
180                         $dfrn_id = substr($dfrn_id,2);
181                 }
182
183                 $hash = random_string();
184
185                 $status = 0;
186
187                 $r = q("DELETE FROM `challenge` WHERE `expire` < " . intval(time()));
188
189                 $r = q("INSERT INTO `challenge` ( `challenge`, `dfrn-id`, `expire` )
190                         VALUES( '%s', '%s', %d ) ",
191                         dbesc($hash),
192                         dbesc($dfrn_id),
193                         intval(time() + 90 )
194                 );
195
196                 logger('dfrn_notify: challenge=' . $hash, LOGGER_DEBUG );
197
198                 $sql_extra = '';
199                 switch($direction) {
200                         case (-1):
201                                 $sql_extra = sprintf(" AND ( `issued-id` = '%s' OR `dfrn-id` = '%s' ) ", dbesc($dfrn_id), dbesc($dfrn_id));
202                                 $my_id = $dfrn_id;
203                                 break;
204                         case 0:
205                                 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
206                                 $my_id = '1:' . $dfrn_id;
207                                 break;
208                         case 1:
209                                 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
210                                 $my_id = '0:' . $dfrn_id;
211                                 break;
212                         default:
213                                 $status = 1;
214                                 break; // NOTREACHED
215                 }
216
217                 $r = q("SELECT `contact`.*, `user`.`nickname`, `user`.`page-flags` FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid` 
218                                 WHERE `contact`.`blocked` = 0 AND `contact`.`pending` = 0 AND `user`.`nickname` = '%s' 
219                                 AND `user`.`account_expired` = 0 $sql_extra LIMIT 1",
220                                 dbesc($a->argv[1])
221                 );
222
223                 if(! count($r))
224                         $status = 1;
225
226                 $challenge = '';
227                 $encrypted_id = '';
228                 $id_str = $my_id . '.' . mt_rand(1000,9999);
229
230                 $prv_key = trim($r[0]['prvkey']);
231                 $pub_key = trim($r[0]['pubkey']);
232                 $dplx = intval($r[0]['duplex']);
233
234                 if((($dplx) && (strlen($prv_key))) || ((strlen($prv_key)) && (!(strlen($pub_key))))) {
235                         openssl_private_encrypt($hash,$challenge,$prv_key);
236                         openssl_private_encrypt($id_str,$encrypted_id,$prv_key);
237                 }
238                 elseif(strlen($pub_key)) {
239                         openssl_public_encrypt($hash,$challenge,$pub_key);
240                         openssl_public_encrypt($id_str,$encrypted_id,$pub_key);
241                 }
242                 else
243                         $status = 1;
244
245                 $challenge    = bin2hex($challenge);
246                 $encrypted_id = bin2hex($encrypted_id);
247
248                 $rino = ((function_exists('mcrypt_encrypt')) ? 1 : 0);
249
250                 $rino_enable = get_config('system','rino_encrypt');
251
252                 if(! $rino_enable)
253                         $rino = 0;
254
255                 if((($r[0]['rel']) && ($r[0]['rel'] != CONTACT_IS_SHARING)) || ($r[0]['page-flags'] == PAGE_COMMUNITY)) {
256                         $perm = 'rw';
257                 }
258                 else {
259                         $perm = 'r';
260                 }
261
262                 header("Content-type: text/xml");
263
264                 echo '<?xml version="1.0" encoding="UTF-8"?>' . "\r\n" 
265                         . '<dfrn_notify>' . "\r\n"
266                         . "\t" . '<status>' . $status . '</status>' . "\r\n"
267                         . "\t" . '<dfrn_version>' . DFRN_PROTOCOL_VERSION . '</dfrn_version>' . "\r\n"
268                         . "\t" . '<rino>' . $rino . '</rino>' . "\r\n"
269                         . "\t" . '<perm>' . $perm . '</perm>' . "\r\n" 
270                         . "\t" . '<dfrn_id>' . $encrypted_id . '</dfrn_id>' . "\r\n" 
271                         . "\t" . '<challenge>' . $challenge . '</challenge>' . "\r\n"
272                         . '</dfrn_notify>' . "\r\n" ;
273
274                 killme();
275         }
276
277 }