diff --git a/plugins/provision/PLESK_8.php b/plugins/provision/PLESK_8.php new file mode 100644 index 00000000..48bae64b --- /dev/null +++ b/plugins/provision/PLESK_8.php @@ -0,0 +1,737 @@ + + * @package AgileBill + * @version 1.4.93 + */ + +/* +* Vars available from server config: +* +* host +* port +* user +* pass +* +* +* Vars from service config: +* +* package +* +*/ + + +class plgn_prov_PLESK_8 +{ + function plgn_prov_PLESK_8() + { + $this->name = 'PLESK_8'; + $this->task_based = false; + $this->remote_based = true; + + # PSA STUFF: + $this->psapath = "enterprise/control/agent.php"; + $this->proto = "1.4.2.0"; + } + + + # add new service + function p_new() + { + # get the common server class and set login details + include_once(PATH_MODULES.'host_server/host_server.inc.php'); + $host = new host_server; + if($this->service['host_username'] == '' || $this->service['host_password'] == '') + { + # set the limits + $pass_len = 10; + $user_len = 12; + + # Generate a new username/login: + $domain = $this->service['domain_name'].$this->service['domain_tld']; + + # set the username + $username = trim($domain); + $username = eregi_replace("[-_\.]", "", $username); + if(strlen($username) < $user_len) + { + $rand = md5(md5($username).time()); + $diff = $user_len - strlen($username); + $username = $username . substr($rand, 0, $diff); + } + else + { + $rand = md5(microtime().md5($username).microtime()); + $username = substr($username, 0, $user_len-5); + $username = $username . substr($rand, 0, 5); + } + + # Set the password + $password = substr(md5(md5(time()).$domain.$username), 0, 10); + + # Set the user/pass for the XML queries + $this->login['username'] = $username; + $this->login['password'] = $password; + + } else { + + # Validate + $this->login['username'] = $this->service['host_username']; + $this->login['password'] = $this->service['host_password']; + } + + + # get ip address + if ($this->plugin_data['ip_based'] == '1') { + $this->ip = $host->useipaddress($this->service, $this->server); + } else { + $this->ip = $this->server['name_based_ip']; + } + + + #################################################### + ### Assemble the XML for the account creation: #### + + $data =<< + + + + + {$this->account['first_name']} {$this->account['last_name']} ({$this->login['username']}) + {$this->login['username']} + {$this->login['password']} + {$this->account['email']} + 00000 + US + 0 + 18005551212 + + {$this->plugin_data['client_template_name']} + + + +EOF; + + # Connect & get response: + $result = $this->connect( + $this->server_cfg['host'], + $this->server_cfg['port'], + $this->server_cfg['user'], + $this->server_cfg['pass'], + $data + ); + + # Debug: + $this->debug($data, $result); + + # Get the account id + if (!$cl_id = $this->getid($result)) + return false; + + + ############################## + ### ADD IP TO CLIENT POOL: ### + + $data =<< + + + + $cl_id + {$this->ip} + + + +EOF; + + # Connect & get response: + $result = $this->connect( + $this->server_cfg['host'], + $this->server_cfg['port'], + $this->server_cfg['user'], + $this->server_cfg['pass'], + $data + ); + + # Debug: + $this->debug($data, $result); + + ####################### + ### ADD NEW DOMAIN: ### + + $data =<< + + + + + {$this->service['domain_name']}.{$this->service['domain_tld']} + $cl_id + vrt_hst + {$this->ip} + + + + + {$this->login['username']} + {$this->login['password']} + {$this->ip} + + + {$this->plugin_data['domain_template_name']} + + + +EOF; + + + # Connect & get response: + $result = $this->connect( + $this->server_cfg['host'], + $this->server_cfg['port'], + $this->server_cfg['user'], + $this->server_cfg['pass'], + $data + ); + + # Debug: + $this->debug($data, $result); + + + # Get the account id + if(!$domain_id = $this->getid($result)) { + return false; + } else { + $db = &DB(); + $id = $this->service_id; + $sql = "SELECT * FROM ".AGILE_DB_PREFIX."service WHERE id = $id"; + $rs = $db->Execute($sql); + $plugin_data = unserialize($rs->fields['host_provision_plugin_data']); + $plugin_data['account_id'] = $cl_id; + $plugin_data['domain_id'] = $domain_id; + $insert = Array ('host_provision_plugin_data' => serialize($plugin_data), + 'host_username' => $this->login['username'], + 'host_password' => $this->login['password']); + $sql = $db->GetUpdateSQL($rs, $insert); + $result = $db->Execute($sql); + if ($result === false) { + global $C_debug; + $C_debug->error('PLESK_8.php','plgn_prov_PLESK_8 :: p_new()', $db->ErrorMsg(). "\r\n\r\n". $sql); + } + + # send the user the details + include_once(PATH_MODULES.'email_template/email_template.inc.php'); + $email = new email_template; + $email->send('host_new_user', $this->account['id'], $this->service_id, '', ''); + } + return true; + } + + + # edit service + function p_edit() + { + ## Get the IP + if(!empty($this->service['host_ip'])) + $this->ip = $this->service['host_ip']; + else + $this->ip = $this->server['name_based_ip']; + + + ################################################ + ### SET CLIENT LOGIN + + $data =<< + + + + + {$this->plugin_data['account_id']} + + + + {$this->service['host_username']} + {$this->service['host_password']} + + + + + +EOF; + + # Connect & get response: + $result = $this->connect( + $this->server_cfg['host'], + $this->server_cfg['port'], + $this->server_cfg['user'], + $this->server_cfg['pass'], + $data + ); + + # Debug: + $this->debug($data, $result); + + + ############################ + ### SET CLIENT TEMPLATE: ### + + $data =<< + + + + + {$this->plugin_data['account_id']} + + + {$this->plugin_data['client_template_name']} + + + + {$this->plugin_data['account_id']} + {$this->ip} + + + +EOF; + + # Connect & get response: + $result = $this->connect( + $this->server_cfg['host'], + $this->server_cfg['port'], + $this->server_cfg['user'], + $this->server_cfg['pass'], + $data + ); + + # Debug: + $this->debug($data, $result); + + + ### Edit the domain settings: + + $data =<< + + + + + {$this->plugin_data['domain_id']} + + + + 16 + {$this->service['domain_name']}.{$this->service['domain_tld']} + + + + + +EOF; + + + $data =<< + + + + + {$this->plugin_data['domain_id']} + + + + + 0 + {$this->service['domain_name']}.{$this->service['domain_tld']} + + + + {$this->ip}{$this->service['host_username']} + {$this->service['host_password']} + + + {$this->plugin_data['domain_template_name']} + + + + +EOF; + + # Connect & get response: + $result = $this->connect( + $this->server_cfg['host'], + $this->server_cfg['port'], + $this->server_cfg['user'], + $this->server_cfg['pass'], + $data + ); + + # Debug: + $this->debug($data, $result); + + if(!empty($result)) + return true; + else + return false; + } + + + # activate service + function p_inactive() + { + $data =<< + + + + + {$this->plugin_data['account_id']} + + + + 16 + + + + + +EOF; + + # Connect & get response: + $result = $this->connect( + $this->server_cfg['host'], + $this->server_cfg['port'], + $this->server_cfg['user'], + $this->server_cfg['pass'], + $data + ); + + # Debug: + $this->debug($data, $result); + + + $data =<< + + + + + {$this->plugin_data['domain_id']} + + + + 16 + + + + + +EOF; + + # Connect & get response: + $result = $this->connect( + $this->server_cfg['host'], + $this->server_cfg['port'], + $this->server_cfg['user'], + $this->server_cfg['pass'], + $data + ); + + # Debug: + $this->debug($data, $result); + if(!empty($result)) + return true; + else + return false; + } + + + # deactivate service + function p_active() + { + $data =<< + + + + + {$this->plugin_data['account_id']} + + + + 0 + + + + + +EOF; + + # Connect & get response: + $result = $this->connect( + $this->server_cfg['host'], + $this->server_cfg['port'], + $this->server_cfg['user'], + $this->server_cfg['pass'], + $data + ); + + # Debug: + $this->debug($data, $result); + + + $data =<< + + + + + {$this->plugin_data['domain_id']} + + + + 0 + {$this->service['domain_name']}.{$this->service['domain_tld']} + + + + + +EOF; + + # Connect & get response: + $result = $this->connect( + $this->server_cfg['host'], + $this->server_cfg['port'], + $this->server_cfg['user'], + $this->server_cfg['pass'], + $data + ); + + # Debug: + $this->debug($data, $result); + + + if(!empty($result)) + return true; + else + return false; + } + + + + + # delete service + function p_delete() + { + # recycle the IP if ip_based: + if ($this->plugin_data['ip_based'] == '1') { + include_once(PATH_MODULES.'host_server/host_server.inc.php'); + $host = new host_server; + $this->ip = $host->unuseipaddress($this->server, $this->service['host_ip']); + } + + $data =<< + + + + + {$this->plugin_data['account_id']} + + + + +EOF; + + # Connect & get response: + $result = $this->connect( + $this->server_cfg['host'], + $this->server_cfg['port'], + $this->server_cfg['user'], + $this->server_cfg['pass'], + $data + ); + + # Debug: + $this->debug($data, $result); + + if(!empty($result)) + return true; + else + return false; + } + + + # construct echo all updates + function p_one($id) + { + global $C_debug; + + # Get the service details + $db = &DB(); + $sql = 'SELECT * FROM ' . AGILE_DB_PREFIX . 'service WHERE + id = ' . $db->qstr( $id ) . ' AND + site_id = ' . $db->qstr(DEFAULT_SITE); + $rs = $db->Execute($sql); + if($rs->RecordCount() == 0) { + return false; + } + $this->service = $rs->fields; + $this->service_id = $rs->fields['id']; + @$this->plugin_data = unserialize($this->service['host_provision_plugin_data']); + + # Get the account details + $sql = 'SELECT * FROM ' . AGILE_DB_PREFIX . 'account WHERE + id = ' . $db->qstr( $this->service['account_id'] ) . ' AND + site_id = ' . $db->qstr(DEFAULT_SITE); + $acct = $db->Execute($sql); + $this->account = $acct->fields; + + # Get the server details + $db = &DB(); + $sql = 'SELECT * FROM ' . AGILE_DB_PREFIX . 'host_server WHERE + id = ' . $db->qstr( $this->service['host_server_id'] ) . ' AND + site_id = ' . $db->qstr(DEFAULT_SITE); + $rs = $db->Execute($sql); + if (@$rs->RecordCount() == 0) { + return false; + } else { + $this->server = $rs->fields; + @$this->server_cfg = unserialize($rs->fields['provision_plugin_data']); + } + + + # determine the correct action + switch ($this->service['queue']) + { + # new + case 'new': + $result = $this->p_new(); + break; + + # active + case 'active': + $result = $this->p_active(); + break; + + # inactive + case 'inactive': + $result = $this->p_inactive(); + break; + + # edit + case 'edit': + $result = $this->p_edit(); + if ($this->service['active'] == 1 ) + $result = $this->p_active(); + else + $result = $this->p_inactive(); + break; + + # delete + case 'delete': + $result = $this->p_delete(); + break; + } + + + # update service record + if(@$result) + { + # update + $db = &DB(); + $sql = 'UPDATE ' . AGILE_DB_PREFIX . 'service SET + queue = ' . $db->qstr( 'none' ) . ', + date_last = ' . $db->qstr( time() ) . ' + WHERE + id = ' . $db->qstr( $this->service_id ) . ' AND + site_id = ' . $db->qstr(DEFAULT_SITE); + $upd = $db->Execute($sql); + + } else { + # error log + $C_debug->error($this->name.'.php', $this->service['queue'], $this->service['queue'] . ' For service id '. $this->service_id . ' Failed!'); + } + } + + + /* + * Get the id returned + */ + + function getid($result) + { + preg_match ("/()+([0-9]){1,99}/i", $result, $arr); + if(is_array($arr) && count($arr) > 0) { + $id = ereg_replace("","", $arr[0]); + if(!is_numeric($id)) + return false; + else + return $id; + } else { + return false; + } + return false; + } + + /* + * Debug + */ + + function debug($data,$result=false) + { + if($this->server['debug']) { + echo '
REQUEST:

'; + echo "
" . htmlspecialchars($data) . "
"; + echo 'RESPONSE:
'; + echo "
" . htmlspecialchars($result) . "
"; + } + } + + /* + * Curl connect functions + */ + function connect($HOST, $PORT, $LOGIN, $PASSWD, $DATA) + { + $url = "https://" . $HOST . ":" . $PORT . "/" . $this->psapath; + + $headers = array( + "HTTP_AUTH_LOGIN: " . $LOGIN, + "HTTP_AUTH_PASSWD: " . $PASSWD, + "HTTP_PRETTY_PRINT: TRUE", + "Content-Type: text/xml", + ); + + $ch = curl_init(); + curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); + curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); + curl_setopt($ch, CURLOPT_URL, $url); + curl_setopt($ch, CURLOPT_POSTFIELDS, $DATA); + curl_setopt($ch, CURLOPT_VERBOSE, 1); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); + $result = curl_exec($ch); + $this->result = $result; + curl_close($ch); + return $result; + } +} + +?> diff --git a/themes/default/blocks/host_provision_plugin/plugin_cfg_PLESK_8.tpl b/themes/default/blocks/host_provision_plugin/plugin_cfg_PLESK_8.tpl new file mode 100644 index 00000000..bf7f3b0c --- /dev/null +++ b/themes/default/blocks/host_provision_plugin/plugin_cfg_PLESK_8.tpl @@ -0,0 +1,33 @@ +{$list->unserial($host_server.provision_plugin_data, "plugin_data")} + + + + + + + + + + + + + + + + + + + + + + +
* Plesk Port + + eg: 8443
* Plesk Host + + eg: server.com
* Plesk Login + + eg: admin
* Plesk Password + +
* = required fields 
+ \ No newline at end of file diff --git a/themes/default/blocks/host_provision_plugin/plugin_prod_PLESK_8.tpl b/themes/default/blocks/host_provision_plugin/plugin_prod_PLESK_8.tpl new file mode 100644 index 00000000..0f986cb7 --- /dev/null +++ b/themes/default/blocks/host_provision_plugin/plugin_prod_PLESK_8.tpl @@ -0,0 +1,36 @@ +{$list->unserial($product.host_provision_plugin_data, "plugin_data")} + + + + + + + + + + + + + + + + + + + + + + + + + +
   
IP Based Plan? + { $list->bool("product_host_provision_plugin_data[ip_based]", $plugin_data.ip_based, "form_menu") } +
   
Client/Domain Templates 
Client template + +
Domain template + +
+ + +