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 * Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:).
741 * Password length is limited to 72 characters if the current default password hashing algorithm is Blowfish.
742 * From the manual: "Using the PASSWORD_BCRYPT as the algorithm, will result in the password parameter being
743 * truncated to a maximum length of 72 bytes."
745 * @see https://www.php.net/manual/en/function.password-hash.php#refsect1-function.password-hash-parameters
747 * @param string|null $delimiter Whether the regular expression is meant to be wrapper in delimiter characters
750 public static function getPasswordRegExp(string $delimiter = null): string
752 $allowed_characters = '!"#$%&\'()*+,-./;<=>?@[\]^_`{|}~';
755 $allowed_characters = preg_quote($allowed_characters, $delimiter);
758 return '^[a-zA-Z0-9' . $allowed_characters . ']' . (PASSWORD_DEFAULT !== PASSWORD_BCRYPT ? '{1,72}' : '+') . '$';
762 * Updates a user row with a new plaintext password
765 * @param string $password
769 public static function updatePassword(int $uid, string $password): bool
771 $password = trim($password);
773 if (empty($password)) {
774 throw new Exception(DI::l10n()->t('Empty passwords are not allowed.'));
777 if (!DI::config()->get('system', 'disable_password_exposed', false) && self::isPasswordExposed($password)) {
778 throw new Exception(DI::l10n()->t('The new password has been exposed in a public data dump, please choose another.'));
781 if (PASSWORD_DEFAULT === PASSWORD_BCRYPT && strlen($password) > 72) {
782 throw new Exception(DI::l10n()->t('The password length is limited to 72 characters.'));
785 if (!preg_match('/' . self::getPasswordRegExp('/') . '/', $password)) {
786 throw new Exception(DI::l10n()->t('The password can\'t contain accentuated letters, white spaces or colons (:)'));
789 return self::updatePasswordHashed($uid, self::hashPassword($password));
793 * Updates a user row with a new hashed password.
794 * Empties the password reset token field just in case.
797 * @param string $pasword_hashed
801 private static function updatePasswordHashed(int $uid, string $pasword_hashed): bool
804 'password' => $pasword_hashed,
806 'pwdreset_time' => null,
807 'legacy_password' => false
809 return DBA::update('user', $fields, ['uid' => $uid]);
813 * Checks if a nickname is in the list of the forbidden nicknames
815 * Check if a nickname is forbidden from registration on the node by the
816 * admin. Forbidden nicknames (e.g. role namess) can be configured in the
819 * @param string $nickname The nickname that should be checked
820 * @return boolean True is the nickname is blocked on the node
822 public static function isNicknameBlocked(string $nickname): bool
824 $forbidden_nicknames = DI::config()->get('system', 'forbidden_nicknames', '');
825 if (!empty($forbidden_nicknames)) {
826 $forbidden = explode(',', $forbidden_nicknames);
827 $forbidden = array_map('trim', $forbidden);
832 // Add the name of the internal actor to the "forbidden" list
833 $actor_name = self::getActorName();
834 if (!empty($actor_name)) {
835 $forbidden[] = $actor_name;
838 if (empty($forbidden)) {
842 // check if the nickname is in the list of blocked nicknames
843 if (in_array(strtolower($nickname), $forbidden)) {
852 * Get avatar link for given user
855 * @param string $size One of the Proxy::SIZE_* constants
856 * @return string avatar link
859 public static function getAvatarUrl(array $user, string $size = ''): string
861 if (empty($user['nickname'])) {
862 DI::logger()->warning('Missing user nickname key', ['trace' => System::callstack(20)]);
865 $url = DI::baseUrl() . '/photo/';
868 case Proxy::SIZE_MICRO:
872 case Proxy::SIZE_THUMB:
885 $photo = Photo::selectFirst(['type', 'created', 'edited', 'updated'], ["scale" => $scale, 'uid' => $user['uid'], 'profile' => true]);
886 if (!empty($photo)) {
887 $updated = max($photo['created'], $photo['edited'], $photo['updated']);
888 $mimetype = $photo['type'];
891 return $url . $user['nickname'] . Images::getExtensionByMimeType($mimetype) . ($updated ? '?ts=' . strtotime($updated) : '');
895 * Get banner link for given user
898 * @return string banner link
901 public static function getBannerUrl(array $user): string
903 if (empty($user['nickname'])) {
904 DI::logger()->warning('Missing user nickname key', ['trace' => System::callstack(20)]);
907 $url = DI::baseUrl() . '/photo/banner/';
912 $photo = Photo::selectFirst(['type', 'created', 'edited', 'updated'], ["scale" => 3, 'uid' => $user['uid'], 'photo-type' => Photo::USER_BANNER]);
913 if (!empty($photo)) {
914 $updated = max($photo['created'], $photo['edited'], $photo['updated']);
915 $mimetype = $photo['type'];
917 // Only for the RC phase: Don't return an image link for the default picture
921 return $url . $user['nickname'] . Images::getExtensionByMimeType($mimetype) . ($updated ? '?ts=' . strtotime($updated) : '');
925 * Catch-all user creation function
927 * Creates a user from the provided data array, either form fields or OpenID.
928 * Required: { username, nickname, email } or { openid_url }
930 * Performs the following:
931 * - Sends to the OpenId auth URL (if relevant)
932 * - Creates new key pairs for crypto
933 * - Create self-contact
934 * - Create profile image
938 * @throws ErrorException
939 * @throws HTTPException\InternalServerErrorException
940 * @throws ImagickException
943 public static function create(array $data): array
945 $return = ['user' => null, 'password' => ''];
947 $using_invites = DI::config()->get('system', 'invitation_only');
949 $invite_id = !empty($data['invite_id']) ? trim($data['invite_id']) : '';
950 $username = !empty($data['username']) ? trim($data['username']) : '';
951 $nickname = !empty($data['nickname']) ? trim($data['nickname']) : '';
952 $email = !empty($data['email']) ? trim($data['email']) : '';
953 $openid_url = !empty($data['openid_url']) ? trim($data['openid_url']) : '';
954 $photo = !empty($data['photo']) ? trim($data['photo']) : '';
955 $password = !empty($data['password']) ? trim($data['password']) : '';
956 $password1 = !empty($data['password1']) ? trim($data['password1']) : '';
957 $confirm = !empty($data['confirm']) ? trim($data['confirm']) : '';
958 $blocked = !empty($data['blocked']);
959 $verified = !empty($data['verified']);
960 $language = !empty($data['language']) ? trim($data['language']) : 'en';
962 $netpublish = $publish = !empty($data['profile_publish_reg']);
964 if ($password1 != $confirm) {
965 throw new Exception(DI::l10n()->t('Passwords do not match. Password unchanged.'));
966 } elseif ($password1 != '') {
967 $password = $password1;
970 if ($using_invites) {
972 throw new Exception(DI::l10n()->t('An invitation is required.'));
975 if (!Register::existsByHash($invite_id)) {
976 throw new Exception(DI::l10n()->t('Invitation could not be verified.'));
980 /// @todo Check if this part is really needed. We should have fetched all this data in advance
981 if (empty($username) || empty($email) || empty($nickname)) {
983 if (!Network::isUrlValid($openid_url)) {
984 throw new Exception(DI::l10n()->t('Invalid OpenID url'));
986 $_SESSION['register'] = 1;
987 $_SESSION['openid'] = $openid_url;
989 $openid = new LightOpenID(DI::baseUrl()->getHostname());
990 $openid->identity = $openid_url;
991 $openid->returnUrl = DI::baseUrl() . '/openid';
992 $openid->required = ['namePerson/friendly', 'contact/email', 'namePerson'];
993 $openid->optional = ['namePerson/first', 'media/image/aspect11', 'media/image/default'];
995 $authurl = $openid->authUrl();
996 } catch (Exception $e) {
997 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);
999 System::externalRedirect($authurl);
1003 throw new Exception(DI::l10n()->t('Please enter the required information.'));
1006 if (!Network::isUrlValid($openid_url)) {
1010 // collapse multiple spaces in name
1011 $username = preg_replace('/ +/', ' ', $username);
1013 $username_min_length = max(1, min(64, intval(DI::config()->get('system', 'username_min_length', 3))));
1014 $username_max_length = max(1, min(64, intval(DI::config()->get('system', 'username_max_length', 48))));
1016 if ($username_min_length > $username_max_length) {
1017 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));
1018 $tmp = $username_min_length;
1019 $username_min_length = $username_max_length;
1020 $username_max_length = $tmp;
1023 if (mb_strlen($username) < $username_min_length) {
1024 throw new Exception(DI::l10n()->tt('Username should be at least %s character.', 'Username should be at least %s characters.', $username_min_length));
1027 if (mb_strlen($username) > $username_max_length) {
1028 throw new Exception(DI::l10n()->tt('Username should be at most %s character.', 'Username should be at most %s characters.', $username_max_length));
1031 // So now we are just looking for a space in the full name.
1032 $loose_reg = DI::config()->get('system', 'no_regfullname');
1034 $username = mb_convert_case($username, MB_CASE_TITLE, 'UTF-8');
1035 if (strpos($username, ' ') === false) {
1036 throw new Exception(DI::l10n()->t("That doesn't appear to be your full (First Last) name."));
1040 if (!Network::isEmailDomainAllowed($email)) {
1041 throw new Exception(DI::l10n()->t('Your email domain is not among those allowed on this site.'));
1044 if (!filter_var($email, FILTER_VALIDATE_EMAIL) || !Network::isEmailDomainValid($email)) {
1045 throw new Exception(DI::l10n()->t('Not a valid email address.'));
1047 if (self::isNicknameBlocked($nickname)) {
1048 throw new Exception(DI::l10n()->t('The nickname was blocked from registration by the nodes admin.'));
1051 if (DI::config()->get('system', 'block_extended_register', false) && DBA::exists('user', ['email' => $email])) {
1052 throw new Exception(DI::l10n()->t('Cannot use that email.'));
1055 // Disallow somebody creating an account using openid that uses the admin email address,
1056 // since openid bypasses email verification. We'll allow it if there is not yet an admin account.
1057 if (DI::config()->get('config', 'admin_email') && strlen($openid_url)) {
1058 $adminlist = explode(',', str_replace(' ', '', strtolower(DI::config()->get('config', 'admin_email'))));
1059 if (in_array(strtolower($email), $adminlist)) {
1060 throw new Exception(DI::l10n()->t('Cannot use that email.'));
1064 $nickname = $data['nickname'] = strtolower($nickname);
1066 if (!preg_match('/^[a-z0-9][a-z0-9_]*$/', $nickname)) {
1067 throw new Exception(DI::l10n()->t('Your nickname can only contain a-z, 0-9 and _.'));
1070 // Check existing and deleted accounts for this nickname.
1072 DBA::exists('user', ['nickname' => $nickname])
1073 || DBA::exists('userd', ['username' => $nickname])
1075 throw new Exception(DI::l10n()->t('Nickname is already registered. Please choose another.'));
1078 $new_password = strlen($password) ? $password : User::generateNewPassword();
1079 $new_password_encoded = self::hashPassword($new_password);
1081 $return['password'] = $new_password;
1083 $keys = Crypto::newKeypair(4096);
1084 if ($keys === false) {
1085 throw new Exception(DI::l10n()->t('SERIOUS ERROR: Generation of security keys failed.'));
1088 $prvkey = $keys['prvkey'];
1089 $pubkey = $keys['pubkey'];
1091 // Create another keypair for signing/verifying salmon protocol messages.
1092 $sres = Crypto::newKeypair(512);
1093 $sprvkey = $sres['prvkey'];
1094 $spubkey = $sres['pubkey'];
1096 $insert_result = DBA::insert('user', [
1097 'guid' => System::createUUID(),
1098 'username' => $username,
1099 'password' => $new_password_encoded,
1101 'openid' => $openid_url,
1102 'nickname' => $nickname,
1103 'pubkey' => $pubkey,
1104 'prvkey' => $prvkey,
1105 'spubkey' => $spubkey,
1106 'sprvkey' => $sprvkey,
1107 'verified' => $verified,
1108 'blocked' => $blocked,
1109 'language' => $language,
1110 'timezone' => 'UTC',
1111 'register_date' => DateTimeFormat::utcNow(),
1112 'default-location' => ''
1115 if ($insert_result) {
1116 $uid = DBA::lastInsertId();
1117 $user = DBA::selectFirst('user', [], ['uid' => $uid]);
1119 throw new Exception(DI::l10n()->t('An error occurred during registration. Please try again.'));
1123 throw new Exception(DI::l10n()->t('An error occurred during registration. Please try again.'));
1126 // if somebody clicked submit twice very quickly, they could end up with two accounts
1127 // due to race condition. Remove this one.
1128 $user_count = DBA::count('user', ['nickname' => $nickname]);
1129 if ($user_count > 1) {
1130 DBA::delete('user', ['uid' => $uid]);
1132 throw new Exception(DI::l10n()->t('Nickname is already registered. Please choose another.'));
1135 $insert_result = DBA::insert('profile', [
1137 'name' => $username,
1138 'photo' => self::getAvatarUrl($user),
1139 'thumb' => self::getAvatarUrl($user, Proxy::SIZE_THUMB),
1140 'publish' => $publish,
1141 'net-publish' => $netpublish,
1143 if (!$insert_result) {
1144 DBA::delete('user', ['uid' => $uid]);
1146 throw new Exception(DI::l10n()->t('An error occurred creating your default profile. Please try again.'));
1149 // Create the self contact
1150 if (!Contact::createSelfFromUserId($uid)) {
1151 DBA::delete('user', ['uid' => $uid]);
1153 throw new Exception(DI::l10n()->t('An error occurred creating your self contact. Please try again.'));
1156 // Create a group with no members. This allows somebody to use it
1157 // right away as a default group for new contacts.
1158 $def_gid = Group::create($uid, DI::l10n()->t('Friends'));
1160 DBA::delete('user', ['uid' => $uid]);
1162 throw new Exception(DI::l10n()->t('An error occurred creating your default contact group. Please try again.'));
1165 $fields = ['def_gid' => $def_gid];
1166 if (DI::config()->get('system', 'newuser_private') && $def_gid) {
1167 $fields['allow_gid'] = '<' . $def_gid . '>';
1170 DBA::update('user', $fields, ['uid' => $uid]);
1172 // if we have no OpenID photo try to look up an avatar
1173 if (!strlen($photo)) {
1174 $photo = Network::lookupAvatarByEmail($email);
1177 // unless there is no avatar-addon loaded
1178 if (strlen($photo)) {
1179 $photo_failure = false;
1181 $filename = basename($photo);
1182 $curlResult = DI::httpClient()->get($photo, HttpClientAccept::IMAGE);
1183 if ($curlResult->isSuccess()) {
1184 Logger::debug('Got picture', ['Content-Type' => $curlResult->getHeader('Content-Type'), 'url' => $photo]);
1185 $img_str = $curlResult->getBody();
1186 $type = $curlResult->getContentType();
1192 $type = Images::getMimeTypeByData($img_str, $photo, $type);
1194 $image = new Image($img_str, $type);
1195 if ($image->isValid()) {
1196 $image->scaleToSquare(300);
1198 $resource_id = Photo::newResource();
1200 // Not using Photo::PROFILE_PHOTOS here, so that it is discovered as translateble string
1201 $profile_album = DI::l10n()->t('Profile Photos');
1203 $r = Photo::store($image, $uid, 0, $resource_id, $filename, $profile_album, 4);
1206 $photo_failure = true;
1209 $image->scaleDown(80);
1211 $r = Photo::store($image, $uid, 0, $resource_id, $filename, $profile_album, 5);
1214 $photo_failure = true;
1217 $image->scaleDown(48);
1219 $r = Photo::store($image, $uid, 0, $resource_id, $filename, $profile_album, 6);
1222 $photo_failure = true;
1225 if (!$photo_failure) {
1226 Photo::update(['profile' => true, 'photo-type' => Photo::USER_AVATAR], ['resource-id' => $resource_id]);
1230 Contact::updateSelfFromUserID($uid, true);
1233 Hook::callAll('register_account', $uid);
1235 $return['user'] = $user;
1240 * Update a user entry and distribute the changes if needed
1242 * @param array $fields
1243 * @param integer $uid
1246 public static function update(array $fields, int $uid): bool
1248 $old_owner = self::getOwnerDataById($uid);
1249 if (empty($old_owner)) {
1253 if (!DBA::update('user', $fields, ['uid' => $uid])) {
1257 $update = Contact::updateSelfFromUserID($uid);
1259 $owner = self::getOwnerDataById($uid);
1260 if (empty($owner)) {
1264 if ($old_owner['name'] != $owner['name']) {
1265 Profile::update(['name' => $owner['name']], $uid);
1269 Profile::publishUpdate($uid);
1276 * Sets block state for a given user
1278 * @param int $uid The user id
1279 * @param bool $block Block state (default is true)
1281 * @return bool True, if successfully blocked
1285 public static function block(int $uid, bool $block = true): bool
1287 return DBA::update('user', ['blocked' => $block], ['uid' => $uid]);
1291 * Allows a registration based on a hash
1293 * @param string $hash
1295 * @return bool True, if the allow was successful
1297 * @throws HTTPException\InternalServerErrorException
1300 public static function allow(string $hash): bool
1302 $register = Register::getByHash($hash);
1303 if (!DBA::isResult($register)) {
1307 $user = User::getById($register['uid']);
1308 if (!DBA::isResult($user)) {
1312 Register::deleteByHash($hash);
1314 DBA::update('user', ['blocked' => false, 'verified' => true], ['uid' => $register['uid']]);
1316 $profile = DBA::selectFirst('profile', ['net-publish'], ['uid' => $register['uid']]);
1318 if (DBA::isResult($profile) && $profile['net-publish'] && Search::getGlobalDirectory()) {
1319 $url = DI::baseUrl() . '/profile/' . $user['nickname'];
1320 Worker::add(Worker::PRIORITY_LOW, "Directory", $url);
1323 $l10n = DI::l10n()->withLang($register['language']);
1325 return User::sendRegisterOpenEmail(
1328 DI::config()->get('config', 'sitename'),
1329 DI::baseUrl()->get(),
1330 ($register['password'] ?? '') ?: 'Sent in a previous email'
1335 * Denys a pending registration
1337 * @param string $hash The hash of the pending user
1339 * This does not have to go through user_remove() and save the nickname
1340 * permanently against re-registration, as the person was not yet
1341 * allowed to have friends on this system
1343 * @return bool True, if the deny was successfull
1346 public static function deny(string $hash): bool
1348 $register = Register::getByHash($hash);
1349 if (!DBA::isResult($register)) {
1353 $user = User::getById($register['uid']);
1354 if (!DBA::isResult($user)) {
1358 // Delete the avatar
1359 Photo::delete(['uid' => $register['uid']]);
1361 return DBA::delete('user', ['uid' => $register['uid']]) &&
1362 Register::deleteByHash($register['hash']);
1366 * Creates a new user based on a minimal set and sends an email to this user
1368 * @param string $name The user's name
1369 * @param string $email The user's email address
1370 * @param string $nick The user's nick name
1371 * @param string $lang The user's language (default is english)
1372 * @return bool True, if the user was created successfully
1373 * @throws HTTPException\InternalServerErrorException
1374 * @throws ErrorException
1375 * @throws ImagickException
1377 public static function createMinimal(string $name, string $email, string $nick, string $lang = L10n::DEFAULT): bool
1382 throw new HTTPException\InternalServerErrorException('Invalid arguments.');
1385 $result = self::create([
1386 'username' => $name,
1388 'nickname' => $nick,
1393 $user = $result['user'];
1394 $preamble = Strings::deindent(DI::l10n()->t('
1396 the administrator of %2$s has set up an account for you.'));
1397 $body = Strings::deindent(DI::l10n()->t('
1398 The login details are as follows:
1404 You may change your password from your account "Settings" page after logging
1407 Please take a few moments to review the other account settings on that page.
1409 You may also wish to add some basic information to your default profile
1410 (on the "Profiles" page) so that other people can easily find you.
1412 We recommend setting your full name, adding a profile photo,
1413 adding some profile "keywords" (very useful in making new friends) - and
1414 perhaps what country you live in; if you do not wish to be more specific
1417 We fully respect your right to privacy, and none of these items are necessary.
1418 If you are new and do not know anybody here, they may help
1419 you to make some new and interesting friends.
1421 If you ever want to delete your account, you can do so at %1$s/removeme
1423 Thank you and welcome to %4$s.'));
1425 $preamble = sprintf($preamble, $user['username'], DI::config()->get('config', 'sitename'));
1426 $body = sprintf($body, DI::baseUrl()->get(), $user['nickname'], $result['password'], DI::config()->get('config', 'sitename'));
1428 $email = DI::emailer()
1430 ->withMessage(DI::l10n()->t('Registration details for %s', DI::config()->get('config', 'sitename')), $preamble, $body)
1432 ->withRecipient($user['email'])
1434 return DI::emailer()->send($email);
1438 * Sends pending registration confirmation email
1440 * @param array $user User record array
1441 * @param string $sitename
1442 * @param string $siteurl
1443 * @param string $password Plaintext password
1444 * @return NULL|boolean from notification() and email() inherited
1445 * @throws HTTPException\InternalServerErrorException
1447 public static function sendRegisterPendingEmail(array $user, string $sitename, string $siteurl, string $password)
1449 $body = Strings::deindent(DI::l10n()->t(
1452 Thank you for registering at %2$s. Your account is pending for approval by the administrator.
1454 Your login details are as follows:
1467 $email = DI::emailer()
1469 ->withMessage(DI::l10n()->t('Registration at %s', $sitename), $body)
1471 ->withRecipient($user['email'])
1473 return DI::emailer()->send($email);
1477 * Sends registration confirmation
1479 * It's here as a function because the mail is sent from different parts
1481 * @param L10n $l10n The used language
1482 * @param array $user User record array
1483 * @param string $sitename
1484 * @param string $siteurl
1485 * @param string $password Plaintext password
1487 * @return NULL|boolean from notification() and email() inherited
1488 * @throws HTTPException\InternalServerErrorException
1490 public static function sendRegisterOpenEmail(L10n $l10n, array $user, string $sitename, string $siteurl, string $password)
1492 $preamble = Strings::deindent($l10n->t(
1495 Thank you for registering at %2$s. Your account has been created.
1500 $body = Strings::deindent($l10n->t(
1502 The login details are as follows:
1508 You may change your password from your account "Settings" page after logging
1511 Please take a few moments to review the other account settings on that page.
1513 You may also wish to add some basic information to your default profile
1514 ' . "\x28" . 'on the "Profiles" page' . "\x29" . ' so that other people can easily find you.
1516 We recommend setting your full name, adding a profile photo,
1517 adding some profile "keywords" ' . "\x28" . 'very useful in making new friends' . "\x29" . ' - and
1518 perhaps what country you live in; if you do not wish to be more specific
1521 We fully respect your right to privacy, and none of these items are necessary.
1522 If you are new and do not know anybody here, they may help
1523 you to make some new and interesting friends.
1525 If you ever want to delete your account, you can do so at %3$s/removeme
1527 Thank you and welcome to %2$s.',
1535 $email = DI::emailer()
1537 ->withMessage(DI::l10n()->t('Registration details for %s', $sitename), $preamble, $body)
1539 ->withRecipient($user['email'])
1541 return DI::emailer()->send($email);
1545 * @param int $uid user to remove
1547 * @throws HTTPException\InternalServerErrorException
1549 public static function remove(int $uid): bool
1555 Logger::notice('Removing user', ['user' => $uid]);
1557 $user = DBA::selectFirst('user', [], ['uid' => $uid]);
1559 Hook::callAll('remove_user', $user);
1561 // save username (actually the nickname as it is guaranteed
1562 // unique), so it cannot be re-registered in the future.
1563 DBA::insert('userd', ['username' => $user['nickname']]);
1565 // Remove all personal settings, especially connector settings
1566 DBA::delete('pconfig', ['uid' => $uid]);
1568 // The user and related data will be deleted in Friendica\Worker\ExpireAndRemoveUsers
1569 DBA::update('user', ['account_removed' => true, 'account_expires_on' => DateTimeFormat::utc('now + 7 day')], ['uid' => $uid]);
1570 Worker::add(Worker::PRIORITY_HIGH, 'Notifier', Delivery::REMOVAL, $uid);
1572 // Send an update to the directory
1573 $self = DBA::selectFirst('contact', ['url'], ['uid' => $uid, 'self' => true]);
1574 Worker::add(Worker::PRIORITY_LOW, 'Directory', $self['url']);
1576 // Remove the user relevant data
1577 Worker::add(Worker::PRIORITY_NEGLIGIBLE, 'RemoveUser', $uid);
1583 * Return all identities to a user
1585 * @param int $uid The user id
1586 * @return array All identities for this user
1588 * Example for a return:
1592 * 'username' => 'maxmuster',
1593 * 'nickname' => 'Max Mustermann'
1597 * 'username' => 'johndoe',
1598 * 'nickname' => 'John Doe'
1603 public static function identities(int $uid): array
1611 $user = DBA::selectFirst('user', ['uid', 'nickname', 'username', 'parent-uid'], ['uid' => $uid]);
1612 if (!DBA::isResult($user)) {
1616 if ($user['parent-uid'] == 0) {
1617 // First add our own entry
1619 'uid' => $user['uid'],
1620 'username' => $user['username'],
1621 'nickname' => $user['nickname']
1624 // Then add all the children
1627 ['uid', 'username', 'nickname'],
1628 ['parent-uid' => $user['uid'], 'account_removed' => false]
1630 if (DBA::isResult($r)) {
1631 $identities = array_merge($identities, DBA::toArray($r));
1634 // First entry is our parent
1637 ['uid', 'username', 'nickname'],
1638 ['uid' => $user['parent-uid'], 'account_removed' => false]
1640 if (DBA::isResult($r)) {
1641 $identities = DBA::toArray($r);
1644 // Then add all siblings
1647 ['uid', 'username', 'nickname'],
1648 ['parent-uid' => $user['parent-uid'], 'account_removed' => false]
1650 if (DBA::isResult($r)) {
1651 $identities = array_merge($identities, DBA::toArray($r));
1656 "SELECT `user`.`uid`, `user`.`username`, `user`.`nickname`
1658 INNER JOIN `user` ON `manage`.`mid` = `user`.`uid`
1659 WHERE `user`.`account_removed` = 0 AND `manage`.`uid` = ?",
1662 if (DBA::isResult($r)) {
1663 $identities = array_merge($identities, DBA::toArray($r));
1670 * Check if the given user id has delegations or is delegated
1675 public static function hasIdentities(int $uid): bool
1681 $user = DBA::selectFirst('user', ['parent-uid'], ['uid' => $uid, 'account_removed' => false]);
1682 if (!DBA::isResult($user)) {
1686 if ($user['parent-uid'] != 0) {
1690 if (DBA::exists('user', ['parent-uid' => $uid, 'account_removed' => false])) {
1694 if (DBA::exists('manage', ['uid' => $uid])) {
1702 * Returns statistical information about the current users of this node
1708 public static function getStatistics(): array
1712 'active_users_halfyear' => 0,
1713 'active_users_monthly' => 0,
1714 'active_users_weekly' => 0,
1717 $userStmt = DBA::select('owner-view', ['uid', 'login_date', 'last-item'],
1718 ["`verified` AND `login_date` > ? AND NOT `blocked`
1719 AND NOT `account_removed` AND NOT `account_expired`",
1720 DBA::NULL_DATETIME]);
1721 if (!DBA::isResult($userStmt)) {
1725 $halfyear = time() - (180 * 24 * 60 * 60);
1726 $month = time() - (30 * 24 * 60 * 60);
1727 $week = time() - (7 * 24 * 60 * 60);
1729 while ($user = DBA::fetch($userStmt)) {
1730 $statistics['total_users']++;
1732 if ((strtotime($user['login_date']) > $halfyear) || (strtotime($user['last-item']) > $halfyear)
1734 $statistics['active_users_halfyear']++;
1737 if ((strtotime($user['login_date']) > $month) || (strtotime($user['last-item']) > $month)
1739 $statistics['active_users_monthly']++;
1742 if ((strtotime($user['login_date']) > $week) || (strtotime($user['last-item']) > $week)
1744 $statistics['active_users_weekly']++;
1747 DBA::close($userStmt);
1753 * Get all users of the current node
1755 * @param int $start Start count (Default is 0)
1756 * @param int $count Count of the items per page (Default is @see Pager::ITEMS_PER_PAGE)
1757 * @param string $type The type of users, which should get (all, bocked, removed)
1758 * @param string $order Order of the user list (Default is 'contact.name')
1759 * @param bool $descending Order direction (Default is ascending)
1760 * @return array|bool The list of the users
1763 public static function getList(int $start = 0, int $count = Pager::ITEMS_PER_PAGE, string $type = 'all', string $order = 'name', bool $descending = false)
1765 $param = ['limit' => [$start, $count], 'order' => [$order => $descending]];
1769 $condition['account_removed'] = false;
1770 $condition['blocked'] = false;
1774 $condition['account_removed'] = false;
1775 $condition['blocked'] = true;
1776 $condition['verified'] = true;
1780 $condition['account_removed'] = true;
1784 return DBA::selectToArray('owner-view', [], $condition, $param);