前提・実現したいこと
PHP(CakePHP)で、画面で入力された値をチェックして画面遷移させようとしています。
入力ページindex.phpから入力内容確認ページconfirm.phpに遷移させるにあたり、
入力内容の検証にモデルのないフォームを使おうとしたのですが、検証が引っかかってくれません。
具体的には、入力必須の項目に何も入力されていないときにvalidateのエラーが発生する状態にしたいのです。
CakePHPに精通している方いらっしゃいましたら、ご教授の程宜しくお願い致します。
該当のソースコード
Controller\TestController.php
PHP
1<?php 2 3namespace App\Controller; 4 5use App\Controller\AppController; 6use Cake\Datasource\ConnectionManager; 7use App\Form\ContactForm; 8 9session_start(); 10 11class TestController extends AppController { 12 public function initialize(): void { 13 $this->viewBuilder()->setLayout('test'); 14 } 15 16 // 中略 // 17 18 public function confirm() { 19 20 // 入力内容を格納 21 $data = $this->request->getQuery(); 22 23 $form = new ContactForm(); 24 25 // ValidationしてOKだったら次画面に遷移 26 // ValidationしてNGだったら自画面に戻る 27 if ($form->execute($data)) { 28 29 // Validationエラー無し時の処理 // 30 31 } else { 32 33 // Validationエラー有り時の処理 // 34 35 } 36 } 37 38 // 中略 // 39}
Form\ContactForm.php
PHP
1<?php 2 3namespace App\Form; 4 5use Cake\Form\Form; 6use Cake\Form\Schema; 7use Cake\Validation\Validator; 8 9class ContactForm extends Form { 10 11 protected function _buildSchema(Schema $schema): Schema { 12 return $schema 13 ->addField('id', 'string') 14 ->addField('password', 'string'); 15 // 本来はもっと多くの項目が並びます // 16 } 17 18 protected function _buildValidator(Validator $validator): bool { 19 return $validator 20 ->notBlank('id', 'ユーザーIDを入力してください。') 21 ->notBlank('password', 'パスワードを入力してください。'); 22 // 本来はもっと多くの項目が並びます // 23 } 24 25 protected function _execute(array $data): bool { 26 return TRUE; 27 } 28}
templates\Test\index.php
PHP
1<!DOCTYPE html> 2<html lang="ja"> 3<head> 4<meta charset="UTF-8"> 5<title>ユーザー登録フォーム</title> 6</head> 7<body> 8 <div class="container"> 9 <h1>ユーザー登録フォーム</h1> 10 <form action="/test/confirm" method="get"> 11 <table border="1"> 12 <tr> 13 <th>項目</th> 14 <th>内容</th> 15 </tr> 16 <tr> 17 <td>ユーザーID</td> 18 <td> 19 <input type="text" name="id" maxlength="8"> 20 </td> 21 </tr> 22 <tr> 23 <td>パスワード</td> 24 <td> 25 <input type="password" name="password" maxlength="16"> 26 </td> 27 </tr> 28 <!-- 中略 --> 29 </table> 30 <div class="button"> 31 <!-- 中略 --> 32 </div> 33 </form> 34 </div> 35</body> 36</html>
templates\Test\confirm.php
PHP
1<!DOCTYPE html> 2<html lang="ja"> 3<head> 4<meta charset="UTF-8"> 5<title>ユーザー登録フォーム(確認)</title> 6</head> 7<body> 8 <div class="container"> 9 <h1>ユーザー登録フォーム(確認)</h1> 10 <form action="/test/add" method="post"> 11 <table border="1"> 12 <tr> 13 <th>項目</th> 14 <th>内容</th> 15 </tr> 16 <tr> 17 <td>ユーザーID</td> 18 <td> 19 <input type="text" name="id" value="<?= h($id) ?>" maxlength="8" disabled> 20 </td> 21 </tr> 22 <tr> 23 <td>パスワード</td> 24 <td> 25 <input type="password" name="password" value="●●●●" maxlength="16" disabled> 26 </td> 27 </tr> 28 <!-- 中略 --> 29 </table> 30 <div class="button"> 31 <!-- 中略 --> 32 </div> 33 </form> 34 </div> 35</body> 36</html>
試したこと
デバッグして処理を追ったところ、
・テキストフォームに未入力、入力した場合の両方がValidationエラー無しの処理になる
・Controllerの$dataには意図したテキスト(もしくは空白、nullではない)がきちんと入っている
・src\Validation\Validator.phpの validate(array $data, bool $newRecord = true) のうち、241~277行目(以下のソース)の処理が行われていない。$name及び$fieldが未定義となっている(この辺りは関係あるかどうかあまり自信がありません…)
PHP
1foreach ($this->_fields as $name => $field) { 2 $keyPresent = array_key_exists($name, $data); 3 4 $providers = $this->_providers; 5 $context = compact('data', 'newRecord', 'field', 'providers'); 6 7 if (!$keyPresent && !$this->_checkPresence($field, $context)) { 8 $errors[$name]['_required'] = $this->getRequiredMessage($name); 9 continue; 10 } 11 if (!$keyPresent) { 12 continue; 13 } 14 15 $canBeEmpty = $this->_canBeEmpty($field, $context); 16 17 $flags = static::EMPTY_NULL; 18 if (isset($this->_allowEmptyFlags[$name])) { 19 $flags = $this->_allowEmptyFlags[$name]; 20 } 21 22 $isEmpty = $this->isEmpty($data[$name], $flags); 23 24 if (!$canBeEmpty && $isEmpty) { 25 $errors[$name]['_empty'] = $this->getNotEmptyMessage($name); 26 continue; 27 } 28 29 if ($isEmpty) { 30 continue; 31 } 32 33 $result = $this->_processRules($name, $field, $data, $newRecord); 34 if ($result) { 35 $errors[$name] = $result; 36 } 37 }
補足情報(FW/ツールのバージョンなど)
xampp 7.4.11
apache 2.4.46
MariaDB 10.4.17
php 8.0.0
cakePHP 4.2.1