tform->wordbook[$errmsg])) { return $app->tform->wordbook[$errmsg]."
\r\n"; } else { return $errmsg."
\r\n"; } } /* Validator function for domain (website) */ function web_domain($field_name, $field_value, $validator) { if(empty($field_value)) return $this->get_error('domain_error_empty'); // do not allow wildcards on website domains $result = $this->_regex_validate($field_value); if(!$result) return $this->get_error('domain_error_regex'); $result = $this->_check_unique($field_value); if(!$result) return $this->get_error('domain_error_unique'); } /* Validator function for sub domain */ function sub_domain($field_name, $field_value, $validator) { if(empty($field_value)) return $this->get_error('domain_error_empty'); $allow_wildcard = $this->_wildcard_limit(); if($allow_wildcard == false && substr($field_value, 0, 2) === '*.') return $this->get_error('domain_error_wildcard'); $result = $this->_regex_validate($field_value, $allow_wildcard); if(!$result) return $this->get_error('domain_error_regex'); $result = $this->_check_unique($field_value); if(!$result) return $this->get_error('domain_error_unique'); } /* Validator function for alias domain */ function alias_domain($field_name, $field_value, $validator) { if(empty($field_value)) return $this->get_error('domain_error_empty'); // do not allow wildcards on alias domains $result = $this->_regex_validate($field_value); if(!$result) return $this->get_error('domain_error_regex'); $result = $this->_check_unique($field_value); if(!$result) return $this->get_error('domain_error_unique'); } /* Validator function for checking the auto subdomain of a web/aliasdomain */ function web_domain_autosub($field_name, $field_value, $validator) { global $app; if(empty($field_value) || $field_name != 'subdomain') return; // none set $check_domain = $_POST['domain']; $app->uses('ini_parser,getconf'); $settings = $app->getconf->get_global_config('domains'); if ($settings['use_domain_module'] == 'y') { $sql = "SELECT domain_id, domain FROM domain WHERE domain_id = " . $app->functions->intval($check_domain); $domain_check = $app->db->queryOneRecord($sql); if(!$domain_check) return; $check_domain = $domain_check['domain']; } $result = $this->_check_unique($field_value . '.' . $check_domain, true); if(!$result) return $this->get_error('domain_error_autosub'); } /* internal validator function to match regexp */ function _regex_validate($domain_name, $allow_wildcard = false) { $pattern = '/^' . ($allow_wildcard == true ? '(\*\.)?' : '') . '[\w\.\-]{2,255}\.[a-zA-Z0-9\-]{2,30}$/'; return preg_match($pattern, $domain_name); } /* check if the domain hostname is unique (keep in mind the auto subdomains!) */ function _check_unique($domain_name, $only_domain = false) { global $app; if(isset($app->remoting_lib->primary_id)) { $primary_id = $app->remoting_lib->primary_id; } else { $primary_id = $app->tform->primary_id; } $check = $app->db->queryOneRecord("SELECT COUNT(*) as `cnt` FROM `web_domain` WHERE `domain` = '" . $app->db->quote($domain_name) . "' AND `domain_id` != " . $app->functions->intval($primary_id)); if($check['cnt'] > 0) return false; if($only_domain == false) { $check = $app->db->queryOneRecord("SELECT COUNT(*) as `cnt` FROM `web_domain` WHERE CONCAT(`subdomain`, '.', `domain`) = '" . $app->db->quote($domain_name) . "' AND `domain_id` != " . $app->functions->intval($primary_id)); if($check['cnt'] > 0) return false; } return true; } /* check if the client may add wildcard domains */ function _wildcard_limit() { global $app; if($_SESSION["s"]["user"]["typ"] != 'admin') { // Get the limits of the client $client_group_id = $_SESSION["s"]["user"]["default_group"]; $client = $app->db->queryOneRecord("SELECT limit_wildcard FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = $client_group_id"); if($client["limit_wildcard"] == 'y') return true; else return false; } return true; // admin may always add wildcard domain } }