3 * @copyright Copyright (C) 2010-2022, the Friendica project
5 * @license GNU AGPL version 3 or any later version
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.
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.
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/>.
22 namespace Friendica\Module;
24 use Friendica\BaseModule;
25 use Friendica\Core\System;
26 use Friendica\Database\DBA;
28 use Friendica\Model\APContact;
29 use Friendica\Model\User;
32 * Endpoint for getting current user infos
34 * @see Contact::updateFromNoScrape() for usage
36 class NoScrape extends BaseModule
38 protected function rawContent(array $request = [])
42 if (isset($this->parameters['nick'])) {
43 // Get infos about a specific nick (public)
44 $which = $this->parameters['nick'];
45 } elseif (DI::userSession()->getLocalUserId() && isset($this->parameters['profile']) && DI::args()->get(2) == 'view') {
46 // view infos about a known profile (needs a login)
47 $which = $a->getLoggedInUserNickname();
49 System::jsonError(403, 'Authentication required');
52 $owner = User::getOwnerDataByNick($which);
54 if (empty($owner['uid'])) {
55 System::jsonError(404, 'Profile not found');
59 'addr' => $owner['addr'],
61 'guid' => $owner['guid'],
62 'key' => $owner['upubkey'],
63 'homepage' => DI::baseUrl() . '/profile/' . $which,
64 'comm' => ($owner['account-type'] == User::ACCOUNT_TYPE_COMMUNITY),
65 'account-type' => $owner['account-type'],
68 $dfrn_pages = ['request', 'confirm', 'notify', 'poll'];
69 foreach ($dfrn_pages as $dfrn) {
70 $json_info["dfrn-{$dfrn}"] = DI::baseUrl() . "/dfrn_{$dfrn}/{$which}";
73 if (!$owner['net-publish']) {
74 $json_info['hide'] = true;
75 System::jsonExit($json_info);
78 $keywords = $owner['pub_keywords'] ?? '';
79 $keywords = str_replace(['#', ',', ' ', ',,'], ['', ' ', ',', ','], $keywords);
80 $keywords = explode(',', $keywords);
82 $json_info['fn'] = $owner['name'];
83 $json_info['photo'] = User::getAvatarUrl($owner);
84 $json_info['tags'] = $keywords;
85 $json_info['language'] = $owner['language'];
87 if (!empty($owner['last-item'])) {
88 $json_info['updated'] = date("c", strtotime($owner['last-item']));
91 if (!($owner['hide-friends'] ?? false)) {
92 $apcontact = APContact::getByURL($owner['url']);
93 $json_info['contacts'] = max($apcontact['following_count'], $apcontact['followers_count']);
96 // We display the last activity (post or login), reduced to year and week number
98 $condition = ['uid' => $owner['uid'], 'self' => true];
99 $contact = DBA::selectFirst('contact', ['last-item'], $condition);
100 if (DBA::isResult($contact)) {
101 $last_active = strtotime($contact['last-item']);
104 $condition = ['uid' => $owner['uid']];
105 $user = DBA::selectFirst('user', ['login_date'], $condition);
106 if (DBA::isResult($user)) {
107 if ($last_active < strtotime($user['login_date'])) {
108 $last_active = strtotime($user['login_date']);
111 $json_info['last-activity'] = date('o-W', $last_active);
113 //These are optional fields.
114 $profile_fields = ['about', 'locality', 'region', 'postal-code', 'country-name', 'xmpp', 'matrix'];
115 foreach ($profile_fields as $field) {
116 if (!empty($owner[$field])) {
117 $json_info[$field] = $owner[$field];
121 System::jsonExit($json_info);