我在我的项目中使用 Kohana 3.3,我正在尝试让用户注册和登录工作。我正在使用 ORM 的 Auth 和 Kostache 来管理我的布局/模板。
我如何能:
- 检查用户名是否已经存在?如果它确实返回 error_msg.mustache 一条消息“用户已存在”
- 根据我的模型规则检查用户名和电子邮件是否有效?如果不返回错误消息到 error_msg.mustache 指示验证失败
在我的控制器中,我有:
class Controller_User extends Controller {
public function action_signup()
{
$renderer = Kostache_Layout::factory();
$this->response->body($renderer->render(new View_FrontEnd_User, 'frontend/signup'));
}
public function action_createuser()
{
try {
$user = ORM::factory('User');
$user->username = $this->request->post('username');
$user->password = $this->request->post('password');
$user->email = $this->request->post('email');
// How do I:
// Check if Username already exists? If it does return to error_msg.mustache a message "User already Exists"
// Check if email is valid? If not return error message to error_msg.mustache indicating "email is not valid"
$user->save();
}
catch (ORM_Validation_Exception $e)
{
$errors = $e->errors();
}
}
}
在我的模型中:
<?php
class Model_User extends Model_Auth_User
{
public function rules()
{
return array(
'username' => array(
array('not_empty'),
array('min_length', array(':value', 4)),
array('max_length', array(':value', 32)),
array('regex', array(':value', '/^[-\pL\pN_.]++$/uD')),
),
'email' => array(
array('not_empty'),
array('min_length', array(':value', 4)),
array('max_length', array(':value', 127)),
array('email'),
),
);
}
}
提前非常感谢!