| | |
| | | $app->load('tform_actions'); |
| | | |
| | | class page_action extends tform_actions { |
| | | var $_xmpp_type = 'domain'; |
| | | var $_xmpp_type = 'server'; |
| | | |
| | | function onLoad() { |
| | | $show_type = 'server'; |
| | | if(isset($_GET['type']) && $_GET['type'] == 'modules') { |
| | | if(isset($_REQUEST['type']) && $_REQUEST['type'] == 'modules') { |
| | | $show_type = 'modules'; |
| | | } elseif(isset($_GET['type']) && $_GET['type'] == 'muc') { |
| | | } elseif(isset($_REQUEST['type']) && $_REQUEST['type'] == 'muc') { |
| | | $show_type = 'muc'; |
| | | }elseif(isset($_REQUEST['type']) && $_REQUEST['type'] == 'ssl') { |
| | | $show_type = 'ssl'; |
| | | } |
| | | |
| | | $_SESSION['s']['var']['xmpp_type'] = $show_type; |
| | |
| | | |
| | | // we will check only users, not admins |
| | | if($_SESSION["s"]["user"]["typ"] == 'user') { |
| | | if(!$app->tform->checkClientLimit('limit_xmppdomain')) { |
| | | if(!$app->tform->checkClientLimit('limit_xmpp_domain')) { |
| | | $app->error($app->tform->wordbook["limit_xmppdomain_txt"]); |
| | | } |
| | | if(!$app->tform->checkResellerLimit('limit_xmppdomain')) { |
| | | if(!$app->tform->checkResellerLimit('limit_xmpp_domain')) { |
| | | $app->error('Reseller: '.$app->tform->wordbook["limit_xmppdomain_txt"]); |
| | | } |
| | | } else { |
| | | $settings = $app->getconf->get_global_config('xmpp'); |
| | | $app->tform->formDef['tabs']['domain']['fields']['server_id']['default'] = intval($settings['default_xmppserver']); |
| | | } |
| | | } |
| | | $app->tform->formDef['tabs']['domain']['fields']['server_id']['default'] = intval($settings['default_xmppserver']); |
| | | |
| | | parent::onShowNew(); |
| | | parent::onShowNew(); |
| | | } |
| | | |
| | | function onShowEnd() { |
| | |
| | | |
| | | $app->uses('ini_parser,getconf'); |
| | | $settings = $app->getconf->get_global_config('domains'); |
| | | |
| | | $read_limits = array('limit_xmpp_pastebin', 'limit_xmpp_httparchive', 'limit_xmpp_anon', 'limit_xmpp_vjud', 'limit_xmpp_proxy', 'limit_xmpp_status'); |
| | | if($_SESSION["s"]["user"]["typ"] != 'admin') { |
| | | $client_group_id = $app->functions->intval($_SESSION["s"]["user"]["default_group"]); |
| | | $client = $app->db->queryOneRecord("SELECT client." . implode(", client.", $read_limits) . " FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = $client_group_id"); |
| | | // add limits to template to be able to hide settings |
| | | foreach($read_limits as $limit) $app->tpl->setVar($limit, $client[$limit]); |
| | | }else{ |
| | | foreach($read_limits as $limit) $app->tpl->setVar($limit, 'y'); |
| | | } |
| | | |
| | | |
| | | if($_SESSION["s"]["user"]["typ"] == 'admin' && $settings['use_domain_module'] != 'y') { |
| | | // Getting Clients of the user |
| | |
| | | |
| | | // Get the limits of the client |
| | | $client_group_id = $_SESSION["s"]["user"]["default_group"]; |
| | | $client = $app->db->queryOneRecord("SELECT client.client_id, client.contact_name, client.default_xmppserver, CONCAT(IF(client.company_name != '', CONCAT(client.company_name, ' :: '), ''), client.contact_name, ' (', client.username, IF(client.customer_no != '', CONCAT(', ', client.customer_no), ''), ')') as contactname, sys_group.name FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = $client_group_id order by client.contact_name"); |
| | | |
| | | // Set the xmppserver to the default server of the client |
| | | $tmp = $app->db->queryOneRecord("SELECT server_name FROM server WHERE server_id = $client[default_xmppserver]"); |
| | | $app->tpl->setVar("server_id", "<option value='$client[default_xmppserver]'>$tmp[server_name]</option>"); |
| | | unset($tmp); |
| | | $client = $app->db->queryOneRecord("SELECT client.client_id, client.contact_name, CONCAT(IF(client.company_name != '', CONCAT(client.company_name, ' :: '), ''), client.contact_name, ' (', client.username, IF(client.customer_no != '', CONCAT(', ', client.customer_no), ''), ')') as contactname, sys_group.name FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = $client_group_id order by client.contact_name"); |
| | | |
| | | if ($settings['use_domain_module'] != 'y') { |
| | | // Fill the client select field |
| | |
| | | if($_SESSION["s"]["user"]["typ"] != 'admin') { |
| | | // Get the limits of the client |
| | | $client_group_id = $app->functions->intval($_SESSION["s"]["user"]["default_group"]); |
| | | $client = $app->db->queryOneRecord("SELECT limit_xmppdomain, default_xmppserver FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = $client_group_id"); |
| | | $client = $app->db->queryOneRecord("SELECT limit_xmpp_domain FROM sys_group, client WHERE sys_group.client_id = client.client_id and sys_group.groupid = $client_group_id"); |
| | | // When the record is updated |
| | | if($this->id > 0) { |
| | | // restore the server ID if the user is not admin and record is edited |
| | |
| | | $app->error($app->tform->wordbook['error_not_allowed_server_id']); |
| | | } |
| | | |
| | | if($client["limit_xmppdomain"] >= 0) { |
| | | if($client["limit_xmpp_domain"] >= 0) { |
| | | $tmp = $app->db->queryOneRecord("SELECT count(domain_id) as number FROM xmpp_domain WHERE sys_groupid = $client_group_id"); |
| | | if($tmp["number"] >= $client["limit_xmppdomain"]) { |
| | | if($tmp["number"] >= $client["limit_xmpp_domain"]) { |
| | | $app->error($app->tform->wordbook["limit_xmppdomain_txt"]); |
| | | } |
| | | } |
| | |
| | | //* make sure that the xmpp domain is lowercase |
| | | if(isset($this->dataRecord["domain"])) $this->dataRecord["domain"] = strtolower($this->dataRecord["domain"]); |
| | | |
| | | // Read auth method |
| | | if(isset($this->dataRecord["auth_method"])) |
| | | switch($this->dataRecord["auth_method"]){ |
| | | // Read management method |
| | | if(isset($this->dataRecord["management_method"])) |
| | | // Set management method to 0 as long as the mailaccount hook is not implemented |
| | | $this->dataRecord["management_method"] = 0; |
| | | switch($this->dataRecord["management_method"]){ |
| | | case 0: |
| | | $this->dataRecord["auth_method"] = 'plain'; |
| | | $this->dataRecord["management_method"] = 'normal'; |
| | | break; |
| | | case 1: |
| | | $this->dataRecord["auth_method"] = 'hashed'; |
| | | break; |
| | | case 2: |
| | | $this->dataRecord["auth_method"] = 'isp'; |
| | | $this->dataRecord["management_method"] = 'maildomain'; |
| | | // Check for corresponding mail domain |
| | | $tmp = $app->db->queryOneRecord("SELECT count(domain_id) AS number FROM mail_domain WHERE domain = '".$this->dataRecord["domain"]."' AND ".$app->tform->getAuthSQL('r')." ORDER BY domain"); |
| | | if($tmp['number']==0){ |
| | | $app->error($app->tform->wordbook["no_corresponding_maildomain_txt"]); |
| | | break; |
| | | } |
| | | break; |
| | | } |
| | | // vjud opt mode |
| | |
| | | break; |
| | | } |
| | | } |
| | | |
| | | // Reset public registration to 'n', is not yet supported |
| | | $this->dataRecord["public_registration"] = 'n'; |
| | | |
| | | parent::onSubmit(); |
| | | } |
| | |
| | | //* make sure that the xmpp domain is lowercase |
| | | if(isset($this->dataRecord["domain"])) $this->dataRecord["domain"] = strtolower($this->dataRecord["domain"]); |
| | | |
| | | // create new accounts from mail domain |
| | | //if($this->dataRecord['management_method']=='maildomain') |
| | | // $this->syncMailusers($this->dataRecord['domain']); |
| | | |
| | | // Insert DNS Records |
| | | $soa = $app->db->queryOneRecord("SELECT id AS zone, sys_userid, sys_groupid, sys_perm_user, sys_perm_group, sys_perm_other, server_id, ttl, serial FROM dns_soa WHERE active = 'Y' AND origin = ?", $this->dataRecord['domain'].'.'); |
| | | if ( isset($soa) && !empty($soa) ) $this->update_dns($this->dataRecord, $soa); |
| | |
| | | global $app, $conf; |
| | | |
| | | if($this->_xmpp_type == 'server') { |
| | | // Check if the domain has been changed |
| | | $rec = $app->db->queryOneRecord("SELECT domain from xmpp_domain WHERE domain_id = ".$this->id); |
| | | if($this->dataRecord['domain']!=$rec['domain']) |
| | | $app->error($app->tform->wordbook["cant_change_domainname_txt"]); |
| | | |
| | | //* Check if the server has been changed |
| | | // We do this only for the admin or reseller users, as normal clients can not change the server ID anyway |
| | | if($_SESSION["s"]["user"]["typ"] == 'admin' || $app->auth->has_clients($_SESSION['s']['user']['userid'])) { |
| | |
| | | //* If the user is neither admin nor reseller |
| | | } else { |
| | | //* We do not allow users to change a domain which has been created by the admin |
| | | $rec = $app->db->queryOneRecord("SELECT sys_perm_group, domainfrom xmpp_domain WHERE domain_id = ".$this->id); |
| | | $rec = $app->db->queryOneRecord("SELECT sys_perm_group, domain from xmpp_domain WHERE domain_id = ".$this->id); |
| | | if(isset($this->dataRecord["domain"]) && $rec['domain'] != $this->dataRecord["domain"] && $app->tform->checkPerm($this->id, 'u')) { |
| | | //* Add a error message and switch back to old server |
| | | $app->tform->errorMessage .= $app->lng('The Domain can not be changed. Please ask your Administrator if you want to change the domain name.'); |
| | | $this->dataRecord["domain"] = $rec['domain']; |
| | | } |
| | | unset($rec); |
| | | } |
| | | } |
| | | |
| | | if($this->_xmpp_type == 'ssl'){ |
| | | //* Check that all fields for the SSL cert creation are filled |
| | | if(isset($this->dataRecord['ssl_action']) && $this->dataRecord['ssl_action'] == 'create') { |
| | | if($this->dataRecord['ssl_state'] == '') $app->tform->errorMessage .= $app->tform->lng('error_ssl_state_empty').'<br />'; |
| | | if($this->dataRecord['ssl_locality'] == '') $app->tform->errorMessage .= $app->tform->lng('error_ssl_locality_empty').'<br />'; |
| | | if($this->dataRecord['ssl_organisation'] == '') $app->tform->errorMessage .= $app->tform->lng('error_ssl_organisation_empty').'<br />'; |
| | | if($this->dataRecord['ssl_organisation_unit'] == '') $app->tform->errorMessage .= $app->tform->lng('error_ssl_organisation_unit_empty').'<br />'; |
| | | if($this->dataRecord['ssl_country'] == '') $app->tform->errorMessage .= $app->tform->lng('error_ssl_country_empty').'<br />'; |
| | | } |
| | | |
| | | if(isset($this->dataRecord['ssl_action']) && $this->dataRecord['ssl_action'] == 'save') { |
| | | if(trim($this->dataRecord['ssl_cert']) == '') $app->tform->errorMessage .= $app->tform->lng('error_ssl_cert_empty').'<br />'; |
| | | } |
| | | } |
| | | |
| | |
| | | function onAfterUpdate() { |
| | | global $app, $conf; |
| | | |
| | | // create new accounts from mail domain |
| | | //if($this->oldDataRecord['management_method'] != 'maildomain' && $this->dataRecord['management_method']=='maildomain') |
| | | // $this->syncMailusers($this->dataRecord['domain']); |
| | | // or reset to normal permissions |
| | | //elseif($this->oldDataRecord['management_method'] == 'maildomain' && $this->dataRecord['management_method']!='maildomain') |
| | | // $this->desyncMailusers($this->dataRecord['domain']); |
| | | // Update DNS Records |
| | | // TODO: Update gets only triggered from main form. WHY? |
| | | // TODO: if(in_array($this->_xmpp_type, array('muc', 'modules'))){ |
| | | $soa = $app->db->queryOneRecord("SELECT id AS zone, sys_userid, sys_groupid, sys_perm_user, sys_perm_group, sys_perm_other, server_id, ttl, serial FROM dns_soa WHERE active = 'Y' AND origin = ?", $this->dataRecord['domain'].'.'); |
| | | if ( isset($soa) && !empty($soa) ) $this->update_dns($this->dataRecord, $soa); |
| | | //} |
| | | $soa = $app->db->queryOneRecord("SELECT id AS zone, sys_userid, sys_groupid, sys_perm_user, sys_perm_group, sys_perm_other FROM dns_soa WHERE active = 'Y' AND = ?", $this->dataRecord['domain'].'.'); |
| | | if ( isset($soa) && !empty($soa) ) $this->update_dns($this->dataRecord, $soa); |
| | | } |
| | | |
| | | |
| | |
| | | $app->db->datalogUpdate('dns_soa', "serial = '".$new_serial."'", 'id', $zone['id']); |
| | | } |
| | | |
| | | /* |
| | | * NOT YET FINISHED |
| | | |
| | | private function syncMailusers($domain){ |
| | | global $app, $conf; |
| | | // get all mailusers |
| | | $db_mailusers = $app->db->queryAllRecords("SELECT email, password, sys_userid, sys_groupid, sys_perm_user, sys_perm_group, sys_perm_other FROM mail_user WHERE email like ?", '@'.$this->dataRecord['domain'].'.'); |
| | | // get existing xmpp users |
| | | $db_xmppusers = $app->db->queryAllRecords("SELECT jid, password, sys_userid, sys_groupid, sys_perm_user, sys_perm_group, sys_perm_other FROM xmpp_user WHERE jid like ?", '@'.$this->dataRecord['domain'].'.'); |
| | | |
| | | // Migrate user accounts |
| | | $users_delete = array(); |
| | | $users_update = array(); |
| | | $users_create = array(); |
| | | foreach($db_xmppusers AS $ix=>$x){ |
| | | $matched = false; |
| | | foreach($db_mailusers AS $im=>$m){ |
| | | if($x['jid']==$m['email']){ |
| | | // User matched, mark for update |
| | | $x['password'] = $m['password']; |
| | | $users_update[] = $x; |
| | | unset($db_xmppusers[$ix]); |
| | | unset($db_mailusers[$im]); |
| | | $matched = true; |
| | | break; |
| | | } |
| | | } |
| | | // XMPP user not matched, mark for deletion |
| | | if(!$matched){ |
| | | $users_delete[] = $x; |
| | | unset($db_xmppusers[$ix]); |
| | | } |
| | | } |
| | | // Mark remaining mail users for creation |
| | | $users_create = $db_xmppusers; |
| | | foreach($users_create AS $u){ |
| | | $u['server_id'] = $this->dataRecord['server_id']; |
| | | $u['sys_perm_user'] = 'r'; |
| | | $u['sys_perm_group'] = 'r'; |
| | | $app->db->datalogInsert('xmpp_user', $u, 'xmppuser_id'); |
| | | } |
| | | foreach($users_update AS $u){ |
| | | $u['sys_perm_user'] = 'r'; |
| | | $u['sys_perm_group'] = 'r'; |
| | | $app->db->datalogUpdate('xmpp_user', $u, 'xmppuser_id', $u['xmppuser_id']); |
| | | } |
| | | foreach($users_delete AS $u){ |
| | | $app->db->datalogDelete('xmpp_user', 'xmppuser_id', $u['xmppuser_id']); |
| | | } |
| | | |
| | | } |
| | | |
| | | private function desyncMailusers($domain){ |
| | | global $app, $conf; |
| | | // get existing xmpp users |
| | | $db_xmppusers = $app->db->queryAllRecords("SELECT jid, password, sys_userid, sys_groupid, sys_perm_user, sys_perm_group, sys_perm_other FROM xmpp_user WHERE jid like ?", '@'.$this->dataRecord['domain'].'.'); |
| | | foreach($db_xmppusers AS $u){ |
| | | $u['sys_perm_user'] = 'riud'; |
| | | $u['sys_perm_group'] = 'riud'; |
| | | $app->db->datalogUpdate('xmpp_user', $u, 'xmppuser_id', $u['xmppuser_id']); |
| | | } |
| | | } |
| | | */ |
| | | |
| | | } |
| | | |