piler/webui/controller/domain/domain.php

135 lines
3.9 KiB
PHP
Raw Normal View History

2012-02-08 23:14:28 +01:00
<?php
class ControllerDomainDomain extends Controller {
private $error = array();
public function index(){
$this->id = "content";
$this->template = "domain/list.tpl";
$this->layout = "common/layout";
$request = Registry::get('request');
$db = Registry::get('db');
2013-07-08 11:31:17 +02:00
$ldap_id = 0;
2012-02-08 23:14:28 +01:00
$this->load->model('domain/domain');
2013-07-08 11:31:17 +02:00
if(ENABLE_SAAS == 1) {
$this->load->model('saas/ldap');
2013-08-26 23:17:09 +02:00
$this->data['ldap'] = $this->model_saas_ldap->search();
2013-08-14 23:40:52 +02:00
if ( isset($this->request->post['ldap_id']) ) {
$ldap_id = $this->request->post['ldap_id'];
} else {
$ldap_id = 0;
}
2013-07-08 11:31:17 +02:00
}
2012-02-08 23:14:28 +01:00
$this->document->title = $this->data['text_domain'];
$this->data['username'] = Registry::get('username');
$this->data['page'] = 0;
$this->data['page_len'] = get_page_length();
$this->data['total'] = 0;
$this->data['domains'] = array();
/* get search term if there's any */
$this->data['search'] = '';
if(isset($this->request->post['search'])) { $this->data['search'] = $this->request->post['search']; }
else if(isset($this->request->get['search'])) { $this->data['search'] = $this->request->get['search']; }
2012-02-08 23:14:28 +01:00
/* get page */
if(isset($this->request->get['page']) && is_numeric($this->request->get['page']) && $this->request->get['page'] > 0) {
$this->data['page'] = $this->request->get['page'];
}
/* check if we are admin */
if(Registry::get('admin_user') == 1) {
if($this->request->server['REQUEST_METHOD'] == 'POST') {
if($this->validate() == true) {
2013-07-08 11:31:17 +02:00
if($this->model_domain_domain->addDomain($this->request->post['domain'], $this->request->post['mapped'], $ldap_id) == 1) {
2012-02-08 23:14:28 +01:00
$this->data['x'] = $this->data['text_successfully_added'];
} else {
$this->data['errorstring'] = $this->data['text_failed_to_add'];
}
}
else {
2013-08-14 23:40:52 +02:00
$this->data['errorstring'] = $this->data['text_error_message'];
$this->data['errors'] = $this->error;
$this->data['post'] = $this->request->post;
}
2012-02-08 23:14:28 +01:00
}
2013-08-14 23:40:52 +02:00
/* get list of domains */
$this->data['domains'] = $this->model_domain_domain->getDomains($this->data['search']);
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->data['prev_page'] = $this->data['page'] - 1;
$this->data['next_page'] = $this->data['page'] + 1;
$this->data['total'] = floor(count($this->data['domains']) / $this->data['page_len']);
$this->render();
}
private function validate() {
if(!isset($this->request->post['domain']) || strlen($this->request->post['domain']) < 3) {
2013-08-14 23:40:52 +02:00
$this->data['text_field_length'] = str_replace("?",3,$this->data['text_field_length']);
$this->error['domain'] = $this->data['text_field_length'];
2012-02-08 23:14:28 +01:00
}
else {
$domains = explode("\n", $this->request->post['domain']);
foreach ($domains as $domain) {
$domain = rtrim($domain);
2014-02-27 09:29:36 +01:00
if(!preg_match('/^[A-Za-z0-9-]+(\.[A-Za-z0-9-]+)*(\.[A-Za-z]{2,10})$/', $domain) ) {
2013-08-14 23:40:52 +02:00
$this->error['domain'] = $this->data['text_field_domain'];
2012-02-08 23:14:28 +01:00
}
}
}
2013-08-14 23:40:52 +02:00
if(!isset($this->request->post['mapped']) || strlen($this->request->post['mapped']) < 3) {
$this->data['text_field_length'] = str_replace("?",3,$this->data['text_field_length']);
$this->error['mapped'] = $this->data['text_field_length'];
2014-02-27 09:29:36 +01:00
} elseif( !preg_match('/^[A-Za-z0-9-]+(\.[A-Za-z0-9-]+)*(\.[A-Za-z]{2,10})$/', $this->request->post['mapped']) ) {
2013-08-14 23:40:52 +02:00
$this->error['mapped'] = $this->data['text_field_domain'];
2012-02-08 23:14:28 +01:00
}
if (!$this->error) {
return true;
} else {
return false;
}
}
}
?>