Overview

Namespaces

  • Inteve
    • Application

Traits

  • Inteve\Application\TFlashMessages
  • Inteve\Application\TSecured
  • Overview
  • Namespace
  • Class
 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 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: 
<?php

    namespace Inteve\Application;

    use Nette\Application\ForbiddenRequestException;


    /**
     * Example:
     * startup() {
     *   $this->checkUserRelogin('signIn', 'Přihlašte se prosím', 'Byl jste odhlášen z důvodu neaktivity');
     * }
     */
    trait TSecured
    {
        /**
         * @param  string
         * @param  string|NULL
         * @param  string|NULL
         * @return void
         */
        protected function checkUserRelogin($presenter, $message = NULL, $inactivityMessage = NULL)
        {
            if ($this->isNeedUserRelogin()) {
                if ($this->isLoggedOutByInactivity() && $inactivityMessage !== NULL) {
                    $this->flashMessage($inactivityMessage);

                } elseif ($message !== NULL) {
                    $this->flashMessage($message);
                }
                $this->redirect($presenter, array('backlink' => $this->storeRequest()));
            }
        }


        /**
         * @return bool
         * @throws ForbiddenRequestException  in AJAX mode
         */
        protected function isNeedUserRelogin()
        {
            if (!$this->user->isLoggedIn()) {
                if ($this->isAjax()) {
                    throw new ForbiddenRequestException('User is not logged in.');
                }

                return TRUE;
            }
            return FALSE;
        }


        /**
         * @return bool
         */
        protected function isLoggedOutByInactivity()
        {
            return $this->getUser()->getLogoutReason() === \Nette\Http\UserStorage::INACTIVITY;
        }
    }
inteve/application v1.0.0 API documentation API documentation generated by ApiGen