piler/webui/controller/user/edit.php

148 lines
4.7 KiB
PHP
Raw Normal View History

2012-02-08 23:14:28 +01:00
<?php
class ControllerUserEdit extends Controller {
private $error = array();
private $domains = array();
public function index(){
$this->data['uid'] = 0;
$this->data['email'] = "";
$this->id = "content";
$this->template = "user/edit.tpl";
$this->layout = "common/layout";
$request = Registry::get('request');
$db = Registry::get('db');
$language = Registry::get('language');
$this->load->model('user/user');
2012-06-22 12:30:55 +02:00
$this->load->model('group/group');
2012-09-06 15:27:20 +02:00
$this->load->model('folder/folder');
2012-02-08 23:14:28 +01:00
2012-06-22 15:22:02 +02:00
$this->document->title = $language->get('text_edit_user');
2012-02-08 23:14:28 +01:00
$this->data['domains'] = array();
if(isset($this->request->get['uid']) && is_numeric($this->request->get['uid']) && $this->request->get['uid'] > 0) {
$this->data['uid'] = $this->request->get['uid'];
}
if(isset($this->request->post['uid']) && is_numeric($this->request->post['uid']) && $this->request->post['uid'] > 0) {
$this->data['uid'] = $this->request->post['uid'];
}
$this->domains = $this->model_user_user->get_email_domains();
if(isset($this->request->get['email']) && checkemail($this->request->get['email'], $this->domains) == 1) {
$this->data['email'] = $this->request->get['email'];
}
/* check if we are admin */
if(Registry::get('admin_user') == 1) {
$this->data['domains'] = $this->model_user_user->get_domains();
if($this->request->server['REQUEST_METHOD'] == 'POST') {
if($this->validate() == true){
2012-06-22 15:22:02 +02:00
$ret = $this->model_user_user->update_user($this->request->post);
2012-02-08 23:14:28 +01:00
if($ret == 1){
$this->data['x'] = $this->data['text_successfully_modified'];
} else {
$this->template = "common/error.tpl";
$this->data['errorstring'] = $this->data['text_failed_to_modify'] . ": " . $ret;
}
$__username = $this->request->post['username'];
}
else {
2013-08-14 23:40:52 +02:00
$this->data['errorstring'] = $this->data['text_error_message'];
$this->data['errors'] = $this->error;
2012-02-08 23:14:28 +01:00
}
}
2013-08-14 23:40:52 +02:00
//else {
2012-06-22 12:30:55 +02:00
$this->data['user'] = $this->model_user_user->get_user_by_uid($this->data['uid']);
2012-02-08 23:14:28 +01:00
2013-01-05 16:42:36 +01:00
$this->data['user']['domains'] = $this->model_user_user->get_domains_by_uid($this->data['uid']);
2012-02-08 23:14:28 +01:00
$this->data['user']['group_membership'] = $this->model_user_user->get_additional_uids($this->data['uid']);
2012-09-06 15:27:20 +02:00
$this->data['user']['folder'] = $this->model_folder_folder->get_folders_by_uid($this->data['uid']);
2012-02-08 23:14:28 +01:00
2012-06-22 15:22:02 +02:00
$this->data['emails'] = $this->model_user_user->get_emails($this->data['user']['username']);
2012-02-08 23:14:28 +01:00
$this->data['user']['group'] = $this->model_group_group->get_groups_by_email(array($this->data['emails']));
2013-08-14 23:40:52 +02:00
//}
2012-02-08 23:14:28 +01:00
}
else {
$this->template = "common/error.tpl";
$this->data['errorstring'] = $this->data['text_you_are_not_admin'];
}
$this->render();
}
private function validate() {
2013-08-25 22:18:01 +02:00
if(isset($this->request->post['password']) && strlen($this->request->post['password']) > 1) {
2012-02-08 23:14:28 +01:00
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']) {
2013-08-25 22:18:01 +02:00
$this->error['password2'] = $this->data['text_password_mismatch'];
2012-02-08 23:14:28 +01:00
}
}
if(!isset($this->request->post['uid']) || !is_numeric($this->request->post['uid']) || (int)$this->request->post['uid'] < 0) {
$this->error['uid'] = $this->data['text_invalid_uid'];
}
if(strlen(@$this->request->post['email']) < 4) {
$this->error['email'] = $this->data['text_invalid_email'];
} else {
$emails = explode("\n", $this->request->post['email']);
foreach ($emails as $email) {
2014-10-15 09:37:24 +02:00
$email = strtolower(rtrim($email));
if($email == '') { continue; }
2012-02-08 23:14:28 +01:00
$ret = checkemail($email, $this->domains);
if($ret == 0) {
$this->error['email'] = $this->data['text_invalid_email'] . ": *$email*";
2012-02-08 23:14:28 +01:00
}
else if($ret == -1) {
$this->error['email'] = $this->data['text_email_in_unknown_domain'] . ": *$email*";
2012-02-08 23:14:28 +01:00
}
}
}
if(!isset($this->request->post['username']) || strlen($this->request->post['username']) < 2 ) {
$this->error['username'] = $this->data['text_invalid_username'];
}
if (!$this->error) {
return true;
} else {
return false;
}
}
}
?>