]> git.mxchange.org Git - friendica.git/blobdiff - mod/openid.php
Add not null/default value for ACL in fields
[friendica.git] / mod / openid.php
index e97607304ffc216c0d73d357eb19ec7c2fb6165a..2bb7f495431d348c1295a1737c9bb68243762528 100644 (file)
@@ -4,30 +4,29 @@
  */
 
 use Friendica\App;
-use Friendica\Core\Authentication;
 use Friendica\Core\Config;
 use Friendica\Core\L10n;
 use Friendica\Core\Logger;
-use Friendica\Core\System;
+use Friendica\Core\Session;
 use Friendica\Database\DBA;
+use Friendica\Util\Strings;
 
 function openid_content(App $a) {
 
-       $noid = Config::get('system','no_openid');
-       if($noid)
+       if (Config::get('system','no_openid')) {
                $a->internalRedirect();
+       }
 
-       Logger::log('mod_openid ' . print_r($_REQUEST,true), LOGGER_DATA);
+       Logger::log('mod_openid ' . print_r($_REQUEST,true), Logger::DATA);
 
-       if((x($_GET,'openid_mode')) && (x($_SESSION,'openid'))) {
+       if (!empty($_GET['openid_mode']) && !empty($_SESSION['openid'])) {
 
                $openid = new LightOpenID($a->getHostName());
 
-               if($openid->validate()) {
-
-                       $authid = $_REQUEST['openid_identity'];
+               if ($openid->validate()) {
+                       $authid = $openid->identity;
 
-                       if(! strlen($authid)) {
+                       if (empty($authid)) {
                                Logger::log(L10n::t('OpenID protocol error. No ID returned.') . EOL);
                                $a->internalRedirect();
                        }
@@ -37,22 +36,16 @@ function openid_content(App $a) {
                        //       mod/settings.php in 8367cad so it might have left mixed
                        //       records in the user table
                        //
-                       $r = q("SELECT *
-                               FROM `user`
-                               WHERE ( `openid` = '%s' OR `openid` = '%s' )
-                               AND `blocked` = 0 AND `account_expired` = 0
-                               AND `account_removed` = 0 AND `verified` = 1
-                               LIMIT 1",
-                               DBA::escape($authid), DBA::escape(normalise_openid($authid))
-                       );
-
-                       if (DBA::isResult($r)) {
+                       $condition = ['blocked' => false, 'account_expired' => false, 'account_removed' => false, 'verified' => true,
+                               'openid' => [$authid, Strings::normaliseOpenID($authid)]];
+                       $user  = DBA::selectFirst('user', [], $condition);
+                       if (DBA::isResult($user)) {
 
                                // successful OpenID login
 
                                unset($_SESSION['openid']);
 
-                               Authentication::setAuthenticatedSessionForUser($r[0],true,true);
+                               Session::setAuthenticatedForUser($a, $user, true, true);
 
                                // just in case there was no return url set
                                // and we fell through
@@ -63,7 +56,7 @@ function openid_content(App $a) {
                        // Successful OpenID login - but we can't match it to an existing account.
                        // New registration?
 
-                       if (intval(Config::get('config', 'register_policy')) === REGISTER_CLOSED) {
+                       if (intval(Config::get('config', 'register_policy')) === \Friendica\Module\Register::CLOSED) {
                                notice(L10n::t('Account not found and OpenID registration is not permitted on this site.') . EOL);
                                $a->internalRedirect();
                        }
@@ -74,16 +67,16 @@ function openid_content(App $a) {
                        if (is_array($attr) && count($attr)) {
                                foreach ($attr as $k => $v) {
                                        if ($k === 'namePerson/friendly') {
-                                               $nick = notags(trim($v));
+                                               $nick = Strings::escapeTags(trim($v));
                                        }
-                                       if($k === 'namePerson/first') {
-                                               $first = notags(trim($v));
+                                       if ($k === 'namePerson/first') {
+                                               $first = Strings::escapeTags(trim($v));
                                        }
-                                       if($k === 'namePerson') {
-                                               $args .= '&username=' . urlencode(notags(trim($v)));
+                                       if ($k === 'namePerson') {
+                                               $args .= '&username=' . urlencode(Strings::escapeTags(trim($v)));
                                        }
                                        if ($k === 'contact/email') {
-                                               $args .= '&email=' . urlencode(notags(trim($v)));
+                                               $args .= '&email=' . urlencode(Strings::escapeTags(trim($v)));
                                        }
                                        if ($k === 'media/image/aspect11') {
                                                $photosq = bin2hex(trim($v));
@@ -93,21 +86,19 @@ function openid_content(App $a) {
                                        }
                                }
                        }
-                       if ($nick) {
+                       if (!empty($nick)) {
                                $args .= '&nickname=' . urlencode($nick);
-                       }
-                       elseif ($first) {
+                       } elseif (!empty($first)) {
                                $args .= '&nickname=' . urlencode($first);
                        }
 
-                       if ($photosq) {
+                       if (!empty($photosq)) {
                                $args .= '&photo=' . urlencode($photosq);
-                       }
-                       elseif ($photo) {
+                       } elseif (!empty($photo)) {
                                $args .= '&photo=' . urlencode($photo);
                        }
 
-                       $args .= '&openid_url=' . urlencode(notags(trim($authid)));
+                       $args .= '&openid_url=' . urlencode(Strings::escapeTags(trim($authid)));
 
                        $a->internalRedirect('register?' . $args);