2015-04-18 83 views
1

我有一個登錄表單並且它可以工作,但如果用戶處於活動狀態,我必須添加條件。如果他不活躍,則重定向到某個頁面show_error。我使用的是CodeIgniter。這裏是我的模型:我嘗試了這個函數「is_active_user」,但它不工作。如何檢查用戶是否處於活動狀態,然後註銷

public function login() 
 
    { 
 
     $this->db->select('*'); 
 
     $this->db->from('users');  
 
     $this->db->where('username', $this->input->post('username')); 
 
     $this->db->where('password',sha1($this->input->post('password'))); 
 
     $result=$this->db->get(); 
 
      return $result->row_array();    
 
    } 
 
    public function is_active_user() { 
 
     $this->db->select('*'); 
 
     $this->db->from('users');   
 
     $this->db->where('username', $this->input->post('username')); 
 
     $this->db->where('deactivated_at = "0000-00-00 00:00:00" || deactivated_at IS NULL '); 
 
     $result=$this->db->get(); 
 
      
 
      if($result->num_rows() > 0) 
 
      { 
 
       return $result->row_array(); 
 
       
 
      } 
 
      return false; 
 
       
 
    }

我的控制器:

public function login() 
 
    { 
 
      
 
     $this->load->model('user_model'); 
 
     $user=$this->user_model->login(); 
 
     
 
     $is_active=$this->user_model->is_active_user(); 
 
$this->form_validation->set_rules('username', 'Потребителско име', 'trim|required|callback_login_check'); 
 
     $this->form_validation->set_rules('password', 'Парола', 'trim|required'); 
 

 
     if ($this->form_validation->run()==FALSE) 
 
     { 
 

 
      $this->index(); 
 
     } 
 
     else 
 
     { 
 
      if(count($user) > 0 && count($is_active) > 0)  
 
      { 
 
       $this->load->library('session'); 
 
      
 
       $data = array(
 
        'username' => $user['username'], 
 
        'user_id' => $user['user_id'], 
 
        'is_logged_in' => TRUE, 
 
        'role_id' => $user['role_id'] 
 
       
 
       ); 
 
       $this->session->set_userdata($data);   
 
      
 
      } 
 
     } 
 
    }

如何檢查用戶是否處於活動狀態?

但沒有結果。 現在我試着用:

public function login() 
 
    { 
 

 
     $this->db->select('*'); 
 
     $this->db->from('users');  
 
     $this->db->where('username', $this->input->post('username')); 
 
     $this->db->where('password',sha1($this->input->post('password'))); 
 
     $this->db->where('deactivated_at = "0000-00-00 00:00:00" OR deactivated_at IS NULL'); 
 
     
 
     $result=$this->db->get(); 
 
      return $result->row_array();    
 
    }

但它記錄了我與其他的個人資料,不在此配置文件與用戶名和密碼,我已經填補。

回答

1
public function login() 
{ 
    $this->db->select('*'); 
    $this->db->from('users');  
    $this->db->where('username', $this->input->post('username')); 
    $this->db->where('password',sha1($this->input->post('password'))); 
    $this->db->where('deactivated_at <> "0000-00-00 00:00:00"'); 
    $this->db->where('deactivated_at IS NOT NULL'); 
    $result=$this->db->get(); 
    return $result->row_array();    
} 
+0

謝謝,這個函數更好,而不是另寫一個。 :) –

+0

沒問題。我很高興能夠提供幫助。 – Tpojka

+0

我編輯了我的問題,我不知道爲什麼當我使用此代碼時,我使用另一個配置文件登錄,而不是使用我鍵入的用戶名和密碼登錄。 –

相關問題