I use Doctrine:

User:
  columns:
    username:        { type: string(255), unique: true }
    password:        { type: string(255) }
    ip:              { type: string(255) }

This generated me new form:

username: 
password:
ip:

How can i make confirm password and get the IP address in hidden input?

I will:

username:
password:
confirm password:

and in mysql database will username, password and IP ($_SERVER['REMOTE_ADDR'];) How can i it make in Symfony 1.4?

THX!

@@@@@@@

added:

i make:

  $user = $this->form->getObject();
  $user->setPassword(sha1($user->getPassword()));
  $user->setIp($_SERVER['REMOTE_ADDR']);
  $user = $form->save();

setPassword doesn't work, but setIp good work.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You may remove fields by setting in the configure() method of your form:

unset($form['ip'])

And add a confirm password field by:

    $this->widgetSchema['password']     = new sfWidgetFormInputPassword();
    $this->widgetSchema['password2']    = new sfWidgetFormInputPassword();
    // Don't print passwords when complaining about inadequate length
    $this->setValidator( 'password', new sfValidatorString(array(
        'required' => true,
        'trim' => true,
        'min_length' => 6,
        'max_length' => 128
        ));
    $this->validatorSchema['password2'] = clone $this->validatorSchema['password'];        

    $this->mergePostValidator(new sfValidatorSchemaCompare(
        'password', sfValidatorSchemaCompare::EQUAL, 'password2',
        array())
    ));

You may add the ip in your actions.class.php:

if ($request->isMethod('post')) {
  $this->form->bind($request->getParameter('yourformprefix'));
  if ($this->form->isValid()) {
    $user = $this->form->getObject();
    $user->setIp($_SERVER['REMOTE_ADDR']);
    $user->save();
  }
}

A small note: I strongly recommend using the existing plugins (doAuth / sfDoctrineGuardPlugin) if you're planning to do this kind of work.

link|improve this answer
very very thanks :) I try it soon – Tony Oriondo Jun 25 '11 at 15:04
sfDoctrineGuardPlugin probably doesn't use a database, and I have to use mysql – Tony Oriondo Jun 25 '11 at 15:18
I tried it. It works very well. Thank you for your help! – Tony Oriondo Jun 25 '11 at 15:24
how can i add for this password hash SHA1? – Tony Oriondo Jun 25 '11 at 15:35
i make: $user = $this->form->getObject(); $user->setPassword(sha1($user->getPassword())); $user->setIp($_SERVER['REMOTE_ADDR']); $user = $form->save(); setPassword doesn't work, but setIp good work. – Tony Oriondo Jun 25 '11 at 15:51
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.