]> git.mxchange.org Git - friendica.git/blob - src/Module/NoScrape.php
Merge branch '2020.06-rc' into stable
[friendica.git] / src / Module / NoScrape.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module;
23
24 use Friendica\BaseModule;
25 use Friendica\Core\Protocol;
26 use Friendica\Core\System;
27 use Friendica\Database\DBA;
28 use Friendica\DI;
29 use Friendica\Model\GContact;
30 use Friendica\Model\Profile;
31 use Friendica\Model\User;
32
33 /**
34  * Endpoint for getting current user infos
35  *
36  * @see GContact::updateFromNoScrape() for usage
37  */
38 class NoScrape extends BaseModule
39 {
40         public static function rawContent(array $parameters = [])
41         {
42                 $a = DI::app();
43
44                 if (isset($parameters['nick'])) {
45                         // Get infos about a specific nick (public)
46                         $which = $parameters['nick'];
47                 } elseif (local_user() && isset($parameters['profile']) && DI::args()->get(2) == 'view') {
48                         // view infos about a known profile (needs a login)
49                         $which = $a->user['nickname'];
50                 } else {
51                         System::jsonError(403, 'Authentication required');
52                 }
53
54                 Profile::load($a, $which);
55
56                 if (empty($a->profile['uid'])) {
57                         System::jsonError(404, 'Profile not found');
58                 }
59
60                 $json_info = [
61                         'addr'         => $a->profile['addr'],
62                         'nick'         => $which,
63                         'guid'         => $a->profile['guid'],
64                         'key'          => $a->profile['pubkey'],
65                         'homepage'     => DI::baseUrl() . "/profile/{$which}",
66                         'comm'         => ($a->profile['account-type'] == User::ACCOUNT_TYPE_COMMUNITY),
67                         'account-type' => $a->profile['account-type'],
68                 ];
69
70                 $dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
71                 foreach ($dfrn_pages as $dfrn) {
72                         $json_info["dfrn-{$dfrn}"] = DI::baseUrl() . "/dfrn_{$dfrn}/{$which}";
73                 }
74
75                 if (!$a->profile['net-publish']) {
76                         $json_info['hide'] = true;
77                         System::jsonExit($json_info);
78                 }
79
80                 $keywords = $a->profile['pub_keywords'] ?? '';
81                 $keywords = str_replace(['#', ',', ' ', ',,'], ['', ' ', ',', ','], $keywords);
82                 $keywords = explode(',', $keywords);
83
84                 $contactPhoto = DBA::selectFirst('contact', ['photo'], ['self' => true, 'uid' => $a->profile['uid']]);
85
86                 $json_info['fn']       = $a->profile['name'];
87                 $json_info['photo']    = $contactPhoto["photo"];
88                 $json_info['tags']     = $keywords;
89                 $json_info['language'] = $a->profile['language'];
90
91                 if (!empty($a->profile['last-item'])) {
92                         $json_info['updated'] = date("c", strtotime($a->profile['last-item']));
93                 }
94
95                 if (!($a->profile['hide-friends'] ?? false)) {
96                         $json_info['contacts'] = DBA::count('contact',
97                                 [
98                                         'uid'     => $a->profile['uid'],
99                                         'self'    => 0,
100                                         'blocked' => 0,
101                                         'pending' => 0,
102                                         'hidden'  => 0,
103                                         'archive' => 0,
104                                         'network' => [Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS]
105                                 ]);
106                 }
107
108                 // We display the last activity (post or login), reduced to year and week number
109                 $last_active = 0;
110                 $condition   = ['uid' => $a->profile['uid'], 'self' => true];
111                 $contact     = DBA::selectFirst('contact', ['last-item'], $condition);
112                 if (DBA::isResult($contact)) {
113                         $last_active = strtotime($contact['last-item']);
114                 }
115
116                 $condition = ['uid' => $a->profile['uid']];
117                 $user      = DBA::selectFirst('user', ['login_date'], $condition);
118                 if (DBA::isResult($user)) {
119                         if ($last_active < strtotime($user['login_date'])) {
120                                 $last_active = strtotime($user['login_date']);
121                         }
122                 }
123                 $json_info['last-activity'] = date('o-W', $last_active);
124
125                 //These are optional fields.
126                 $profile_fields = ['about', 'locality', 'region', 'postal-code', 'country-name'];
127                 foreach ($profile_fields as $field) {
128                         if (!empty($a->profile[$field])) {
129                                 $json_info["$field"] = $a->profile[$field];
130                         }
131                 }
132
133                 System::jsonExit($json_info);
134         }
135 }