Authコンポーネントを使用しログイン機能を実施
現在cookbookのチュートリアルを参考にログイン処理を実行しようをしています。
新規登録をした後にDBに保存んしてあるユーザーのemailカラムとpasswordカラムを使用しログインを実行したいのですが保存してあるメールとパスワード入力してもエラーとなってしまします。何か原因がわかるかたご指摘いただけると幸いです。
使用テーブル usersテーブル
CREATE TABLE `users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, `email` varchar(254) DEFAULT NULL, `password` varchar(255) DEFAULT NULL, `created` datetime DEFAULT NULL, `modified` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `mail` (`email`)
AppController.php
- login後はpostsのindexへリダイレクト
- ログアウト後postsのindexへリダイレクト
- ログインで使用するカラムをemailとpasswordにする
- 全てのcontollerのindexとviewはログイン不要
- login指定いる人の情報をviewへ送る
class AppController extends Controller { public $helpers = array('Html', 'Form', 'Flash'); public $components = array( 'DebugKit.Toolbar', 'Flash', 'Session', 'Auth' => array( 'loginRedirect' => array( 'controller' => 'posts', 'action' => 'index' ), 'logoutRedirect' => array( 'controller' => 'posts', 'action' => 'index' ), 'authenticate' => array( 'Form' => array( 'fields' => array( 'username' => 'email', 'password' => 'password' ) ) ), 'loginAction' => array( 'controller' => 'users', 'action' => 'login' ) ) ); public function beforeFilter() { $this->Auth->allow('index', 'view'); $this->set('auth', $this->Auth->user()); } }
UsersController.php
- addとlogin,logoutはログイン不要
- 会員登録処理
- ログイン処理
- ログアウト処理
class UsersController extends AppController { public function beforeFilter() { parent::beforeFilter(); $this->Auth->allow('add', 'login', 'logout'); } //新規会員登録 public function add() { if ($this->request->is('post')) { $this->User->create(); if ($this->User->save($this->request->data)) { $this->Flash->success(__('登録完了しました')); return $this->redirect(array('controller' => 'posts', 'action' => 'index')); } $this->Flash->error(__('登録に失敗しました。再入力してください')); } } //ログイン public function login() { if ($this->request->is('post')) { if ($this->Auth->login()) { $this->Flash->success(__('ログインに成功しました')); $this->redirect($this->Auth->redirect()); } else { $this->Flash->error(__('メールアドレスまたは、パスワードが違います')); } } } //ログアウト public function logout() { $this->redirect($this->Auth->logout()); } }
あなたの回答
tips
プレビュー