]> git.mxchange.org Git - friendica.git/blob - mod/noscrape.php
Merge remote-tracking branch 'upstream/develop' into develop
[friendica.git] / mod / noscrape.php
1 <?php
2
3 function noscrape_init(App &$a) {
4
5         if($a->argc > 1)
6                 $which = $a->argv[1];
7         else
8                 killme();
9
10         $profile = 0;
11         if((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) {
12                 $which = $a->user['nickname'];
13                 $profile = $a->argv[1];
14         }
15
16         profile_load($a,$which,$profile);
17
18         if (!$a->profile['net-publish'] OR $a->profile['hidewall']) {
19                 header('Content-type: application/json; charset=utf-8');
20                 $json_info = array("hide" => true);
21                 echo json_encode($json_info);
22                 exit;
23         }
24
25         $keywords = ((x($a->profile,'pub_keywords')) ? $a->profile['pub_keywords'] : '');
26         $keywords = str_replace(array('#',',',' ',',,'),array('',' ',',',','),$keywords);
27         $keywords = explode(',', $keywords);
28
29         /// @TODO This query's result is not being used (see below), maybe old-lost code?
30         $r = q("SELECT `photo` FROM `contact` WHERE `self` AND `uid` = %d",
31                 intval($a->profile['uid']));
32
33         $json_info = array(
34                 'fn' => $a->profile['name'],
35                 'addr' => $a->profile['addr'],
36                 'nick' => $which,
37                 'key' => $a->profile['pubkey'],
38                 'homepage' => App::get_baseurl()."/profile/{$which}",
39                 'comm' => (x($a->profile,'page-flags')) && ($a->profile['page-flags'] == PAGE_COMMUNITY),
40                 'photo' => $r[0]["photo"],
41                 'tags' => $keywords
42         );
43
44         if(is_array($a->profile) AND !$a->profile['hide-friends']) {
45                 $r = q("SELECT `gcontact`.`updated` FROM `contact` INNER JOIN `gcontact` WHERE `gcontact`.`nurl` = `contact`.`nurl` AND `self` AND `uid` = %d LIMIT 1",
46                         intval($a->profile['uid']));
47                 if (dbm::is_result($r))
48                         $json_info["updated"] =  date("c", strtotime($r[0]['updated']));
49
50                 $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 AND `hidden` = 0 AND `archive` = 0
51                                 AND `network` IN ('%s', '%s', '%s', '')",
52                         intval($a->profile['uid']),
53                         dbesc(NETWORK_DFRN),
54                         dbesc(NETWORK_DIASPORA),
55                         dbesc(NETWORK_OSTATUS)
56                 );
57                 if (dbm::is_result($r))
58                         $json_info["contacts"] = intval($r[0]['total']);
59         }
60
61         //These are optional fields.
62         $profile_fields = array('pdesc', 'locality', 'region', 'postal-code', 'country-name', 'gender', 'marital', 'about');
63         foreach($profile_fields as $field) {
64                 if(!empty($a->profile[$field])) {
65                         $json_info["$field"] = $a->profile[$field];
66                 }
67         }
68
69         $dfrn_pages = array('request', 'confirm', 'notify', 'poll');
70         foreach($dfrn_pages as $dfrn) {
71                 $json_info["dfrn-{$dfrn}"] = App::get_baseurl()."/dfrn_{$dfrn}/{$which}";
72         }
73
74         //Output all the JSON!
75         header('Content-type: application/json; charset=utf-8');
76         echo json_encode($json_info);
77         exit;
78
79 }