mirror of
				https://bitbucket.org/jsuto/piler.git
				synced 2025-11-04 09:32:28 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			101 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			101 lines
		
	
	
		
			3.3 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->load->model('user/user');
 | 
						|
      $this->load->model('group/group');
 | 
						|
 | 
						|
      $this->document->title = $this->data['text_settings'];
 | 
						|
	  
 | 
						|
      $d = $r = '';
 | 
						|
      $auditemails = $auditdomains = $auditgroups = $auditfolders = '';
 | 
						|
	  
 | 
						|
      $auditemails = $this->model_user_user->get_emails_by_uid($_SESSION['uid']);
 | 
						|
	  
 | 
						|
      foreach($_SESSION['auditdomains'] as $d) {
 | 
						|
         $auditdomains .= ', '.$d;
 | 
						|
      }
 | 
						|
      $auditdomains = preg_replace("/^,\s/", "", $auditdomains);
 | 
						|
	  
 | 
						|
      $auditgroups = preg_replace("/\s/", ", ", $this->model_group_group->get_groups_by_uid($_SESSION['uid']));
 | 
						|
	  
 | 
						|
      foreach ($_SESSION['folders'] as $r) {
 | 
						|
         $auditfolders .= ', '.$r;
 | 
						|
      }
 | 
						|
      $auditfolders = preg_replace("/^,\s/", "", $auditfolders);	  
 | 
						|
	  
 | 
						|
      if($auditemails) { $this->data['emails'] = $auditemails; } else { $this->data['emails'] = $this->data['text_none_found']; }
 | 
						|
      if($auditdomains) { $this->data['domains'] = $auditdomains; } else { $this->data['domains'] = $this->data['text_none_found']; }
 | 
						|
      if($auditgroups) { $this->data['groups'] = $auditgroups; } else { $this->data['groups'] = $this->data['text_none_found']; }
 | 
						|
      if($auditfolders) { $this->data['folders'] = $auditfolders; } else { $this->data['folders'] = $this->data['text_none_found']; }
 | 
						|
 | 
						|
      if(isset($this->request->post['pagelen']) && isset($this->request->post['theme'])) {
 | 
						|
         $this->model_user_prefs->set_user_preferences(Registry::get('username'), $this->request->post);
 | 
						|
 | 
						|
         AUDIT(ACTION_CHANGE_USER_SETTINGS, '', '', '', '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;
 | 
						|
      }
 | 
						|
 | 
						|
   }
 | 
						|
 | 
						|
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
?>
 |