| | |
| | | $app->db->query("DELETE FROM sys_user WHERE client_id = ?", $client_id); |
| | | |
| | | //* Delete all records (sub-clients, mail, web, etc....) of this client. |
| | | $tables = 'client,dns_rr,dns_soa,dns_slave,ftp_user,mail_access,mail_content_filter,mail_domain,mail_forwarding,mail_get,mail_user,mail_user_filter,shell_user,spamfilter_users,support_message,web_database,web_database_user,web_domain,web_traffic'; |
| | | $tables = 'cron,client,dns_rr,dns_soa,dns_slave,ftp_user,mail_access,mail_content_filter,mail_domain,mail_forwarding,mail_get,mail_user,mail_user_filter,shell_user,spamfilter_users,support_message,web_database,web_database_user,web_domain,web_traffic,domain'; |
| | | $tables_array = explode(',', $tables); |
| | | $client_group_id = $app->functions->intval($client_group['groupid']); |
| | | |
| | |
| | | * @param int client id |
| | | * @param string new password |
| | | * @return bool true if success |
| | | * @author Julio Montoya <gugli100@gmail.com> BeezNest 2010 |
| | | * |
| | | */ |
| | | public function client_change_password($session_id, $client_id, $new_password) { |
| | | global $app; |
| | | |
| | | $app->uses('auth'); |
| | | |
| | | if(!$this->checkPerm($session_id, 'client_change_password')) { |
| | | throw new SoapFault('permission_denied', 'You do not have the permissions to access this function.'); |
| | | return false; |
| | | } |
| | | $client_id = $app->functions->intval($client_id); |
| | | |
| | | $client = $app->db->queryOneRecord("SELECT client_id FROM client WHERE client_id = ?", $client_id); |
| | | if($client['client_id'] > 0) { |
| | | $sql = "UPDATE client SET password = md5(?) WHERE client_id = ?"; |
| | | $new_password = $app->auth->crypt_password($new_password); |
| | | $sql = "UPDATE client SET password = ? WHERE client_id = ?"; |
| | | $app->db->query($sql, $new_password, $client_id); |
| | | $sql = "UPDATE sys_user SET passwort = md5(?) WHERE client_id = ?"; |
| | | $sql = "UPDATE sys_user SET passwort = ? WHERE client_id = ?"; |
| | | $app->db->query($sql, $new_password, $client_id); |
| | | return true; |
| | | } else { |
| | |
| | | |
| | | return $returnval; |
| | | } |
| | | |
| | | } |
| | | |
| | | ?> |