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\Model;
24 use DivineOmega\DOFileCachePSR6\CacheItemPool;
25 use DivineOmega\PasswordExposed;
28 use Friendica\Content\Pager;
29 use Friendica\Core\Hook;
30 use Friendica\Core\L10n;
31 use Friendica\Core\Logger;
32 use Friendica\Core\Protocol;
33 use Friendica\Core\Search;
34 use Friendica\Core\System;
35 use Friendica\Core\Worker;
36 use Friendica\Database\DBA;
38 use Friendica\Network\HTTPClient\Client\HttpClientAccept;
39 use Friendica\Security\TwoFactor\Model\AppSpecificPassword;
40 use Friendica\Network\HTTPException;
41 use Friendica\Object\Image;
42 use Friendica\Util\Crypto;
43 use Friendica\Util\DateTimeFormat;
44 use Friendica\Util\Images;
45 use Friendica\Util\Network;
46 use Friendica\Util\Proxy;
47 use Friendica\Util\Strings;
48 use Friendica\Worker\Delivery;
53 * This class handles User related functions
60 * PAGE_FLAGS_NORMAL is a typical personal profile account
61 * PAGE_FLAGS_SOAPBOX automatically approves all friend requests as Contact::SHARING, (readonly)
62 * PAGE_FLAGS_COMMUNITY automatically approves all friend requests as Contact::SHARING, but with
63 * write access to wall and comments (no email and not included in page owner's ACL lists)
64 * PAGE_FLAGS_FREELOVE automatically approves all friend requests as full friends (Contact::FRIEND).
68 const PAGE_FLAGS_NORMAL = 0;
69 const PAGE_FLAGS_SOAPBOX = 1;
70 const PAGE_FLAGS_COMMUNITY = 2;
71 const PAGE_FLAGS_FREELOVE = 3;
72 const PAGE_FLAGS_BLOG = 4;
73 const PAGE_FLAGS_PRVGROUP = 5;
81 * ACCOUNT_TYPE_PERSON - the account belongs to a person
82 * Associated page types: PAGE_FLAGS_NORMAL, PAGE_FLAGS_SOAPBOX, PAGE_FLAGS_FREELOVE
84 * ACCOUNT_TYPE_ORGANISATION - the account belongs to an organisation
85 * Associated page type: PAGE_FLAGS_SOAPBOX
87 * ACCOUNT_TYPE_NEWS - the account is a news reflector
88 * Associated page type: PAGE_FLAGS_SOAPBOX
90 * ACCOUNT_TYPE_COMMUNITY - the account is community forum
91 * Associated page types: PAGE_COMMUNITY, PAGE_FLAGS_PRVGROUP
93 * ACCOUNT_TYPE_RELAY - the account is a relay
94 * This will only be assigned to contacts, not to user accounts
97 const ACCOUNT_TYPE_PERSON = 0;
98 const ACCOUNT_TYPE_ORGANISATION = 1;
99 const ACCOUNT_TYPE_NEWS = 2;
100 const ACCOUNT_TYPE_COMMUNITY = 3;
101 const ACCOUNT_TYPE_RELAY = 4;
102 const ACCOUNT_TYPE_DELETED = 127;
107 private static $owner;
110 * Returns the numeric account type by their string
112 * @param string $accounttype as string constant
113 * @return int|null Numeric account type - or null when not set
115 public static function getAccountTypeByString(string $accounttype)
117 switch ($accounttype) {
119 return User::ACCOUNT_TYPE_PERSON;
122 return User::ACCOUNT_TYPE_ORGANISATION;
125 return User::ACCOUNT_TYPE_NEWS;
128 return User::ACCOUNT_TYPE_COMMUNITY;
135 * Fetch the system account
137 * @return array system account
139 public static function getSystemAccount(): array
141 $system = Contact::selectFirst([], ['self' => true, 'uid' => 0]);
142 if (!DBA::isResult($system)) {
143 self::createSystemAccount();
144 $system = Contact::selectFirst([], ['self' => true, 'uid' => 0]);
145 if (!DBA::isResult($system)) {
150 $system['sprvkey'] = $system['uprvkey'] = $system['prvkey'];
151 $system['spubkey'] = $system['upubkey'] = $system['pubkey'];
152 $system['nickname'] = $system['nick'];
153 $system['page-flags'] = User::PAGE_FLAGS_SOAPBOX;
154 $system['account-type'] = $system['contact-type'];
155 $system['guid'] = '';
156 $system['picdate'] = '';
157 $system['theme'] = '';
158 $system['publish'] = false;
159 $system['net-publish'] = false;
160 $system['hide-friends'] = true;
161 $system['prv_keywords'] = '';
162 $system['pub_keywords'] = '';
163 $system['address'] = '';
164 $system['locality'] = '';
165 $system['region'] = '';
166 $system['postal-code'] = '';
167 $system['country-name'] = '';
168 $system['homepage'] = DI::baseUrl()->get();
169 $system['dob'] = '0000-00-00';
171 // Ensure that the user contains data
172 $user = DBA::selectFirst('user', ['prvkey', 'guid'], ['uid' => 0]);
173 if (empty($user['prvkey']) || empty($user['guid'])) {
175 'username' => $system['name'],
176 'nickname' => $system['nick'],
177 'register_date' => $system['created'],
178 'pubkey' => $system['pubkey'],
179 'prvkey' => $system['prvkey'],
180 'spubkey' => $system['spubkey'],
181 'sprvkey' => $system['sprvkey'],
182 'guid' => System::createUUID(),
184 'page-flags' => User::PAGE_FLAGS_SOAPBOX,
185 'account-type' => User::ACCOUNT_TYPE_RELAY,
188 DBA::update('user', $fields, ['uid' => 0]);
190 $system['guid'] = $fields['guid'];
192 $system['guid'] = $user['guid'];
199 * Create the system account
203 private static function createSystemAccount()
205 $system_actor_name = self::getActorName();
206 if (empty($system_actor_name)) {
210 $keys = Crypto::newKeypair(4096);
211 if ($keys === false) {
212 throw new Exception(DI::l10n()->t('SERIOUS ERROR: Generation of security keys failed.'));
217 'created' => DateTimeFormat::utcNow(),
219 'network' => Protocol::ACTIVITYPUB,
220 'name' => 'System Account',
221 'addr' => $system_actor_name . '@' . DI::baseUrl()->getHostname(),
222 'nick' => $system_actor_name,
223 'url' => DI::baseUrl() . '/friendica',
224 'pubkey' => $keys['pubkey'],
225 'prvkey' => $keys['prvkey'],
228 'contact-type' => Contact::TYPE_RELAY, // In AP this is translated to 'Application'
229 'name-date' => DateTimeFormat::utcNow(),
230 'uri-date' => DateTimeFormat::utcNow(),
231 'avatar-date' => DateTimeFormat::utcNow(),
233 'baseurl' => DI::baseUrl(),
236 $system['avatar'] = $system['photo'] = Contact::getDefaultAvatar($system, Proxy::SIZE_SMALL);
237 $system['thumb'] = Contact::getDefaultAvatar($system, Proxy::SIZE_THUMB);
238 $system['micro'] = Contact::getDefaultAvatar($system, Proxy::SIZE_MICRO);
239 $system['nurl'] = Strings::normaliseLink($system['url']);
240 $system['gsid'] = GServer::getID($system['baseurl']);
242 Contact::insert($system);
246 * Detect a usable actor name
248 * @return string actor account name
250 public static function getActorName(): string
252 $system_actor_name = DI::config()->get('system', 'actor_name');
253 if (!empty($system_actor_name)) {
254 $self = Contact::selectFirst(['nick'], ['uid' => 0, 'self' => true]);
255 if (!empty($self['nick'])) {
256 if ($self['nick'] != $system_actor_name) {
257 // Reset the actor name to the already used name
258 DI::config()->set('system', 'actor_name', $self['nick']);
259 $system_actor_name = $self['nick'];
262 return $system_actor_name;
265 // List of possible actor names
266 $possible_accounts = ['friendica', 'actor', 'system', 'internal'];
267 foreach ($possible_accounts as $name) {
268 if (!DBA::exists('user', ['nickname' => $name, 'account_removed' => false, 'expire' => false]) &&
269 !DBA::exists('userd', ['username' => $name])) {
270 DI::config()->set('system', 'actor_name', $name);
278 * Returns true if a user record exists with the provided id
285 public static function exists(int $uid): bool
287 return DBA::exists('user', ['uid' => $uid]);
291 * @param integer $uid
292 * @param array $fields
293 * @return array|boolean User record if it exists, false otherwise
296 public static function getById(int $uid, array $fields = [])
298 return !empty($uid) ? DBA::selectFirst('user', $fields, ['uid' => $uid]) : [];
302 * Returns a user record based on it's GUID
304 * @param string $guid The guid of the user
305 * @param array $fields The fields to retrieve
306 * @param bool $active True, if only active records are searched
308 * @return array|boolean User record if it exists, false otherwise
311 public static function getByGuid(string $guid, array $fields = [], bool $active = true)
314 $cond = ['guid' => $guid, 'account_expired' => false, 'account_removed' => false];
316 $cond = ['guid' => $guid];
319 return DBA::selectFirst('user', $fields, $cond);
323 * @param string $nickname
324 * @param array $fields
325 * @return array|boolean User record if it exists, false otherwise
328 public static function getByNickname(string $nickname, array $fields = [])
330 return DBA::selectFirst('user', $fields, ['nickname' => $nickname]);
334 * Returns the user id of a given profile URL
338 * @return integer user id
341 public static function getIdForURL(string $url): int
343 // Avoid database queries when the local node hostname isn't even part of the url.
344 if (!Contact::isLocal($url)) {
348 $self = Contact::selectFirst(['uid'], ['self' => true, 'nurl' => Strings::normaliseLink($url)]);
349 if (!empty($self['uid'])) {
353 $self = Contact::selectFirst(['uid'], ['self' => true, 'addr' => $url]);
354 if (!empty($self['uid'])) {
358 $self = Contact::selectFirst(['uid'], ['self' => true, 'alias' => [$url, Strings::normaliseLink($url)]]);
359 if (!empty($self['uid'])) {
367 * Get a user based on its email
369 * @param string $email
370 * @param array $fields
371 * @return array|boolean User record if it exists, false otherwise
374 public static function getByEmail(string $email, array $fields = [])
376 return DBA::selectFirst('user', $fields, ['email' => $email]);
380 * Fetch the user array of the administrator. The first one if there are several.
382 * @param array $fields
385 public static function getFirstAdmin(array $fields = []) : array
387 if (!empty(DI::config()->get('config', 'admin_nickname'))) {
388 return self::getByNickname(DI::config()->get('config', 'admin_nickname'), $fields);
389 } elseif (!empty(DI::config()->get('config', 'admin_email'))) {
390 $adminList = explode(',', str_replace(' ', '', DI::config()->get('config', 'admin_email')));
391 return self::getByEmail($adminList[0], $fields);
398 * Get owner data by user id
401 * @param boolean $repairMissing Repair the owner data if it's missing
402 * @return boolean|array
405 public static function getOwnerDataById(int $uid, bool $repairMissing = true)
408 return self::getSystemAccount();
411 if (!empty(self::$owner[$uid])) {
412 return self::$owner[$uid];
415 $owner = DBA::selectFirst('owner-view', [], ['uid' => $uid]);
416 if (!DBA::isResult($owner)) {
417 if (!self::exists($uid) || !$repairMissing) {
420 if (!DBA::exists('profile', ['uid' => $uid])) {
421 DBA::insert('profile', ['uid' => $uid]);
423 if (!DBA::exists('contact', ['uid' => $uid, 'self' => true])) {
424 Contact::createSelfFromUserId($uid);
426 $owner = self::getOwnerDataById($uid, false);
429 if (empty($owner['nickname'])) {
433 if (!$repairMissing || $owner['account_expired']) {
437 // Check if the returned data is valid, otherwise fix it. See issue #6122
439 // Check for correct url and normalised nurl
440 $url = DI::baseUrl() . '/profile/' . $owner['nickname'];
441 $repair = empty($owner['network']) || ($owner['url'] != $url) || ($owner['nurl'] != Strings::normaliseLink($owner['url']));
444 // Check if "addr" is present and correct
445 $addr = $owner['nickname'] . '@' . substr(DI::baseUrl(), strpos(DI::baseUrl(), '://') + 3);
446 $repair = ($addr != $owner['addr']) || empty($owner['prvkey']) || empty($owner['pubkey']);
450 // Check if the avatar field is filled and the photo directs to the correct path
451 $avatar = Photo::selectFirst(['resource-id'], ['uid' => $uid, 'profile' => true]);
452 if (DBA::isResult($avatar)) {
453 $repair = empty($owner['avatar']) || !strpos($owner['photo'], $avatar['resource-id']);
458 Contact::updateSelfFromUserID($uid);
459 // Return the corrected data and avoid a loop
460 $owner = self::getOwnerDataById($uid, false);
463 self::$owner[$uid] = $owner;
468 * Get owner data by nick name
471 * @return boolean|array
474 public static function getOwnerDataByNick(string $nick)
476 $user = DBA::selectFirst('user', ['uid'], ['nickname' => $nick]);
478 if (!DBA::isResult($user)) {
482 return self::getOwnerDataById($user['uid']);
486 * Returns the default group for a given user and network
488 * @param int $uid User id
490 * @return int group id
493 public static function getDefaultGroup(int $uid): int
495 $user = DBA::selectFirst('user', ['def_gid'], ['uid' => $uid]);
496 if (DBA::isResult($user)) {
497 $default_group = $user["def_gid"];
502 return $default_group;
506 * Authenticate a user with a clear text password
508 * Returns the user id associated with a successful password authentication
510 * @param mixed $user_info
511 * @param string $password
512 * @param bool $third_party
513 * @return int User Id if authentication is successful
514 * @throws HTTPException\ForbiddenException
515 * @throws HTTPException\NotFoundException
517 public static function getIdFromPasswordAuthentication($user_info, string $password, bool $third_party = false): int
519 // Addons registered with the "authenticate" hook may create the user on the
520 // fly. `getAuthenticationInfo` will fail if the user doesn't exist yet. If
521 // the user doesn't exist, we should give the addons a chance to create the
522 // user in our database, if applicable, before re-throwing the exception if
525 $user = self::getAuthenticationInfo($user_info);
526 } catch (Exception $e) {
527 $username = (is_string($user_info) ? $user_info : $user_info['nickname'] ?? '');
529 // Addons can create users, and since this 'catch' branch should only
530 // execute if getAuthenticationInfo can't find an existing user, that's
531 // exactly what will happen here. Creating a numeric username would create
532 // abiguity with user IDs, possibly opening up an attack vector.
533 // So let's be very careful about that.
534 if (empty($username) || is_numeric($username)) {
538 return self::getIdFromAuthenticateHooks($username, $password);
541 if ($third_party && DI::pConfig()->get($user['uid'], '2fa', 'verified')) {
542 // Third-party apps can't verify two-factor authentication, we use app-specific passwords instead
543 if (AppSpecificPassword::authenticateUser($user['uid'], $password)) {
546 } elseif (strpos($user['password'], '$') === false) {
547 //Legacy hash that has not been replaced by a new hash yet
548 if (self::hashPasswordLegacy($password) === $user['password']) {
549 self::updatePasswordHashed($user['uid'], self::hashPassword($password));
553 } elseif (!empty($user['legacy_password'])) {
554 //Legacy hash that has been double-hashed and not replaced by a new hash yet
555 //Warning: `legacy_password` is not necessary in sync with the content of `password`
556 if (password_verify(self::hashPasswordLegacy($password), $user['password'])) {
557 self::updatePasswordHashed($user['uid'], self::hashPassword($password));
561 } elseif (password_verify($password, $user['password'])) {
563 if (password_needs_rehash($user['password'], PASSWORD_DEFAULT)) {
564 self::updatePasswordHashed($user['uid'], self::hashPassword($password));
569 return self::getIdFromAuthenticateHooks($user['nickname'], $password); // throws
572 throw new HTTPException\ForbiddenException(DI::l10n()->t('Login failed'));
576 * Try to obtain a user ID via "authenticate" hook addons
578 * Returns the user id associated with a successful password authentication
580 * @param string $username
581 * @param string $password
582 * @return int User Id if authentication is successful
583 * @throws HTTPException\ForbiddenException
585 public static function getIdFromAuthenticateHooks(string $username, string $password): int
588 'username' => $username,
589 'password' => $password,
590 'authenticated' => 0,
591 'user_record' => null
595 * An addon indicates successful login by setting 'authenticated' to non-zero value and returning a user record
596 * Addons should never set 'authenticated' except to indicate success - as hooks may be chained
597 * and later addons should not interfere with an earlier one that succeeded.
599 Hook::callAll('authenticate', $addon_auth);
601 if ($addon_auth['authenticated'] && $addon_auth['user_record']) {
602 return $addon_auth['user_record']['uid'];
605 throw new HTTPException\ForbiddenException(DI::l10n()->t('Login failed'));
609 * Returns authentication info from various parameters types
611 * User info can be any of the following:
614 * - User email or username or nickname
615 * - User array with at least the uid and the hashed password
617 * @param mixed $user_info
618 * @return array|null Null if not found/determined
619 * @throws HTTPException\NotFoundException
621 public static function getAuthenticationInfo($user_info)
625 if (is_object($user_info) || is_array($user_info)) {
626 if (is_object($user_info)) {
627 $user = (array) $user_info;
634 || !isset($user['password'])
635 || !isset($user['legacy_password'])
637 throw new Exception(DI::l10n()->t('Not enough information to authenticate'));
639 } elseif (is_int($user_info) || is_string($user_info)) {
640 if (is_int($user_info)) {
641 $user = DBA::selectFirst(
643 ['uid', 'nickname', 'password', 'legacy_password'],
647 'account_expired' => 0,
648 'account_removed' => 0,
653 $fields = ['uid', 'nickname', 'password', 'legacy_password'];
655 "(`email` = ? OR `username` = ? OR `nickname` = ?)
656 AND NOT `blocked` AND NOT `account_expired` AND NOT `account_removed` AND `verified`",
657 $user_info, $user_info, $user_info
659 $user = DBA::selectFirst('user', $fields, $condition);
662 if (!DBA::isResult($user)) {
663 throw new HTTPException\NotFoundException(DI::l10n()->t('User not found'));
671 * Generates a human-readable random password
676 public static function generateNewPassword(): string
678 return ucfirst(Strings::getRandomName(8)) . random_int(1000, 9999);
682 * Checks if the provided plaintext password has been exposed or not
684 * @param string $password
688 public static function isPasswordExposed(string $password): bool
690 $cache = new CacheItemPool();
691 $cache->changeConfig([
692 'cacheDirectory' => System::getTempPath() . '/password-exposed-cache/',
696 $passwordExposedChecker = new PasswordExposed\PasswordExposedChecker(null, $cache);
698 return $passwordExposedChecker->passwordExposed($password) === PasswordExposed\PasswordStatus::EXPOSED;
699 } catch (Exception $e) {
700 Logger::error('Password Exposed Exception: ' . $e->getMessage(), [
701 'code' => $e->getCode(),
702 'file' => $e->getFile(),
703 'line' => $e->getLine(),
704 'trace' => $e->getTraceAsString()
712 * Legacy hashing function, kept for password migration purposes
714 * @param string $password
717 private static function hashPasswordLegacy(string $password): string
719 return hash('whirlpool', $password);
723 * Global user password hashing function
725 * @param string $password
729 public static function hashPassword(string $password): string
731 if (!trim($password)) {
732 throw new Exception(DI::l10n()->t('Password can\'t be empty'));
735 return password_hash($password, PASSWORD_DEFAULT);
739 * Updates a user row with a new plaintext password
742 * @param string $password
746 public static function updatePassword(int $uid, string $password): bool
748 $password = trim($password);
750 if (empty($password)) {
751 throw new Exception(DI::l10n()->t('Empty passwords are not allowed.'));
754 if (!DI::config()->get('system', 'disable_password_exposed', false) && self::isPasswordExposed($password)) {
755 throw new Exception(DI::l10n()->t('The new password has been exposed in a public data dump, please choose another.'));
758 $allowed_characters = '!"#$%&\'()*+,-./;<=>?@[\]^_`{|}~';
760 if (!preg_match('/^[a-z0-9' . preg_quote($allowed_characters, '/') . ']+$/i', $password)) {
761 throw new Exception(DI::l10n()->t('The password can\'t contain accentuated letters, white spaces or colons (:)'));
764 return self::updatePasswordHashed($uid, self::hashPassword($password));
768 * Updates a user row with a new hashed password.
769 * Empties the password reset token field just in case.
772 * @param string $pasword_hashed
776 private static function updatePasswordHashed(int $uid, string $pasword_hashed): bool
779 'password' => $pasword_hashed,
781 'pwdreset_time' => null,
782 'legacy_password' => false
784 return DBA::update('user', $fields, ['uid' => $uid]);
788 * Checks if a nickname is in the list of the forbidden nicknames
790 * Check if a nickname is forbidden from registration on the node by the
791 * admin. Forbidden nicknames (e.g. role namess) can be configured in the
794 * @param string $nickname The nickname that should be checked
795 * @return boolean True is the nickname is blocked on the node
797 public static function isNicknameBlocked(string $nickname): bool
799 $forbidden_nicknames = DI::config()->get('system', 'forbidden_nicknames', '');
800 if (!empty($forbidden_nicknames)) {
801 $forbidden = explode(',', $forbidden_nicknames);
802 $forbidden = array_map('trim', $forbidden);
807 // Add the name of the internal actor to the "forbidden" list
808 $actor_name = self::getActorName();
809 if (!empty($actor_name)) {
810 $forbidden[] = $actor_name;
813 if (empty($forbidden)) {
817 // check if the nickname is in the list of blocked nicknames
818 if (in_array(strtolower($nickname), $forbidden)) {
827 * Get avatar link for given user
830 * @param string $size One of the Proxy::SIZE_* constants
831 * @return string avatar link
834 public static function getAvatarUrl(array $user, string $size = ''): string
836 if (empty($user['nickname'])) {
837 DI::logger()->warning('Missing user nickname key', ['trace' => System::callstack(20)]);
840 $url = DI::baseUrl() . '/photo/';
843 case Proxy::SIZE_MICRO:
847 case Proxy::SIZE_THUMB:
860 $photo = Photo::selectFirst(['type', 'created', 'edited', 'updated'], ["scale" => $scale, 'uid' => $user['uid'], 'profile' => true]);
861 if (!empty($photo)) {
862 $updated = max($photo['created'], $photo['edited'], $photo['updated']);
863 $mimetype = $photo['type'];
866 return $url . $user['nickname'] . Images::getExtensionByMimeType($mimetype) . ($updated ? '?ts=' . strtotime($updated) : '');
870 * Get banner link for given user
873 * @return string banner link
876 public static function getBannerUrl(array $user): string
878 if (empty($user['nickname'])) {
879 DI::logger()->warning('Missing user nickname key', ['trace' => System::callstack(20)]);
882 $url = DI::baseUrl() . '/photo/banner/';
887 $photo = Photo::selectFirst(['type', 'created', 'edited', 'updated'], ["scale" => 3, 'uid' => $user['uid'], 'photo-type' => Photo::USER_BANNER]);
888 if (!empty($photo)) {
889 $updated = max($photo['created'], $photo['edited'], $photo['updated']);
890 $mimetype = $photo['type'];
892 // Only for the RC phase: Don't return an image link for the default picture
896 return $url . $user['nickname'] . Images::getExtensionByMimeType($mimetype) . ($updated ? '?ts=' . strtotime($updated) : '');
900 * Catch-all user creation function
902 * Creates a user from the provided data array, either form fields or OpenID.
903 * Required: { username, nickname, email } or { openid_url }
905 * Performs the following:
906 * - Sends to the OpenId auth URL (if relevant)
907 * - Creates new key pairs for crypto
908 * - Create self-contact
909 * - Create profile image
913 * @throws ErrorException
914 * @throws HTTPException\InternalServerErrorException
915 * @throws ImagickException
918 public static function create(array $data): array
920 $return = ['user' => null, 'password' => ''];
922 $using_invites = DI::config()->get('system', 'invitation_only');
924 $invite_id = !empty($data['invite_id']) ? trim($data['invite_id']) : '';
925 $username = !empty($data['username']) ? trim($data['username']) : '';
926 $nickname = !empty($data['nickname']) ? trim($data['nickname']) : '';
927 $email = !empty($data['email']) ? trim($data['email']) : '';
928 $openid_url = !empty($data['openid_url']) ? trim($data['openid_url']) : '';
929 $photo = !empty($data['photo']) ? trim($data['photo']) : '';
930 $password = !empty($data['password']) ? trim($data['password']) : '';
931 $password1 = !empty($data['password1']) ? trim($data['password1']) : '';
932 $confirm = !empty($data['confirm']) ? trim($data['confirm']) : '';
933 $blocked = !empty($data['blocked']);
934 $verified = !empty($data['verified']);
935 $language = !empty($data['language']) ? trim($data['language']) : 'en';
937 $netpublish = $publish = !empty($data['profile_publish_reg']);
939 if ($password1 != $confirm) {
940 throw new Exception(DI::l10n()->t('Passwords do not match. Password unchanged.'));
941 } elseif ($password1 != '') {
942 $password = $password1;
945 if ($using_invites) {
947 throw new Exception(DI::l10n()->t('An invitation is required.'));
950 if (!Register::existsByHash($invite_id)) {
951 throw new Exception(DI::l10n()->t('Invitation could not be verified.'));
955 /// @todo Check if this part is really needed. We should have fetched all this data in advance
956 if (empty($username) || empty($email) || empty($nickname)) {
958 if (!Network::isUrlValid($openid_url)) {
959 throw new Exception(DI::l10n()->t('Invalid OpenID url'));
961 $_SESSION['register'] = 1;
962 $_SESSION['openid'] = $openid_url;
964 $openid = new LightOpenID(DI::baseUrl()->getHostname());
965 $openid->identity = $openid_url;
966 $openid->returnUrl = DI::baseUrl() . '/openid';
967 $openid->required = ['namePerson/friendly', 'contact/email', 'namePerson'];
968 $openid->optional = ['namePerson/first', 'media/image/aspect11', 'media/image/default'];
970 $authurl = $openid->authUrl();
971 } catch (Exception $e) {
972 throw new Exception(DI::l10n()->t('We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.') . EOL . EOL . DI::l10n()->t('The error message was:') . $e->getMessage(), 0, $e);
974 System::externalRedirect($authurl);
978 throw new Exception(DI::l10n()->t('Please enter the required information.'));
981 if (!Network::isUrlValid($openid_url)) {
985 // collapse multiple spaces in name
986 $username = preg_replace('/ +/', ' ', $username);
988 $username_min_length = max(1, min(64, intval(DI::config()->get('system', 'username_min_length', 3))));
989 $username_max_length = max(1, min(64, intval(DI::config()->get('system', 'username_max_length', 48))));
991 if ($username_min_length > $username_max_length) {
992 Logger::error(DI::l10n()->t('system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values.', $username_min_length, $username_max_length));
993 $tmp = $username_min_length;
994 $username_min_length = $username_max_length;
995 $username_max_length = $tmp;
998 if (mb_strlen($username) < $username_min_length) {
999 throw new Exception(DI::l10n()->tt('Username should be at least %s character.', 'Username should be at least %s characters.', $username_min_length));
1002 if (mb_strlen($username) > $username_max_length) {
1003 throw new Exception(DI::l10n()->tt('Username should be at most %s character.', 'Username should be at most %s characters.', $username_max_length));
1006 // So now we are just looking for a space in the full name.
1007 $loose_reg = DI::config()->get('system', 'no_regfullname');
1009 $username = mb_convert_case($username, MB_CASE_TITLE, 'UTF-8');
1010 if (strpos($username, ' ') === false) {
1011 throw new Exception(DI::l10n()->t("That doesn't appear to be your full (First Last) name."));
1015 if (!Network::isEmailDomainAllowed($email)) {
1016 throw new Exception(DI::l10n()->t('Your email domain is not among those allowed on this site.'));
1019 if (!filter_var($email, FILTER_VALIDATE_EMAIL) || !Network::isEmailDomainValid($email)) {
1020 throw new Exception(DI::l10n()->t('Not a valid email address.'));
1022 if (self::isNicknameBlocked($nickname)) {
1023 throw new Exception(DI::l10n()->t('The nickname was blocked from registration by the nodes admin.'));
1026 if (DI::config()->get('system', 'block_extended_register', false) && DBA::exists('user', ['email' => $email])) {
1027 throw new Exception(DI::l10n()->t('Cannot use that email.'));
1030 // Disallow somebody creating an account using openid that uses the admin email address,
1031 // since openid bypasses email verification. We'll allow it if there is not yet an admin account.
1032 if (DI::config()->get('config', 'admin_email') && strlen($openid_url)) {
1033 $adminlist = explode(',', str_replace(' ', '', strtolower(DI::config()->get('config', 'admin_email'))));
1034 if (in_array(strtolower($email), $adminlist)) {
1035 throw new Exception(DI::l10n()->t('Cannot use that email.'));
1039 $nickname = $data['nickname'] = strtolower($nickname);
1041 if (!preg_match('/^[a-z0-9][a-z0-9_]*$/', $nickname)) {
1042 throw new Exception(DI::l10n()->t('Your nickname can only contain a-z, 0-9 and _.'));
1045 // Check existing and deleted accounts for this nickname.
1047 DBA::exists('user', ['nickname' => $nickname])
1048 || DBA::exists('userd', ['username' => $nickname])
1050 throw new Exception(DI::l10n()->t('Nickname is already registered. Please choose another.'));
1053 $new_password = strlen($password) ? $password : User::generateNewPassword();
1054 $new_password_encoded = self::hashPassword($new_password);
1056 $return['password'] = $new_password;
1058 $keys = Crypto::newKeypair(4096);
1059 if ($keys === false) {
1060 throw new Exception(DI::l10n()->t('SERIOUS ERROR: Generation of security keys failed.'));
1063 $prvkey = $keys['prvkey'];
1064 $pubkey = $keys['pubkey'];
1066 // Create another keypair for signing/verifying salmon protocol messages.
1067 $sres = Crypto::newKeypair(512);
1068 $sprvkey = $sres['prvkey'];
1069 $spubkey = $sres['pubkey'];
1071 $insert_result = DBA::insert('user', [
1072 'guid' => System::createUUID(),
1073 'username' => $username,
1074 'password' => $new_password_encoded,
1076 'openid' => $openid_url,
1077 'nickname' => $nickname,
1078 'pubkey' => $pubkey,
1079 'prvkey' => $prvkey,
1080 'spubkey' => $spubkey,
1081 'sprvkey' => $sprvkey,
1082 'verified' => $verified,
1083 'blocked' => $blocked,
1084 'language' => $language,
1085 'timezone' => 'UTC',
1086 'register_date' => DateTimeFormat::utcNow(),
1087 'default-location' => ''
1090 if ($insert_result) {
1091 $uid = DBA::lastInsertId();
1092 $user = DBA::selectFirst('user', [], ['uid' => $uid]);
1094 throw new Exception(DI::l10n()->t('An error occurred during registration. Please try again.'));
1098 throw new Exception(DI::l10n()->t('An error occurred during registration. Please try again.'));
1101 // if somebody clicked submit twice very quickly, they could end up with two accounts
1102 // due to race condition. Remove this one.
1103 $user_count = DBA::count('user', ['nickname' => $nickname]);
1104 if ($user_count > 1) {
1105 DBA::delete('user', ['uid' => $uid]);
1107 throw new Exception(DI::l10n()->t('Nickname is already registered. Please choose another.'));
1110 $insert_result = DBA::insert('profile', [
1112 'name' => $username,
1113 'photo' => self::getAvatarUrl($user),
1114 'thumb' => self::getAvatarUrl($user, Proxy::SIZE_THUMB),
1115 'publish' => $publish,
1116 'net-publish' => $netpublish,
1118 if (!$insert_result) {
1119 DBA::delete('user', ['uid' => $uid]);
1121 throw new Exception(DI::l10n()->t('An error occurred creating your default profile. Please try again.'));
1124 // Create the self contact
1125 if (!Contact::createSelfFromUserId($uid)) {
1126 DBA::delete('user', ['uid' => $uid]);
1128 throw new Exception(DI::l10n()->t('An error occurred creating your self contact. Please try again.'));
1131 // Create a group with no members. This allows somebody to use it
1132 // right away as a default group for new contacts.
1133 $def_gid = Group::create($uid, DI::l10n()->t('Friends'));
1135 DBA::delete('user', ['uid' => $uid]);
1137 throw new Exception(DI::l10n()->t('An error occurred creating your default contact group. Please try again.'));
1140 $fields = ['def_gid' => $def_gid];
1141 if (DI::config()->get('system', 'newuser_private') && $def_gid) {
1142 $fields['allow_gid'] = '<' . $def_gid . '>';
1145 DBA::update('user', $fields, ['uid' => $uid]);
1147 // if we have no OpenID photo try to look up an avatar
1148 if (!strlen($photo)) {
1149 $photo = Network::lookupAvatarByEmail($email);
1152 // unless there is no avatar-addon loaded
1153 if (strlen($photo)) {
1154 $photo_failure = false;
1156 $filename = basename($photo);
1157 $curlResult = DI::httpClient()->get($photo, HttpClientAccept::IMAGE);
1158 if ($curlResult->isSuccess()) {
1159 Logger::debug('Got picture', ['Content-Type' => $curlResult->getHeader('Content-Type'), 'url' => $photo]);
1160 $img_str = $curlResult->getBody();
1161 $type = $curlResult->getContentType();
1167 $type = Images::getMimeTypeByData($img_str, $photo, $type);
1169 $image = new Image($img_str, $type);
1170 if ($image->isValid()) {
1171 $image->scaleToSquare(300);
1173 $resource_id = Photo::newResource();
1175 // Not using Photo::PROFILE_PHOTOS here, so that it is discovered as translateble string
1176 $profile_album = DI::l10n()->t('Profile Photos');
1178 $r = Photo::store($image, $uid, 0, $resource_id, $filename, $profile_album, 4);
1181 $photo_failure = true;
1184 $image->scaleDown(80);
1186 $r = Photo::store($image, $uid, 0, $resource_id, $filename, $profile_album, 5);
1189 $photo_failure = true;
1192 $image->scaleDown(48);
1194 $r = Photo::store($image, $uid, 0, $resource_id, $filename, $profile_album, 6);
1197 $photo_failure = true;
1200 if (!$photo_failure) {
1201 Photo::update(['profile' => true, 'photo-type' => Photo::USER_AVATAR], ['resource-id' => $resource_id]);
1205 Contact::updateSelfFromUserID($uid, true);
1208 Hook::callAll('register_account', $uid);
1210 $return['user'] = $user;
1215 * Update a user entry and distribute the changes if needed
1217 * @param array $fields
1218 * @param integer $uid
1221 public static function update(array $fields, int $uid): bool
1223 $old_owner = self::getOwnerDataById($uid);
1224 if (empty($old_owner)) {
1228 if (!DBA::update('user', $fields, ['uid' => $uid])) {
1232 $update = Contact::updateSelfFromUserID($uid);
1234 $owner = self::getOwnerDataById($uid);
1235 if (empty($owner)) {
1239 if ($old_owner['name'] != $owner['name']) {
1240 Profile::update(['name' => $owner['name']], $uid);
1244 Profile::publishUpdate($uid);
1251 * Sets block state for a given user
1253 * @param int $uid The user id
1254 * @param bool $block Block state (default is true)
1256 * @return bool True, if successfully blocked
1260 public static function block(int $uid, bool $block = true): bool
1262 return DBA::update('user', ['blocked' => $block], ['uid' => $uid]);
1266 * Allows a registration based on a hash
1268 * @param string $hash
1270 * @return bool True, if the allow was successful
1272 * @throws HTTPException\InternalServerErrorException
1275 public static function allow(string $hash): bool
1277 $register = Register::getByHash($hash);
1278 if (!DBA::isResult($register)) {
1282 $user = User::getById($register['uid']);
1283 if (!DBA::isResult($user)) {
1287 Register::deleteByHash($hash);
1289 DBA::update('user', ['blocked' => false, 'verified' => true], ['uid' => $register['uid']]);
1291 $profile = DBA::selectFirst('profile', ['net-publish'], ['uid' => $register['uid']]);
1293 if (DBA::isResult($profile) && $profile['net-publish'] && Search::getGlobalDirectory()) {
1294 $url = DI::baseUrl() . '/profile/' . $user['nickname'];
1295 Worker::add(PRIORITY_LOW, "Directory", $url);
1298 $l10n = DI::l10n()->withLang($register['language']);
1300 return User::sendRegisterOpenEmail(
1303 DI::config()->get('config', 'sitename'),
1304 DI::baseUrl()->get(),
1305 ($register['password'] ?? '') ?: 'Sent in a previous email'
1310 * Denys a pending registration
1312 * @param string $hash The hash of the pending user
1314 * This does not have to go through user_remove() and save the nickname
1315 * permanently against re-registration, as the person was not yet
1316 * allowed to have friends on this system
1318 * @return bool True, if the deny was successfull
1321 public static function deny(string $hash): bool
1323 $register = Register::getByHash($hash);
1324 if (!DBA::isResult($register)) {
1328 $user = User::getById($register['uid']);
1329 if (!DBA::isResult($user)) {
1333 // Delete the avatar
1334 Photo::delete(['uid' => $register['uid']]);
1336 return DBA::delete('user', ['uid' => $register['uid']]) &&
1337 Register::deleteByHash($register['hash']);
1341 * Creates a new user based on a minimal set and sends an email to this user
1343 * @param string $name The user's name
1344 * @param string $email The user's email address
1345 * @param string $nick The user's nick name
1346 * @param string $lang The user's language (default is english)
1347 * @return bool True, if the user was created successfully
1348 * @throws HTTPException\InternalServerErrorException
1349 * @throws ErrorException
1350 * @throws ImagickException
1352 public static function createMinimal(string $name, string $email, string $nick, string $lang = L10n::DEFAULT): bool
1357 throw new HTTPException\InternalServerErrorException('Invalid arguments.');
1360 $result = self::create([
1361 'username' => $name,
1363 'nickname' => $nick,
1368 $user = $result['user'];
1369 $preamble = Strings::deindent(DI::l10n()->t('
1371 the administrator of %2$s has set up an account for you.'));
1372 $body = Strings::deindent(DI::l10n()->t('
1373 The login details are as follows:
1379 You may change your password from your account "Settings" page after logging
1382 Please take a few moments to review the other account settings on that page.
1384 You may also wish to add some basic information to your default profile
1385 (on the "Profiles" page) so that other people can easily find you.
1387 We recommend setting your full name, adding a profile photo,
1388 adding some profile "keywords" (very useful in making new friends) - and
1389 perhaps what country you live in; if you do not wish to be more specific
1392 We fully respect your right to privacy, and none of these items are necessary.
1393 If you are new and do not know anybody here, they may help
1394 you to make some new and interesting friends.
1396 If you ever want to delete your account, you can do so at %1$s/removeme
1398 Thank you and welcome to %4$s.'));
1400 $preamble = sprintf($preamble, $user['username'], DI::config()->get('config', 'sitename'));
1401 $body = sprintf($body, DI::baseUrl()->get(), $user['nickname'], $result['password'], DI::config()->get('config', 'sitename'));
1403 $email = DI::emailer()
1405 ->withMessage(DI::l10n()->t('Registration details for %s', DI::config()->get('config', 'sitename')), $preamble, $body)
1407 ->withRecipient($user['email'])
1409 return DI::emailer()->send($email);
1413 * Sends pending registration confirmation email
1415 * @param array $user User record array
1416 * @param string $sitename
1417 * @param string $siteurl
1418 * @param string $password Plaintext password
1419 * @return NULL|boolean from notification() and email() inherited
1420 * @throws HTTPException\InternalServerErrorException
1422 public static function sendRegisterPendingEmail(array $user, string $sitename, string $siteurl, string $password)
1424 $body = Strings::deindent(DI::l10n()->t(
1427 Thank you for registering at %2$s. Your account is pending for approval by the administrator.
1429 Your login details are as follows:
1442 $email = DI::emailer()
1444 ->withMessage(DI::l10n()->t('Registration at %s', $sitename), $body)
1446 ->withRecipient($user['email'])
1448 return DI::emailer()->send($email);
1452 * Sends registration confirmation
1454 * It's here as a function because the mail is sent from different parts
1456 * @param L10n $l10n The used language
1457 * @param array $user User record array
1458 * @param string $sitename
1459 * @param string $siteurl
1460 * @param string $password Plaintext password
1462 * @return NULL|boolean from notification() and email() inherited
1463 * @throws HTTPException\InternalServerErrorException
1465 public static function sendRegisterOpenEmail(L10n $l10n, array $user, string $sitename, string $siteurl, string $password)
1467 $preamble = Strings::deindent($l10n->t(
1470 Thank you for registering at %2$s. Your account has been created.
1475 $body = Strings::deindent($l10n->t(
1477 The login details are as follows:
1483 You may change your password from your account "Settings" page after logging
1486 Please take a few moments to review the other account settings on that page.
1488 You may also wish to add some basic information to your default profile
1489 ' . "\x28" . 'on the "Profiles" page' . "\x29" . ' so that other people can easily find you.
1491 We recommend setting your full name, adding a profile photo,
1492 adding some profile "keywords" ' . "\x28" . 'very useful in making new friends' . "\x29" . ' - and
1493 perhaps what country you live in; if you do not wish to be more specific
1496 We fully respect your right to privacy, and none of these items are necessary.
1497 If you are new and do not know anybody here, they may help
1498 you to make some new and interesting friends.
1500 If you ever want to delete your account, you can do so at %3$s/removeme
1502 Thank you and welcome to %2$s.',
1510 $email = DI::emailer()
1512 ->withMessage(DI::l10n()->t('Registration details for %s', $sitename), $preamble, $body)
1514 ->withRecipient($user['email'])
1516 return DI::emailer()->send($email);
1520 * @param int $uid user to remove
1522 * @throws HTTPException\InternalServerErrorException
1524 public static function remove(int $uid): bool
1530 Logger::notice('Removing user', ['user' => $uid]);
1532 $user = DBA::selectFirst('user', [], ['uid' => $uid]);
1534 Hook::callAll('remove_user', $user);
1536 // save username (actually the nickname as it is guaranteed
1537 // unique), so it cannot be re-registered in the future.
1538 DBA::insert('userd', ['username' => $user['nickname']]);
1540 // Remove all personal settings, especially connector settings
1541 DBA::delete('pconfig', ['uid' => $uid]);
1543 // The user and related data will be deleted in Friendica\Worker\ExpireAndRemoveUsers
1544 DBA::update('user', ['account_removed' => true, 'account_expires_on' => DateTimeFormat::utc('now + 7 day')], ['uid' => $uid]);
1545 Worker::add(PRIORITY_HIGH, 'Notifier', Delivery::REMOVAL, $uid);
1547 // Send an update to the directory
1548 $self = DBA::selectFirst('contact', ['url'], ['uid' => $uid, 'self' => true]);
1549 Worker::add(PRIORITY_LOW, 'Directory', $self['url']);
1551 // Remove the user relevant data
1552 Worker::add(PRIORITY_NEGLIGIBLE, 'RemoveUser', $uid);
1558 * Return all identities to a user
1560 * @param int $uid The user id
1561 * @return array All identities for this user
1563 * Example for a return:
1567 * 'username' => 'maxmuster',
1568 * 'nickname' => 'Max Mustermann'
1572 * 'username' => 'johndoe',
1573 * 'nickname' => 'John Doe'
1578 public static function identities(int $uid): array
1586 $user = DBA::selectFirst('user', ['uid', 'nickname', 'username', 'parent-uid'], ['uid' => $uid]);
1587 if (!DBA::isResult($user)) {
1591 if ($user['parent-uid'] == 0) {
1592 // First add our own entry
1594 'uid' => $user['uid'],
1595 'username' => $user['username'],
1596 'nickname' => $user['nickname']
1599 // Then add all the children
1602 ['uid', 'username', 'nickname'],
1603 ['parent-uid' => $user['uid'], 'account_removed' => false]
1605 if (DBA::isResult($r)) {
1606 $identities = array_merge($identities, DBA::toArray($r));
1609 // First entry is our parent
1612 ['uid', 'username', 'nickname'],
1613 ['uid' => $user['parent-uid'], 'account_removed' => false]
1615 if (DBA::isResult($r)) {
1616 $identities = DBA::toArray($r);
1619 // Then add all siblings
1622 ['uid', 'username', 'nickname'],
1623 ['parent-uid' => $user['parent-uid'], 'account_removed' => false]
1625 if (DBA::isResult($r)) {
1626 $identities = array_merge($identities, DBA::toArray($r));
1631 "SELECT `user`.`uid`, `user`.`username`, `user`.`nickname`
1633 INNER JOIN `user` ON `manage`.`mid` = `user`.`uid`
1634 WHERE `user`.`account_removed` = 0 AND `manage`.`uid` = ?",
1637 if (DBA::isResult($r)) {
1638 $identities = array_merge($identities, DBA::toArray($r));
1645 * Check if the given user id has delegations or is delegated
1650 public static function hasIdentities(int $uid): bool
1656 $user = DBA::selectFirst('user', ['parent-uid'], ['uid' => $uid, 'account_removed' => false]);
1657 if (!DBA::isResult($user)) {
1661 if ($user['parent-uid'] != 0) {
1665 if (DBA::exists('user', ['parent-uid' => $uid, 'account_removed' => false])) {
1669 if (DBA::exists('manage', ['uid' => $uid])) {
1677 * Returns statistical information about the current users of this node
1683 public static function getStatistics(): array
1687 'active_users_halfyear' => 0,
1688 'active_users_monthly' => 0,
1689 'active_users_weekly' => 0,
1692 $userStmt = DBA::select('owner-view', ['uid', 'login_date', 'last-item'],
1693 ["`verified` AND `login_date` > ? AND NOT `blocked`
1694 AND NOT `account_removed` AND NOT `account_expired`",
1695 DBA::NULL_DATETIME]);
1696 if (!DBA::isResult($userStmt)) {
1700 $halfyear = time() - (180 * 24 * 60 * 60);
1701 $month = time() - (30 * 24 * 60 * 60);
1702 $week = time() - (7 * 24 * 60 * 60);
1704 while ($user = DBA::fetch($userStmt)) {
1705 $statistics['total_users']++;
1707 if ((strtotime($user['login_date']) > $halfyear) || (strtotime($user['last-item']) > $halfyear)
1709 $statistics['active_users_halfyear']++;
1712 if ((strtotime($user['login_date']) > $month) || (strtotime($user['last-item']) > $month)
1714 $statistics['active_users_monthly']++;
1717 if ((strtotime($user['login_date']) > $week) || (strtotime($user['last-item']) > $week)
1719 $statistics['active_users_weekly']++;
1722 DBA::close($userStmt);
1728 * Get all users of the current node
1730 * @param int $start Start count (Default is 0)
1731 * @param int $count Count of the items per page (Default is @see Pager::ITEMS_PER_PAGE)
1732 * @param string $type The type of users, which should get (all, bocked, removed)
1733 * @param string $order Order of the user list (Default is 'contact.name')
1734 * @param bool $descending Order direction (Default is ascending)
1735 * @return array|bool The list of the users
1738 public static function getList(int $start = 0, int $count = Pager::ITEMS_PER_PAGE, string $type = 'all', string $order = 'name', bool $descending = false)
1740 $param = ['limit' => [$start, $count], 'order' => [$order => $descending]];
1744 $condition['account_removed'] = false;
1745 $condition['blocked'] = false;
1749 $condition['account_removed'] = false;
1750 $condition['blocked'] = true;
1751 $condition['verified'] = true;
1755 $condition['account_removed'] = true;
1759 return DBA::selectToArray('owner-view', [], $condition, $param);