]> git.mxchange.org Git - friendica.git/blob - mod/noscrape.php
Merge remote-tracking branch 'upstream/develop' into 1502-altpager-default
[friendica.git] / mod / noscrape.php
1 <?php
2
3 function noscrape_init(&$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'])
19                 killme();
20
21         $keywords = ((x($a->profile,'pub_keywords')) ? $a->profile['pub_keywords'] : '');
22         $keywords = str_replace(array('#',',',' ',',,'),array('',' ',',',','),$keywords);
23         $keywords = explode(',', $keywords);
24
25         $json_info = array(
26                 'fn' => $a->profile['name'],
27                 'key' => $a->profile['pubkey'],
28                 'homepage' => $a->get_baseurl()."/profile/{$which}",
29                 'comm' => (x($a->profile,'page-flags')) && ($a->profile['page-flags'] == PAGE_COMMUNITY),
30                 'photo' => $a->profile['photo'],
31                 'tags' => $keywords
32         );
33
34         //These are optional fields.
35         $profile_fields = array('pdesc', 'locality', 'region', 'postal-code', 'country-name', 'gender', 'marital', 'about');
36         foreach($profile_fields as $field)
37                 if(!empty($a->profile[$field])) $json_info["$field"] = $a->profile[$field];
38
39         $dfrn_pages = array('request', 'confirm', 'notify', 'poll');
40         foreach($dfrn_pages as $dfrn)
41                 $json_info["dfrn-{$dfrn}"] = $a->get_baseurl()."/dfrn_{$dfrn}/{$which}";
42
43         //Output all the JSON!
44         header('Content-type: application/json; charset=utf-8');
45         echo json_encode($json_info);
46         exit;
47
48 }