mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 10:32:00 +01:00
79 lines
2.1 KiB
PHP
79 lines
2.1 KiB
PHP
<?php
|
|
|
|
|
|
class ControllerUserSettings extends Controller {
|
|
private $error = array();
|
|
|
|
public function index(){
|
|
|
|
$this->id = "content";
|
|
$this->template = "user/settings.tpl";
|
|
$this->layout = "common/layout";
|
|
|
|
|
|
$request = Registry::get('request');
|
|
$db = Registry::get('db');
|
|
|
|
$this->load->model('user/auth');
|
|
$this->load->model('user/prefs');
|
|
|
|
|
|
$this->document->title = $this->data['text_home'];
|
|
|
|
|
|
if(isset($this->request->post['pagelen']) && isset($this->request->post['lang']) && isset($this->request->post['theme'])) {
|
|
$this->model_user_prefs->set_user_preferences(Registry::get('username'), $this->request->post);
|
|
|
|
AUDIT(ACTION_CHANGE_USER_SETTINGS, '', '', '', 'lang:' . $this->request->post['lang'] . ', pagelen:' . $this->request->post['pagelen'] . ', theme:' . $this->request->post['theme']);
|
|
|
|
Header("Location: settings.php");
|
|
return;
|
|
}
|
|
|
|
|
|
if($this->request->server['REQUEST_METHOD'] == 'POST' && PASSWORD_CHANGE_ENABLED == 1 && $this->validate() == true) {
|
|
|
|
if($this->model_user_auth->change_password(Registry::get('username'), $this->request->post['password']) == 1) {
|
|
$this->data['x'] = $this->data['text_password_changed'];
|
|
}
|
|
else {
|
|
$this->data['x'] = $this->data['text_failed_to_change_password'];
|
|
}
|
|
}
|
|
|
|
|
|
$this->data['page_len'] = get_page_length();
|
|
|
|
$this->render();
|
|
}
|
|
|
|
|
|
private function validate() {
|
|
|
|
if(!isset($this->request->post['password']) || !isset($this->request->post['password2']) ) {
|
|
$this->error['password'] = $this->data['text_missing_password'];
|
|
}
|
|
|
|
if(strlen(@$this->request->post['password']) < MIN_PASSWORD_LENGTH || strlen(@$this->request->post['password2']) < MIN_PASSWORD_LENGTH) {
|
|
$this->error['password'] = $this->data['text_invalid_password'];
|
|
}
|
|
|
|
if($this->request->post['password'] != $this->request->post['password2']) {
|
|
$this->error['password'] = $this->data['text_password_mismatch'];
|
|
}
|
|
|
|
|
|
if (!$this->error) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
?>
|