電子メールを送信するための基本的な HTML フォームがあるとします。
<form action="contactSubmit" method="POST">
<label for="name" class="italic">Name:</label>
<input type="text" name="name" value="" maxlength="20" required="required" autofocus="autofocus" />
<label for="email" class="italic">E-mail:</label>
<input type="email" name="reply_to" value="" maxlength="255" required="required" />
<label for="comments" class="italic">Comments:</label>
<textarea name="message" rows="10" cols="50" required="required"></textarea>
<br />
<input type="submit" class="submit" value="Send" />
</form>
現在、すべての検証はコントローラーで行われています。
// submit contact request
public function contactSubmit() {
// process form if submitted
if ( $this->formSubmit() ) {
// validate input
$name = isset($_POST['name']) && $this->validate($_POST['name'], null, 20) ? $_POST['name'] : null;
$reply_to = isset($_POST['reply_to']) && $this->validate($_POST['reply_to'], 'email', 255) ? $_POST['reply_to'] : null;
$message = isset($_POST['message']) && $this->validate($_POST['message']) ? $_POST['message'] : null;
// proceed if required fields were validated
if ( isset( $name, $reply_to, $message ) ) {
$to = WEBMASTER;
$from = 'nobody@' . $_SERVER['SERVER_NAME'];
$reply_to = $name . ' <' . $reply_to . '>';
$subject = $_SERVER['SERVER_NAME'] . ' - Contact Form';
// send message
$mail = $this->model->build('mail');
if ( $mail->send($to, $from, $reply_to, $subject, $message ) ) {
$_SESSION['success'] = 'Your message was sent successfully.';
} else {
// preserve input
$_SESSION['preserve'] = $_POST;
// highlight errors
$_SESSION['failed'] = 'The mail() function failed.';
}
} else {
// preserve input
$_SESSION['preserve'] = $_POST;
// highlight errors
if ( !isset( $name ) ) {
$_SESSION['failed']['name'] = 'Please enter your name.';
}
if ( !isset( $reply_to ) ) {
$_SESSION['failed']['reply_to'] = 'Please enter a valid e-mail.';
}
if ( !isset( $message ) ) {
$_SESSION['failed']['message'] = 'Please enter your comments.';
}
}
}
$this->view->redirect('contact');
}
「ファット コントローラー」から離れて「ファット モデル」に移行したいのですが、前のコントローラーから前のモデルに検証をきれいに移植する方法を一生理解できません。
public function send( $to, $from, $reply_to, $subject, $message ) {
// generic headers
$headers = 'MIME-Version: 1.0' . PHP_EOL;
$headers .= 'From: ' . $from . PHP_EOL; // should belong to a domain on the server
$headers .= 'Reply-to: ' . $reply_to . PHP_EOL;
// send message
return mail( $to, $subject, $message, $headers );
}
フォームには 3 つの必須フィールドしかありませんが、モデルのメソッドは 5 つを受け入れます。フォーム フィールドの説明は入力名とは異なるため、他のアプリケーションで使用するためにモデルを移植可能に保ちながら、エラー メッセージをカスタマイズすることが難しくなっています。私が行うすべての試みは途方もなく太ってしまい、それでも最初のアプローチと同じ柔軟性を達成していないようです.
カスタムエラーメッセージの柔軟性を維持し、他のアプリケーションで使用するためのモデルの移植性を維持しながら、コントローラーからモデルに検証を移動するクリーンな方法を誰かが教えてくれませんか?