| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 | <?php
# $Id: AdminpasswordHandler.php 1749 2015-03-17 21:07:59Z christian_boltz $
class AdminpasswordHandler extends PFAHandler {
    protected $db_table = 'admin';
    protected $id_field = 'username';
    # do not skip empty password fields
    protected $skip_empty_pass = false;
    protected function no_domain_field() {
        # PFAHandler die()s if domain field is not set. Disable this behaviour for AdminHandler.
    }
    protected function validate_new_id() {
        # unused in AdminpasswordHandler, but must be defined
    }
    # init $this->struct, $this->db_table and $this->id_field
    protected function initStruct() {
        # TODO: shorter PALANG labels ;-)
        $this->struct=array(
            # field name                allow       display in...   type    $PALANG label                    $PALANG description                 default / options / ...
            #                           editing?    form    list
            'username'        => pacol( 0,          1,      1,      'text', 'admin'                        , ''                                 ),
            'oldpass'         => pacol( 1,          1,      0,      'pass', 'pPassword_password_current'   , '', '', '', 
                /*not_in_db*/ 1  ),
            'password'        => pacol( 1,          1,      0,      'pass', 'pPassword_password'           , ''                                 ),
            'password2'       => pacol( 1,          1,      0,      'pass', 'pPassword_password2'          , ''                                 , '', '',
                /*not_in_db*/ 0,
                /*dont_write_to_db*/ 1,
                /*select*/ 'password as password2'
            ),
        );
    }
    public function init($id) {
        # hardcode to logged in admin
        if ($this->admin_username == '') die("No admin logged in");
        $this->id = $this->admin_username;
        $this->values['username'] = $this->id;
        $this->struct['username']['default'] = $this->id;
        # hardcode to edit mode
        $this->new = 0;
        return parent::init($this->id);
    }
    public function initMsg() {
        $this->msg['error_already_exists'] = 'admin_already_exists'; # probably unused
        $this->msg['error_does_not_exist'] = 'admin_does_not_exist'; # probably unused
        $this->msg['confirm_delete'] = 'confirm_delete_admin'; # probably unused
        $this->msg['logname'] = 'edit_password';
        $this->msg['store_error'] = 'pPassword_result_error';
        $this->msg['successmessage'] = 'pPassword_result_success';
    }
    public function webformConfig() {
        return array(
            # $PALANG labels
            'formtitle_create' => 'pPassword_welcome',
            'formtitle_edit' => 'pPassword_welcome',
            'create_button' => 'change_password',
            # various settings
            'required_role' => 'admin',
            'listview' => 'main.php',
            'early_init' => 1,
            'hardcoded_edit' => true,
        );
    }
    /**
     * check if old password is correct
     */
    protected function _validate_oldpass($field, $val) {
        if ( $this->login($this->id, $val) ) {
            return true;
        }
        $this->errormsg[$field] = Config::lang('pPassword_password_current_text_error');
        return false;
    }
    /**
     * skip default validation (check if password is good enough) for old password
     */
    protected function _inp_pass($field, $val) {
        if ($field == 'oldpass') return true;
        return parent::_inp_pass($field, $val);
    }
    /**
     * compare password / password2 field
     * error message will be displayed at the password2 field
     */
    protected function _validate_password2($field, $val) {
        return $this->compare_password_fields('password', 'password2');
    }
}
/* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */
 |