前提・実現したいこと
Controller、Templateをフォルダ分けして、ルーティングを変更しました。
その際、階層に分けたルーティングは正常に動いていると思うのですが、AppControllerに書いたログイン認証が機能していませんでした。
階層
Controller/
├AppControler
├LoginController
Admin/
├AppControler ←これが機能していない
├LoginManegerController
├TopManagerController
Template/
├Login
Admin/
├LoginManeger
├TopManagerController
※拡張子は省略しております。
発生している問題・エラーメッセージ
http://localhost/myapp/admin/loginManager
にアクセスは出来るのですが、
LoginManagerController内のloginメソッドに処理がとびません。
リロードがされるだけです。
また、
http://localhost/myapp/admin/TopManager
にアクセスを行うと、
http://localhost/myapp/admin/login/login?redirect=%2Fadmin%2FTopManager
にリダイレクトされ、
Error: LoginController could not be found. と表示されます。
該当のソースコード
routes.php に以下を追加
Router::prefix('admin', function (RouteBuilder $routes) { $routes->connect('/', ['controller' => 'Pages', 'action' => 'index']); $routes->fallbacks(DashedRoute::class); });
Admin/AppControler
<?php /** * CakePHP(tm) : Rapid Development Framework (https://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain the above copyright notice. * * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) * @link https://cakephp.org CakePHP(tm) Project * @since 0.2.9 * @license https://opensource.org/licenses/mit-license.php MIT License */ namespace App\Controller\Admin; use Cake\Controller\Controller; use Cake\Event\Event; /** * Application Controller * * Add your application-wide methods in the class below, your controllers * will inherit them. * * @link https://book.cakephp.org/3.0/en/controllers.html#the-app-controller */ class AppController extends Controller { /** * Initialization hook method. * * Use this method to add common initialization code like loading components. * * e.g. `$this->loadComponent('Security');` * * @return void */ public function initialize() { parent::initialize(); $this->loadComponent('RequestHandler', [ 'enableBeforeRedirect' => false, ]); $this->loadComponent('Flash'); $this->loadComponent('Auth', [ 'loginAction' => [ 'controller' => 'LoginManager', 'action' => 'login' ], 'loginRedirect' => [ 'controller' => 'TopManager', 'action' => 'index' ], 'logoutRedirect' => [ 'controller' => 'LoginManager', 'action' => 'logout' ], 'authenticate' => [ 'Form' => [ 'userModel' => 'Admin', 'fields' => [ 'username' => 'login_id', 'password' => 'password' ],'finder' => 'auth' ] ] ]); /* * Enable the following component for recommended CakePHP security settings. * see https://book.cakephp.org/3.0/en/controllers/components/security.html */ //$this->loadComponent('Security'); } // 共通処理 public function beforeFilter(Event $event) { } }
LoginManegerController
<?php namespace App\Controller\Admin; use Cake\ORM\TableRegistry; use Cake\Auth\DefaultPasswordHasher; use \Exception; use Cake\Event\Event; use Cake\Utility\Security; class LoginManagerController extends AppController { // 認証を通さないアクションを設定 public function beforeFilter(Event $event) { parent::initialize(); $this->Auth->allow(['index','login','logout']); } public function index() { } public function login(){ if ($this->request->is('post')) { $user = $this->Auth->identify(); if ($user) { $this->Auth->setUser($user); return $this->redirect($this->Auth->redirectUrl()); } } } public function logout() { } } ?>
LoginManager
<!DOCTYPE html> <html lang="ja"> <head> <?= $this->Html->charset() ?> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>管理者ログイン画面</title> <?= $this->Html->meta('icon') ?> <?= $this->Html->css('base.css') ?> <?= $this->Html->css('style.css') ?> <?= $this->Html->css('header.css') ?> <?= $this->fetch('meta') ?> <?= $this->fetch('css') ?> <?= $this->fetch('script') ?> </head> <body> <h1>管理者ログイン画面</h1> <?php echo $this->Form->create(); echo $this->Form->control('login_id',['type'=>'text','label'=>__('Login ID'),'id' => 'login_id', "maxlength"=>"255"]); echo $this->Form->control('password',['type'=>'password','label'=>__('Password'),'id' => 'password', "maxlength"=>"255"]); echo $this->Form->button('Login'); echo $this->Form->end(); ?> </body> </html>
Admin/配下の
AppControllerのログイン認証を正常に動かすには、
どのように修正すればよろしいでしょうか?
大変恐縮ですが、分かる方どなたか
アドバイスのほどよろしくお願いいたします。
補足情報(FW/ツールのバージョンなど)
cakephp3.7
php 7.2
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。