]> git.mxchange.org Git - friendica.git/blob - mod/noscrape.php
Directory issue 15: Support the "account-type"
[friendica.git] / mod / noscrape.php
1 <?php
2 /**
3  * @file mod/noscrape.php
4  */
5
6 use Friendica\App;
7 use Friendica\Core\Protocol;
8 use Friendica\Core\System;
9 use Friendica\Database\DBA;
10 use Friendica\Model\Contact;
11 use Friendica\Model\Profile;
12
13 function noscrape_init(App $a)
14 {
15         if ($a->argc > 1) {
16                 $which = $a->argv[1];
17         } else {
18                 killme();
19         }
20
21         $profile = 0;
22         if ((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) {
23                 $which = $a->user['nickname'];
24                 $profile = $a->argv[1];
25         }
26
27         Profile::load($a, $which, $profile);
28
29         $json_info = [
30                 'addr'         => $a->profile['addr'],
31                 'nick'         => $which,
32                 'guid'         => $a->profile['guid'],
33                 'key'          => $a->profile['pubkey'],
34                 'homepage'     => System::baseUrl()."/profile/{$which}",
35                 'comm'         => ($a->profile['account-type'] == Contact::ACCOUNT_TYPE_COMMUNITY),
36                 'account-type' => $a->profile['account-type'],
37         ];
38
39         if (!$a->profile['net-publish'] || $a->profile['hidewall']) {
40                 header('Content-type: application/json; charset=utf-8');
41                 $json_info["hide"] = true;
42                 echo json_encode($json_info);
43                 exit;
44         }
45
46         $keywords = ((x($a->profile, 'pub_keywords')) ? $a->profile['pub_keywords'] : '');
47         $keywords = str_replace(['#',',',' ',',,'], ['',' ',',',','], $keywords);
48         $keywords = explode(',', $keywords);
49
50         $contactPhoto = DBA::selectFirst('contact', ['photo'], ['self' => true, 'uid' => $a->profile['uid']]);
51
52         $json_info['fn'] = $a->profile['name'];
53         $json_info['photo'] = $contactPhoto["photo"];
54         $json_info['tags'] = $keywords;
55
56         if (is_array($a->profile) && !$a->profile['hide-friends']) {
57                 /// @todo What should this value tell us?
58                 $r = q("SELECT `gcontact`.`updated` FROM `contact` INNER JOIN `gcontact` WHERE `gcontact`.`nurl` = `contact`.`nurl` AND `self` AND `uid` = %d LIMIT 1",
59                         intval($a->profile['uid']));
60                 if (DBA::isResult($r)) {
61                         $json_info["updated"] =  date("c", strtotime($r[0]['updated']));
62                 }
63
64                 $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
65                                 AND `network` IN ('%s', '%s', '%s', '')",
66                         intval($a->profile['uid']),
67                         DBA::escape(Protocol::DFRN),
68                         DBA::escape(Protocol::DIASPORA),
69                         DBA::escape(Protocol::OSTATUS)
70                 );
71                 if (DBA::isResult($r)) {
72                         $json_info["contacts"] = intval($r[0]['total']);
73                 }
74         }
75
76         // We display the last activity (post or login), reduced to year and week number
77         $last_active = 0;
78         $condition = ['uid' => $a->profile['uid'], 'self' => true];
79         $contact = DBA::selectFirst('contact', ['last-item'], $condition);
80         if (DBA::isResult($contact)) {
81                 $last_active = strtotime($contact['last-item']);
82         }
83
84         $condition = ['uid' => $a->profile['uid']];
85         $user = DBA::selectFirst('user', ['login_date'], $condition);
86         if (DBA::isResult($user)) {
87                 if ($last_active < strtotime($user['login_date'])) {
88                         $last_active = strtotime($user['login_date']);
89                 }
90         }
91         $json_info["last-activity"] = date("o-W", $last_active);
92
93         //These are optional fields.
94         $profile_fields = ['pdesc', 'locality', 'region', 'postal-code', 'country-name', 'gender', 'marital', 'about'];
95         foreach ($profile_fields as $field) {
96                 if (!empty($a->profile[$field])) {
97                         $json_info["$field"] = $a->profile[$field];
98                 }
99         }
100
101         $dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
102         foreach ($dfrn_pages as $dfrn) {
103                 $json_info["dfrn-{$dfrn}"] = System::baseUrl()."/dfrn_{$dfrn}/{$which}";
104         }
105
106         //Output all the JSON!
107         header('Content-type: application/json; charset=utf-8');
108         echo json_encode($json_info);
109         exit;
110 }