]> git.mxchange.org Git - friendica.git/blob - include/socgraph.php
shuffle results of remote_common_friends widget
[friendica.git] / include / socgraph.php
1 <?php
2
3 require_once('include/datetime.php');
4
5
6 /*
7  * poco_load
8  *
9  * Given a contact-id (minimum), load the PortableContacts friend list for that contact,
10  * and add the entries to the gcontact (Global Contact) table, or update existing entries
11  * if anything (name or photo) has changed.
12  * We use normalised urls for comparison which ignore http vs https and www.domain vs domain
13  *
14  * Once the global contact is stored add (if necessary) the contact linkage which associates
15  * the given uid, cid to the global contact entry. There can be many uid/cid combinations
16  * pointing to the same global contact id. 
17  *
18  */
19  
20
21
22
23 function poco_load($cid,$uid = 0,$zcid = 0,$url = null) {
24         $a = get_app();
25
26         if($cid) {
27                 if((! $url) || (! $uid)) {
28                         $r = q("select `poco`, `uid` from `contact` where `id` = %d limit 1",
29                                 intval($cid)
30                         );
31                         if(count($r)) {
32                                 $url = $r[0]['poco'];
33                                 $uid = $r[0]['uid'];
34                         }
35                 }
36                 if(! $uid)
37                         return;
38         }
39
40         if(! $url)
41                 return;
42
43         $url = $url . (($uid) ? '/@me/@all?fields=displayName,urls,photos' : '?fields=displayName,urls,photos') ;
44
45         logger('poco_load: ' . $url, LOGGER_DEBUG);
46
47         $s = fetch_url($url);
48
49         logger('poco_load: returns ' . $s, LOGGER_DATA);
50
51         logger('poco_load: return code: ' . $a->get_curl_code(), LOGGER_DEBUG);
52
53         if(($a->get_curl_code() > 299) || (! $s))
54                 return;
55
56         $j = json_decode($s);
57
58         logger('poco_load: json: ' . print_r($j,true),LOGGER_DATA);
59
60         if(! isset($j->entry))
61                 return;
62
63         $total = 0;
64         foreach($j->entry as $entry) {
65
66                 $total ++;
67                 $profile_url = '';
68                 $profile_photo = '';
69                 $connect_url = '';
70                 $name = '';
71
72                 $name = $entry->displayName;
73
74                 foreach($entry->urls as $url) {
75                         if($url->type == 'profile') {
76                                 $profile_url = $url->value;
77                                 continue;
78                         }
79                         if($url->type == 'webfinger') {
80                                 $connect_url = str_replace('acct:' , '', $url->value);
81                                 continue;
82                         }
83                 } 
84                 foreach($entry->photos as $photo) {
85                         if($photo->type == 'profile') {
86                                 $profile_photo = $photo->value;
87                                 continue;
88                         }
89                 }
90
91                 if((! $name) || (! $profile_url) || (! $profile_photo))
92                         continue; 
93                  
94                 $x = q("select * from `gcontact` where `nurl` = '%s' limit 1",
95                         dbesc(normalise_link($profile_url))
96                 );
97
98                 if(count($x)) {
99                         $gcid = $x[0]['id'];
100
101                         if($x[0]['name'] != $name || $x[0]['photo'] != $profile_photo) {
102                                 q("update gcontact set `name` = '%s', `photo` = '%s', `connect` = '%s' 
103                                         where `nurl` = '%s' limit 1",
104                                         dbesc($name),
105                                         dbesc($profile_photo),
106                                         dbesc($connect_url),
107                                         dbesc(normalise_link($profile_url))
108                                 );
109                         }
110                 }
111                 else {
112                         q("insert into `gcontact` (`name`,`url`,`nurl`,`photo`,`connect`)
113                                 values ( '%s', '%s', '%s', '%s','%s') ",
114                                 dbesc($name),
115                                 dbesc($profile_url),
116                                 dbesc(normalise_link($profile_url)),
117                                 dbesc($profile_photo),
118                                 dbesc($connect_url)
119                         );
120                         $x = q("select * from `gcontact` where `nurl` = '%s' limit 1",
121                                 dbesc(normalise_link($profile_url))
122                         );
123                         if(count($x))
124                                 $gcid = $x[0]['id'];
125                 }
126                 if(! $gcid)
127                         return;
128
129                 $r = q("select * from glink where `cid` = %d and `uid` = %d and `gcid` = %d and `zcid` = %d limit 1",
130                         intval($cid),
131                         intval($uid),
132                         intval($gcid),
133                         intval($zcid)
134                 );
135                 if(! count($r)) {
136                         q("insert into glink ( `cid`,`uid`,`gcid`,`zcid`, `updated`) values (%d,%d,%d,%d, '%s') ",
137                                 intval($cid),
138                                 intval($uid),
139                                 intval($gcid),
140                                 intval($zcid),
141                                 dbesc(datetime_convert())
142                         );
143                 }
144                 else {
145                         q("update glink set updated = '%s' where `cid` = %d and `uid` = %d and `gcid` = %d and zcid = %d limit 1",
146                                 dbesc(datetime_convert()),
147                                 intval($cid),
148                                 intval($uid),
149                                 intval($gcid),
150                                 intval($zcid)
151                         );
152                 }
153
154         }
155         logger("poco_load: loaded $total entries",LOGGER_DEBUG);
156
157         q("delete from glink where `cid` = %d and `uid` = %d and `zcid` = %d and `updated` < UTC_TIMESTAMP - INTERVAL 2 DAY",
158                 intval($cid),
159                 intval($uid),
160                 intval($zcid)
161         );
162
163 }
164
165
166 function count_common_friends($uid,$cid) {
167
168         $r = q("SELECT count(*) as `total`
169                 FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id`
170                 where `glink`.`cid` = %d and `glink`.`uid` = %d
171                 and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and id != %d ) ",
172                 intval($cid),
173                 intval($uid),
174                 intval($uid),
175                 intval($cid)
176         );
177
178         if(count($r))
179                 return $r[0]['total'];
180         return 0;
181
182 }
183
184
185 function common_friends($uid,$cid,$limit=9999,$shuffle = false) {
186
187         if($shuffle)
188                 $sql_extra = " order by rand() ";
189         else
190                 $sql_extra = " order by `gcontact`.`name` asc "; 
191
192         $r = q("SELECT `gcontact`.* 
193                 FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id`
194                 where `glink`.`cid` = %d and `glink`.`uid` = %d
195                 and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and id != %d ) 
196                 sql_extra limit 0, %d",
197                 intval($cid),
198                 intval($uid),
199                 intval($uid),
200                 intval($cid),
201                 intval($limit)
202         );
203
204         return $r;
205
206 }
207
208
209 function count_common_friends_zcid($uid,$zcid) {
210
211         $r = q("SELECT count(*) as `total` 
212                 FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id`
213                 where `glink`.`zcid` = %d
214                 and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 ) ",
215                 intval($zcid),
216                 intval($uid)
217         );
218
219         if(count($r))
220                 return $r[0]['total'];
221         return 0;
222
223 }
224
225 function common_friends_zcid($uid,$zcid,$limit = 9999,$shuffle) {
226
227         if($shuffle)
228                 $sql_extra = " order by rand() ";
229         else
230                 $sql_extra = " order by `gcontact`.`name` asc "; 
231
232         $r = q("SELECT `gcontact`.* 
233                 FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id`
234                 where `glink`.`zcid` = %d
235                 and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 ) 
236                 $sql_extra limit 0, %d",
237                 intval($zcid),
238                 intval($uid),
239                 intval($limit)
240         );
241
242         return $r;
243
244 }
245
246
247 function count_all_friends($uid,$cid) {
248
249         $r = q("SELECT count(*) as `total`
250                 FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id`
251                 where `glink`.`cid` = %d and `glink`.`uid` = %d ",
252                 intval($cid),
253                 intval($uid)
254         );
255
256         if(count($r))
257                 return $r[0]['total'];
258         return 0;
259
260 }
261
262
263 function all_friends($uid,$cid,$start = 0, $limit = 80) {
264
265         $r = q("SELECT `gcontact`.* 
266                 FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id`
267                 where `glink`.`cid` = %d and `glink`.`uid` = %d 
268                 order by `gcontact`.`name` asc LIMIT %d, %d ",
269                 intval($cid),
270                 intval($uid),
271                 intval($start),
272                 intval($limit)
273         );
274
275         return $r;
276 }
277
278
279
280 function suggestion_query($uid, $start = 0, $limit = 80) {
281
282         if(! $uid)
283                 return array();
284
285         $r = q("SELECT count(glink.gcid) as `total`, gcontact.* from gcontact 
286                 left join glink on glink.gcid = gcontact.id 
287                 where uid = %d and not gcontact.nurl in ( select nurl from contact where uid = %d )
288                 and not gcontact.name in ( select name from contact where uid = %d )
289                 and not gcontact.id in ( select gcid from gcign where uid = %d )
290                 group by glink.gcid order by total desc limit %d, %d ",
291                 intval($uid),
292                 intval($uid),
293                 intval($uid),
294                 intval($uid),
295                 intval($start),
296                 intval($limit)
297         );
298
299         if(count($r) && count($r) >= ($limit -1))
300                 return $r;
301
302         $r2 = q("SELECT gcontact.* from gcontact 
303                 left join glink on glink.gcid = gcontact.id 
304                 where glink.uid = 0 and glink.cid = 0 and glink.zcid = 0 and not gcontact.nurl in ( select nurl from contact where uid = %d )
305                 and not gcontact.name in ( select name from contact where uid = %d )
306                 and not gcontact.id in ( select gcid from gcign where uid = %d )
307                 order by rand() limit %d, %d ",
308                 intval($uid),
309                 intval($uid),
310                 intval($uid),
311                 intval($start),
312                 intval($limit)
313         );
314
315
316         return array_merge($r,$r2);
317
318 }
319
320 function update_suggestions() {
321
322         $a = get_app();
323
324         $done = array();
325
326         poco_load(0,0,0,$a->get_baseurl() . '/poco');
327
328         $done[] = $a->get_baseurl() . '/poco';
329
330         if(strlen(get_config('system','directory_submit_url'))) {
331                 $x = fetch_url('http://dir.friendica.com/pubsites');
332                 if($x) {
333                         $j = json_decode($x);
334                         if($j->entries) {
335                                 foreach($j->entries as $entry) {
336                                         $url = $entry->url . '/poco';
337                                         if(! in_array($url,$done))
338                                                 poco_load(0,0,0,$entry->url . '/poco');
339                                 }
340                         }
341                 }
342         }
343
344         $r = q("select distinct(poco) as poco from contact where network = '%s'",
345                 dbesc(NETWORK_DFRN)
346         );
347
348         if(count($r)) {
349                 foreach($r as $rr) {
350                         $base = substr($rr['poco'],0,strrpos($rr['poco'],'/'));
351                         if(! in_array($base,$done))
352                                 poco_load(0,0,0,$base);
353                 }
354         }
355 }