コード例 #1
0
ファイル: Login_0.php プロジェクト: 62BRAINS/EPESI
 private function autologin()
 {
     if (Base_User_LoginCommon::autologin()) {
         location(array());
         return true;
     }
     return false;
 }
コード例 #2
0
ファイル: simple_login.php プロジェクト: cretzu89/EPESI
 static function form()
 {
     try {
         $anonymous = Variable::get('anonymous_setup');
     } catch (NoSuchVariableException $e) {
         $anonymous = true;
     }
     if (!Base_AclCommon::is_user() && Base_User_LoginCommon::is_banned()) {
         return self::t('You have exceeded the number of allowed login attempts.');
     }
     require_once 'modules/Libs/QuickForm/requires.php';
     if (!Base_AclCommon::is_user() && !$anonymous) {
         Base_User_LoginCommon::autologin();
     }
     if (!Base_AclCommon::is_user() && !$anonymous) {
         $get = count($_GET) ? '?' . http_build_query($_GET) : '';
         $form = new HTML_QuickForm('loginform', 'post', $_SERVER['PHP_SELF'] . $get);
         $form->setRequiredNote('<span style="font-size:80%; color:#ff0000;">*</span><span style="font-size:80%;">' . self::t('denotes required field') . '</span>');
         $form->addElement('text', 'username', self::t('Username'));
         $form->addRule('username', 'Field required', 'required');
         $form->addElement('password', 'password', self::t('Password'));
         $form->addRule('password', 'Field required', 'required');
         // register and add a rule to check if user is banned
         $form->registerRule('check_user_banned', 'callback', 'rule_login_banned', 'Base_User_LoginCommon');
         $form->addRule('username', self::t('You have exceeded the number of allowed login attempts.'), 'check_user_banned');
         // register and add a rule to check if user and password exists
         $form->registerRule('check_login', 'callback', 'submit_login', 'Base_User_LoginCommon');
         $form->addRule(array('username', 'password'), self::t('Login or password incorrect'), 'check_login', $form);
         $form->addElement('submit', null, self::t('Login'));
         if ($form->validate()) {
             $user = $form->exportValue('username');
             Base_AclCommon::set_user(Base_UserCommon::get_user_id($user), true);
             // redirect below is used to better browser refresh behavior.
             header('Location: ' . $_SERVER['REQUEST_URI']);
         } else {
             return "<center>" . $form->toHtml() . "</center>";
         }
     }
 }
コード例 #3
0
ファイル: LoginCommon_0.php プロジェクト: cretzu89/EPESI
    }
    public static function mobile_login()
    {
        $t = Variable::get('host_ban_time');
        if ($t > 0) {
            $fails = DB::GetOne('SELECT count(*) FROM user_login_ban WHERE failed_on>%d AND from_addr=%s', array(time() - $t, get_client_ip_address()));
            if ($fails >= 3) {
                print __('You have exceeded the number of allowed login attempts.') . '<br>';
                print '<a href="' . get_epesi_url() . '">' . __('Host banned. Click here to refresh.') . '</a>';
                return;
            }
        }
        $qf = new HTML_QuickForm('login', 'post', 'mobile.php?' . http_build_query($_GET));
        $qf->addElement('text', 'username', __('Login'));
        $qf->addElement('password', 'password', __('Password'));
        $qf->addElement('submit', 'submit_button', __('Login'));
        $qf->registerRule('check_login', 'callback', 'submit_login', 'Base_User_LoginCommon');
        $qf->addRule(array('username', 'password'), __('Login or password incorrect'), 'check_login');
        $qf->addRule('username', __('Field required'), 'required');
        $qf->addRule('password', __('Field required'), 'required');
        if ($qf->validate()) {
            self::set_logged($qf->exportValue('username'));
            self::new_autologin_id();
            return false;
        }
        $qf->display();
    }
}
if (!Acl::is_user()) {
    Base_User_LoginCommon::autologin();
}