Skip to content
Extraits de code Groupes Projets
Controller.php 15,8 ko
Newer Older
  • Learn to ignore specific revisions
  • <?php
    /**
     * Piwik - Open source web analytics
    
    mattpiwik's avatar
    mattpiwik a validé
     *
    
     * @link http://piwik.org
    
    robocoder's avatar
    robocoder a validé
     * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
    
    mattpiwik's avatar
    mattpiwik a validé
     *
    
    robocoder's avatar
    robocoder a validé
     * @category Piwik_Plugins
    
     * @package Piwik_Login
     */
    
    /**
    
    robocoder's avatar
    robocoder a validé
     *
    
     * @package Piwik_Login
     */
    class Piwik_Login_Controller extends Piwik_Controller
    {
    
    19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
        /**
         * Generate hash on user info and password
         *
         * @param string $userinfo User name, email, etc
         * @param string $password
         * @return string
         */
        private function generateHash($userInfo, $password)
        {
            // mitigate rainbow table attack
            $passwordLen = strlen($password) / 2;
            $hash = Piwik_Common::hash(
                $userInfo . substr($password, 0, $passwordLen)
                    . Piwik_Common::getSalt() . substr($password, $passwordLen)
            );
            return $hash;
        }
    
        /**
         * Default action
         *
         * @param none
         * @return void
         */
        function index()
        {
            $this->login();
        }
    
        /**
         * Login form
         *
         * @param string $messageNoAccess Access error message
         * @param string $currentUrl Current URL
         * @return void
         */
        function login($messageNoAccess = null, $infoMessage = false)
        {
            self::checkForceSslLogin();
    
            $form = new Piwik_Login_FormLogin();
            if ($form->validate()) {
                $nonce = $form->getSubmitValue('form_nonce');
                if (Piwik_Nonce::verifyNonce('Piwik_Login.login', $nonce)) {
                    $login = $form->getSubmitValue('form_login');
                    $password = $form->getSubmitValue('form_password');
                    $rememberMe = $form->getSubmitValue('form_rememberme') == '1';
                    $md5Password = md5($password);
                    try {
                        $this->authenticateAndRedirect($login, $md5Password, $rememberMe);
                    } catch (Exception $e) {
                        $messageNoAccess = $e->getMessage();
                    }
                } else {
                    $messageNoAccess = $this->getMessageExceptionNoAccess();
                }
            }
    
            $view = Piwik_View::factory('login');
            $view->AccessErrorString = $messageNoAccess;
            $view->infoMessage = nl2br($infoMessage);
            $view->addForm($form);
            $this->configureView($view);
            self::setHostValidationVariablesView($view);
            echo $view->render();
        }
    
        /**
         * Configure common view properties
         *
         * @param Piwik_View $view
         */
        private function configureView($view)
        {
            $this->setBasicVariablesView($view);
    
            $view->linkTitle = Piwik::getRandomTitle();
    
            $view->forceSslLogin = Piwik_Config::getInstance()->General['force_ssl_login'];
    
            // crsf token: don't trust the submitted value; generate/fetch it from session data
            $view->nonce = Piwik_Nonce::getNonce('Piwik_Login.login');
        }
    
        /**
         * Form-less login
         * @see how to use it on http://piwik.org/faq/how-to/#faq_30
         * @throws Exception
         * @return void
         */
        function logme()
        {
            self::checkForceSslLogin();
    
            $password = Piwik_Common::getRequestVar('password', null, 'string');
            if (strlen($password) != 32) {
                throw new Exception(Piwik_TranslateException('Login_ExceptionPasswordMD5HashExpected'));
            }
    
            $login = Piwik_Common::getRequestVar('login', null, 'string');
            if ($login == Piwik_Config::getInstance()->superuser['login']) {
                throw new Exception(Piwik_TranslateException('Login_ExceptionInvalidSuperUserAuthenticationMethod', array("logme")));
            }
    
            $currentUrl = 'index.php';
    
            if (($idSite = Piwik_Common::getRequestVar('idSite', false, 'int')) !== false) {
                $currentUrl .= '?idSite=' . $idSite;
            }
    
            $urlToRedirect = Piwik_Common::getRequestVar('url', $currentUrl, 'string');
            $urlToRedirect = Piwik_Common::unsanitizeInputValue($urlToRedirect);
    
            $this->authenticateAndRedirect($login, $password, false, $urlToRedirect);
        }
    
        /**
         * Authenticate user and password.  Redirect if successful.
         *
         * @param string $login user name
         * @param string $md5Password md5 hash of password
         * @param bool $rememberMe Remember me?
         * @param string $urlToRedirect URL to redirect to, if successfully authenticated
         * @return string failure message if unable to authenticate
         */
        protected function authenticateAndRedirect($login, $md5Password, $rememberMe, $urlToRedirect = 'index.php')
        {
            $info = array('login'       => $login,
                          'md5Password' => $md5Password,
                          'rememberMe'  => $rememberMe,
            );
            Piwik_Nonce::discardNonce('Piwik_Login.login');
            Piwik_PostEvent('Login.initSession', $info);
            Piwik_Url::redirectToUrl($urlToRedirect);
        }
    
        protected function getMessageExceptionNoAccess()
        {
            $message = Piwik_Translate('Login_InvalidNonceOrHeadersOrReferer', array('<a href="?module=Proxy&action=redirect&url=' . urlencode('http://piwik.org/faq/how-to-install/#faq_98') . '" target="_blank">', '</a>'));
            // Should mention trusted_hosts or link to FAQ
            return $message;
        }
    
        /**
         * Reset password action. Stores new password as hash and sends email
         * to confirm use.
         *
         * @param none
         * @return void
         */
        function resetPassword()
        {
            self::checkForceSslLogin();
    
            $infoMessage = null;
            $formErrors = null;
    
            $form = new Piwik_Login_FormResetPassword();
            if ($form->validate()) {
                $nonce = $form->getSubmitValue('form_nonce');
                if (Piwik_Nonce::verifyNonce('Piwik_Login.login', $nonce)) {
                    $formErrors = $this->resetPasswordFirstStep($form);
                    if (empty($formErrors)) {
                        $infoMessage = Piwik_Translate('Login_ConfirmationLinkSent');
                    }
                } else {
                    $formErrors = array($this->getMessageExceptionNoAccess());
                }
            } else {
                // if invalid, display error
                $formData = $form->getFormData();
                $formErrors = $formData['errors'];
            }
    
            $view = Piwik_View::factory('message');
            $view->infoMessage = $infoMessage;
            $view->formErrors = $formErrors;
            echo $view->render();
        }
    
        /**
         * Saves password reset info and sends confirmation email.
         *
         * @return array Error message(s) if an error occurs.
         */
        private function resetPasswordFirstStep($form)
        {
            $loginMail = $form->getSubmitValue('form_login');
            $token = $form->getSubmitValue('form_token');
            $password = $form->getSubmitValue('form_password');
    
            // check the password
            try {
                Piwik_UsersManager::checkPassword($password);
            } catch (Exception $ex) {
                return array($ex->getMessage());
            }
    
            // get the user's login
            if ($loginMail === 'anonymous') {
                return array(Piwik_Translate('Login_InvalidUsernameEmail'));
            }
    
            $user = self::getUserInformation($loginMail);
            if ($user === null) {
                return array(Piwik_Translate('Login_InvalidUsernameEmail'));
            }
    
            $login = $user['login'];
    
            // if valid, store password information in options table, then...
            Piwik_Login::savePasswordResetInfo($login, $password);
    
            // ... send email with confirmation link
            try {
                $this->sendEmailConfirmationLink($user);
            } catch (Exception $ex) {
                // remove password reset info
                Piwik_Login::removePasswordResetInfo($login);
    
                return array($ex->getMessage() . '<br/>' . Piwik_Translate('Login_ContactAdmin'));
            }
    
            return null;
        }
    
        /**
         * Sends email confirmation link for a password reset request.
         *
         * @param array $user User info for the requested password reset.
         */
        private function sendEmailConfirmationLink($user)
        {
            $login = $user['login'];
            $email = $user['email'];
    
            // construct a password reset token from user information
            $resetToken = self::generatePasswordResetToken($user);
    
            $ip = Piwik_IP::getIpFromHeader();
            $url = Piwik_Url::getCurrentUrlWithoutQueryString()
                . "?module=Login&action=confirmResetPassword&login=" . urlencode($login)
                . "&resetToken=" . urlencode($resetToken);
    
            // send email with new password
            $mail = new Piwik_Mail();
            $mail->addTo($email, $login);
            $mail->setSubject(Piwik_Translate('Login_MailTopicPasswordChange'));
            $bodyText = str_replace(
                '\n',
                "\n",
                sprintf(Piwik_Translate('Login_MailPasswordChangeBody'), $login, $ip, $url)
            ) . "\n";
            $mail->setBodyText($bodyText);
    
            $fromEmailName = Piwik_Config::getInstance()->General['login_password_recovery_email_name'];
            $fromEmailAddress = Piwik_Config::getInstance()->General['login_password_recovery_email_address'];
            $mail->setFrom($fromEmailAddress, $fromEmailName);
            @$mail->send();
        }
    
        /**
         * Password reset confirmation action. Finishes the password reset process.
         * Users visit this action from a link supplied in an email.
         */
        public function confirmResetPassword()
        {
            $errorMessage = null;
    
            $login = Piwik_Common::getRequestVar('login', '');
            $resetToken = Piwik_Common::getRequestVar('resetToken', '');
    
            try {
                // get password reset info & user info
                $user = self::getUserInformation($login);
                if ($user === null) {
                    throw new Exception(Piwik_Translate('Login_InvalidUsernameEmail'));
                }
    
                // check that the reset token is valid
                $resetPassword = Piwik_Login::getPasswordToResetTo($login);
                if ($resetPassword === false || !self::isValidToken($resetToken, $user)) {
                    throw new Exception(Piwik_Translate('Login_InvalidOrExpiredToken'));
                }
    
                // reset password of user
                $this->setNewUserPassword($user, $resetPassword);
            } catch (Exception $ex) {
                $errorMessage = $ex->getMessage();
            }
    
            if (is_null($errorMessage)) // if success, show login w/ success message
            {
                $this->redirectToIndex('Login', 'resetPasswordSuccess');
            } else {
                // show login page w/ error. this will keep the token in the URL
                return $this->login($errorMessage);
            }
        }
    
        /**
         * Sets the password for a user.
         *
         * @param array $user User info.
         * @param string $passwordHash The hashed password to use.
         */
        private function setNewUserPassword($user, $passwordHash)
        {
            if (strlen($passwordHash) !== 32) // sanity check
            {
                throw new Exception(
                    "setNewUserPassword called w/ incorrect password hash. Something has gone terribly wrong.");
            }
    
            if ($user['email'] == Piwik::getSuperUserEmail()) {
                if (!Piwik_Config::getInstance()->isFileWritable()) {
                    throw new Exception(Piwik_Translate('General_ConfigFileIsNotWritable', array("(config/config.ini.php)", "<br/>")));
                }
    
                $user['password'] = $passwordHash;
                Piwik_Config::getInstance()->superuser = $user;
                Piwik_Config::getInstance()->forceSave();
            } else {
                Piwik_UsersManager_API::getInstance()->updateUser(
                    $user['login'], $passwordHash, $email = false, $alias = false, $isPasswordHashed = true);
            }
        }
    
        /**
         * The action used after a password is successfully reset. Displays the login
         * screen with an extra message. A separate action is used instead of returning
         * the HTML in confirmResetPassword so the resetToken won't be in the URL.
         */
        public function resetPasswordSuccess()
        {
            return $this->login($errorMessage = null, $infoMessage = Piwik_Translate('Login_PasswordChanged'));
        }
    
        /**
         * Get user information
         *
         * @param string $loginMail user login or email address
         * @return array ("login" => '...', "email" => '...', "password" => '...') or null, if user not found
         */
        protected function getUserInformation($loginMail)
        {
            Piwik::setUserIsSuperUser();
    
            $user = null;
            if ($loginMail == Piwik::getSuperUserEmail()
                || $loginMail == Piwik_Config::getInstance()->superuser['login']
            ) {
                $user = array(
                    'login'    => Piwik_Config::getInstance()->superuser['login'],
                    'email'    => Piwik::getSuperUserEmail(),
                    'password' => Piwik_Config::getInstance()->superuser['password'],
                );
            } else if (Piwik_UsersManager_API::getInstance()->userExists($loginMail)) {
                $user = Piwik_UsersManager_API::getInstance()->getUser($loginMail);
            } else if (Piwik_UsersManager_API::getInstance()->userEmailExists($loginMail)) {
                $user = Piwik_UsersManager_API::getInstance()->getUserByEmail($loginMail);
            }
    
            return $user;
        }
    
        /**
         * Generate a password reset token.  Expires in (roughly) 24 hours.
         *
         * @param array user information
         * @param int $timestamp Unix timestamp
         * @return string generated token
         */
        protected function generatePasswordResetToken($user, $timestamp = null)
        {
            /*
             * Piwik does not store the generated password reset token.
             * This avoids a database schema change and SQL queries to store, retrieve, and purge (expired) tokens.
             */
            if (!$timestamp) {
                $timestamp = time() + 24 * 60 * 60; /* +24 hrs */
            }
    
            $expiry = strftime('%Y%m%d%H', $timestamp);
            $token = $this->generateHash(
                $expiry . $user['login'] . $user['email'],
                $user['password']
            );
            return $token;
        }
    
        /**
         * Validate token.
         *
         * @param string $token
         * @param array $user user information
         * @return bool true if valid, false otherwise
         */
        protected function isValidToken($token, $user)
        {
            $now = time();
    
            // token valid for 24 hrs (give or take, due to the coarse granularity in our strftime format string)
            for ($i = 0; $i <= 24; $i++) {
                $generatedToken = self::generatePasswordResetToken($user, $now + $i * 60 * 60);
                if ($generatedToken === $token) {
                    return true;
                }
            }
    
            // fails if token is invalid, expired, password already changed, other user information has changed, ...
            return false;
        }
    
        /**
         * Clear session information
         *
         * @param none
         * @return void
         */
        static public function clearSession()
        {
            $authCookieName = Piwik_Config::getInstance()->General['login_cookie_name'];
            $cookie = new Piwik_Cookie($authCookieName);
            $cookie->delete();
    
            Piwik_Session::expireSessionCookie();
        }
    
        /**
         * Logout current user
         *
         * @param none
         * @return void
         */
        public function logout()
        {
            self::clearSession();
    
            $logoutUrl = @Piwik_Config::getInstance()->General['login_logout_url'];
            if (empty($logoutUrl)) {
                Piwik::redirectToModule('CoreHome');
            } else {
                Piwik_Url::redirectToUrl($logoutUrl);
            }
        }
    
        /**
         * Check force_ssl_login and redirect if connection isn't secure and not using a reverse proxy
         *
         * @param none
         * @return void
         */
        protected function checkForceSslLogin()
        {
            $forceSslLogin = Piwik_Config::getInstance()->General['force_ssl_login'];
            if ($forceSslLogin
                && !Piwik::isHttps()
            ) {
                $url = 'https://'
                    . Piwik_Url::getCurrentHost()
                    . Piwik_Url::getCurrentScriptName()
                    . Piwik_Url::getCurrentQueryString();
                Piwik_Url::redirectToUrl($url);
            }
        }