3 * @copyright Copyright (C) 2010-2023, 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 Friendica\Content\Pager;
25 use Friendica\Database\DBA;
26 use Friendica\Network\HTTPException;
27 use Friendica\Util\DateTimeFormat;
28 use Friendica\Util\Strings;
31 * Class interacting with the register database table
36 * Return the list of pending registrations
38 * @param int $start Start count (Default is 0)
39 * @param int $count Count of the items per page (Default is @see Pager::ITEMS_PER_PAGE)
40 * @return array|bool Array on succes, false on failure
43 public static function getPending(int $start = 0, int $count = Pager::ITEMS_PER_PAGE)
45 return DBA::selectToArray('pending-view', [], [], ['limit' => [$start, $count]]);
49 * Returns the pending user based on a given user id
51 * @param int $uid The user id
53 * @return array|bool Array on succes, false on failure
56 public static function getPendingForUser(int $uid)
58 return DBA::selectFirst('pending-view', [], ['uid' => $uid, 'self' => true]);
62 * Returns the pending registration count
67 public static function getPendingCount(): int
69 return DBA::count('pending-view', ['self' => true]);
73 * Returns the register record associated with the provided hash
76 * @return array|bool Array on succes, false on failure
79 public static function getByHash(string $hash)
81 return DBA::selectFirst('register', [], ['hash' => $hash]);
85 * Returns true if a register record exists with the provided hash
91 public static function existsByHash(string $hash): bool
93 return DBA::exists('register', ['hash' => $hash]);
97 * Creates a register record for an invitation and returns the auto-generated code for it
102 public static function createForInvitation(): string
104 $code = Strings::getRandomName(8) . random_int(1000, 9999);
108 'created' => DateTimeFormat::utcNow()
111 DBA::insert('register', $fields);
117 * Creates a register record for approval
118 * Checks for the existence of the provided user id
120 * @param integer $uid The ID of the user needing approval
121 * @param string $language The registration language
122 * @param string $note An additional message from the user
124 * @throws \OutOfBoundsException
125 * @throws HTTPException\InternalServerErrorException
126 * @throws HTTPException\NotFoundException
128 public static function createForApproval(int $uid, string $language, string $note = ''): void
130 $hash = Strings::getRandomHex();
133 throw new \OutOfBoundsException("User ID can't be empty");
136 if (!User::exists($uid)) {
137 throw new HTTPException\NotFoundException("User ID doesn't exist");
142 'created' => DateTimeFormat::utcNow(),
144 'password' => '', // Obsolete, slated for deletion
145 'language' => $language,
149 if (!DBA::insert('register', $fields)) {
150 throw new HTTPException\InternalServerErrorException('Unable to insert a `register` record');
155 * Deletes a register record by the provided hash and returns the success of the database deletion
157 * @param string $hash
161 public static function deleteByHash(string $hash): bool
163 return DBA::delete('register', ['hash' => $hash]);