Usersテーブル以外のテーブルで認証
Usersテーブル以外でloginを実現させたいです。
ただ他サイトを参照していますがなかなか実現致しません。
テーブル自体は、読み込んでいると思いますが謎エラーにより捕まっています…。
どうすればこのエラーから抜け出せるでしょうか…?
またその解決策を調べた検索文字も教えていただけると嬉しいです…。
どうぞよろしくお願い致します。
フレームワーク cakephp4
php 7.3
OS Linux
発生している問題・エラーメッセージ
該当のソースコード
Members.php
php
1public function login() 2 { 3 $title = 'ログイン'; 4 $this->request->allowMethod(['get', 'post']); 5 $result = $this->Authentication->getResult(); 6 // Log::debug(print_r($result->isValid(), true)); 7 // POST, GET を問わず、ユーザーがログインしている場合はリダイレクトします 8 if ($result->isValid()) { 9 // redirect to /articles after login success 10 $redirect = $this->request->getQuery('redirect', [ 11 'controller' => 'members', 12 'action' => 'index', 13 ]); 14 15 return $this->redirect($redirect); 16 } 17 // ユーザーが submit 後、認証失敗した場合は、エラーを表示します 18 if ($this->request->is('post') && !$result->isValid()) { 19 $this->Flash->error(__('Invalid username or password')); 20 } 21 $this->set(compact('title')); 22 }
Application.php
php
1$service = new AuthenticationService([ 2 'unauthenticatedRedirect' => Router::url('/members/login'), 3 'queryParam' => 'redirect', 4 ]); 5 6 // identifiers を読み込み、username と password のフィールドを確認します 7 $service->loadIdentifier('Authentication.Password', [ 8 'fields' => [ 9 'username' => 'email', 10 'password' => 'password', 11 ], 12 'resolver' => [ 13 'classname' => 'Authentication.Orm', 14 'userModel' => 'Members' 15 ], 16 ]); 17 18 // authenticatorsをロードしたら, 最初にセッションが必要です 19 $service->loadAuthenticator('Authentication.Session'); 20 // 入力した username と password をチェックする為のフォームデータを設定します 21 $service->loadAuthenticator('Authentication.Form', [ 22 'fields' => [ 23 'username' => 'email', 24 'password' => 'password', 25 ], 26 'loginUrl' => Router::url('/members/login'), 27 ]); 28 } 29 return $service;
あなたの回答
tips
プレビュー