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\Security;
24 use Friendica\Core\Logger;
25 use Friendica\Core\Worker;
26 use Friendica\Database\Database;
27 use Friendica\Database\DBA;
28 use Friendica\Model\Contact;
29 use Friendica\Model\User;
30 use Friendica\Module\BaseApi;
31 use Friendica\Util\DateTimeFormat;
41 protected static $current_user_id = 0;
45 protected static $current_token = [];
48 * Get current user id, returns 0 if not logged in
52 public static function getCurrentUserID()
54 if (empty(self::$current_user_id)) {
55 $token = self::getCurrentApplicationToken();
56 if (!empty($token['uid'])) {
57 self::$current_user_id = $token['uid'];
59 self::$current_user_id = 0;
63 return (int)self::$current_user_id;
67 * Get current application token
71 public static function getCurrentApplicationToken()
73 if (empty(self::$current_token)) {
74 self::$current_token = self::getTokenByBearer();
77 return self::$current_token;
81 * Get the user token via the Bearer token
83 * @return array User Token
85 private static function getTokenByBearer()
87 $authorization = $_SERVER['HTTP_AUTHORIZATION'] ?? '';
89 if (empty($authorization)) {
90 // workaround for HTTP-auth in CGI mode
91 $authorization = $_SERVER['REDIRECT_REMOTE_USER'] ?? '';
94 if (substr($authorization, 0, 7) != 'Bearer ') {
98 $condition = ['access_token' => trim(substr($authorization, 7))];
100 $token = DBA::selectFirst('application-view', ['uid', 'id', 'name', 'website', 'created_at', 'read', 'write', 'follow', 'push'], $condition);
101 if (!DBA::isResult($token)) {
102 Logger::notice('Token not found', $condition);
105 Logger::debug('Token found', $token);
107 User::updateLastActivity($token['uid']);
109 // Regularly update suggestions
110 if (Contact\Relation::areSuggestionsOutdated($token['uid'])) {
111 Worker::add(Worker::PRIORITY_MEDIUM, 'UpdateSuggestions', $token['uid']);
118 * Get the application record via the provided request header fields
120 * @param string $client_id
121 * @param string $client_secret
122 * @param string $redirect_uri
123 * @return array application record
125 public static function getApplication(string $client_id, string $client_secret, string $redirect_uri)
127 $condition = ['client_id' => $client_id];
128 if (!empty($client_secret)) {
129 $condition['client_secret'] = $client_secret;
131 if (!empty($redirect_uri)) {
132 $condition['redirect_uri'] = $redirect_uri;
135 $application = DBA::selectFirst('application', [], $condition);
136 if (!DBA::isResult($application)) {
137 Logger::warning('Application not found', $condition);
144 * Check if an token for the application and user exists
146 * @param array $application
147 * @param integer $uid
150 public static function existsTokenForUser(array $application, int $uid)
152 return DBA::exists('application-token', ['application-id' => $application['id'], 'uid' => $uid]);
156 * Fetch the token for the given application and user
158 * @param array $application
159 * @param integer $uid
160 * @return array application record
162 public static function getTokenForUser(array $application, int $uid)
164 return DBA::selectFirst('application-token', [], ['application-id' => $application['id'], 'uid' => $uid]);
168 * Create and fetch an token for the application and user
170 * @param array $application
171 * @param integer $uid
172 * @param string $scope
173 * @return array application record
175 public static function createTokenForUser(array $application, int $uid, string $scope)
177 $code = bin2hex(random_bytes(32));
178 $access_token = bin2hex(random_bytes(32));
181 'application-id' => $application['id'],
184 'access_token' => $access_token,
186 'read' => (stripos($scope, BaseApi::SCOPE_READ) !== false),
187 'write' => (stripos($scope, BaseApi::SCOPE_WRITE) !== false),
188 'follow' => (stripos($scope, BaseApi::SCOPE_FOLLOW) !== false),
189 'push' => (stripos($scope, BaseApi::SCOPE_PUSH) !== false),
190 'created_at' => DateTimeFormat::utcNow()];
192 foreach ([BaseApi::SCOPE_READ, BaseApi::SCOPE_WRITE, BaseApi::SCOPE_WRITE, BaseApi::SCOPE_PUSH] as $scope) {
193 if ($fields[$scope] && !$application[$scope]) {
194 Logger::warning('Requested token scope is not allowed for the application', ['token' => $fields, 'application' => $application]);
198 if (!DBA::insert('application-token', $fields, Database::INSERT_UPDATE)) {
202 return DBA::selectFirst('application-token', [], ['application-id' => $application['id'], 'uid' => $uid]);