CakePHP 初学者です。
https://www.sejuku.net/blog/30688
上記サイトを参考にログイン機能をつけようと考えております。
ただ、
mySQL上に既に作ってあるusersテーブル内のユーザーの、
name と password を入力しても、
ログイン画面ではじかれてしまい、ログインができず困っております。
usersテーブルのカラム
id
group_id
name
password
UsersTable.php ※一部抜粋 public function validationDefault(Validator $validator) { $validator ->integer('id') ->allowEmptyString('id', null, 'create'); $validator ->integer('group_id') ->allowEmptyString('group_id'); $validator ->scalar('name') ->maxLength('name', 50) ->allowEmptyString('name'); $validator ->scalar('password') ->maxLength('password', 50) ->allowEmptyString('password'); return $validator ->notEmpty('name', 'A name is required') ->notEmpty('password', 'A password is required') ->notEmpty('group_id', 'A group_id is required') ->add('group_id', 'inList', [ 'rule' => ['inList', [1,2,3]], 'message' => 'Please enter a valid group' ]); } public function buildRules(RulesChecker $rules) { $rules->add($rules->isUnique(['name'])); return $rules; }
User.php ※一部抜粋 class User extends Entity { /** * Fields that can be mass assigned using newEntity() or patchEntity(). * * Note that when '*' is set to true, this allows all unspecified fields to * be mass assigned. For security purposes, it is advised to set '*' to false * (or remove it), and explicitly make individual fields accessible as needed. * * @var array */ protected $_accessible = [ 'group_id' => true, 'name' => true, 'password' => true, ]; /** * Fields that are excluded from JSON versions of the entity. * * @var array */ protected $_hidden = [ 'password', ]; protected function _setPassword($password) { if (strlen($password) > 0) { return (new DefaultPasswordHasher)->hash($password); } } }
UsersController.php ※一部抜粋 use Cake\Auth\DefaultPasswordHasher; … public function login() { if ($this->request->is('post')) { $user = $this->Auth->identify(); if ($user) { $this->Auth->setUser($user); return $this->redirect($this->Auth->redirectUrl()); }else{ $this->Flash->error(__('Invalid username or password, try again')); } } } public function logout() { return $this->redirect($this->Auth->logout()); }
login.ctp <div class="users form large-9 medium-8 columns content"> <?= $this->Flash->render() ?> <?= $this->Form->create() ?> <fieldset> <legend><?= __('Please enter your name and password') ?></legend> <?= $this->Form->control('name') ?> <?= $this->Form->control('password') ?> </fieldset> <?= $this->Form->button(__('Submit')) ?> <?= $this->Form->end() ?> </div>
因みに上記サイトで作成されているadd.ctp も作成し、
パスワードがハッシュ化されたユーザーを作成し、ログインを試してみても、
同様にログインはできませんでした。
UsersController.phpにおいて、
$user = $this->Auth->identify();
の下に、
dd($this->Auth->setUser($user));
で中身を確認してみたのですが、null になっておりました。
どなたか原因のわかる方、教えていただけると幸いです。
回答1件
あなたの回答
tips
プレビュー