chjacobsen
2011-04-01 e0db878eb71dd40d6c000f1debedad3f16f15ba6
interface/lib/classes/remoting.inc.php
@@ -192,53 +192,53 @@
      return $affected_rows;
   }
   
   //* Get mail mailinglist details
   public function mail_mailinglist_get($session_id, $primary_id)
    {
      global $app;
      if(!$this->checkPerm($session_id, 'mail_mailinglist_get')) {
         $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
         return false;
      }
      $app->uses('remoting_lib');
      $app->remoting_lib->loadFormDef('../mail/form/mail_mailinglist.tform.php');
      return $app->remoting_lib->getDataRecord($primary_id);
   }
   //* Add a mail mailinglist
   public function mail_mailinglist_add($session_id, $client_id, $params)
    {
      if(!$this->checkPerm($session_id, 'mail_mailinglist_add')) {
         $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
         return false;
      }
      $primary_id = $this->insertQuery('../mail/form/mail_mailinglist.tform.php',$client_id,$params);
      return $primary_id;
   }
   //* Update a mail mailinglist
   public function mail_mailinglist_update($session_id, $client_id, $primary_id, $params)
    {
      if(!$this->checkPerm($session_id, 'mail_mailinglist_update')) {
         $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
         return false;
      }
      $affected_rows = $this->updateQuery('../mail/form/mail_mailinglist.tform.php', $client_id, $primary_id, $params);
      return $affected_rows;
   }
   //* Delete a mail mailinglist
   public function mail_mailinglist_delete($session_id, $primary_id)
    {
      if(!$this->checkPerm($session_id, 'mail_mailinglist_delete')) {
         $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
         return false;
      }
      $affected_rows = $this->deleteQuery('../mail/form/mail_mailinglist.tform.php', $primary_id);
      return $affected_rows;
   }
   //* Get mail mailinglist details
   public function mail_mailinglist_get($session_id, $primary_id)
    {
      global $app;
      if(!$this->checkPerm($session_id, 'mail_mailinglist_get')) {
         $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
         return false;
      }
      $app->uses('remoting_lib');
      $app->remoting_lib->loadFormDef('../mail/form/mail_mailinglist.tform.php');
      return $app->remoting_lib->getDataRecord($primary_id);
   }
   //* Add a mail mailinglist
   public function mail_mailinglist_add($session_id, $client_id, $params)
    {
      if(!$this->checkPerm($session_id, 'mail_mailinglist_add')) {
         $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
         return false;
      }
      $primary_id = $this->insertQuery('../mail/form/mail_mailinglist.tform.php',$client_id,$params);
      return $primary_id;
   }
   //* Update a mail mailinglist
   public function mail_mailinglist_update($session_id, $client_id, $primary_id, $params)
    {
      if(!$this->checkPerm($session_id, 'mail_mailinglist_update')) {
         $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
         return false;
      }
      $affected_rows = $this->updateQuery('../mail/form/mail_mailinglist.tform.php', $client_id, $primary_id, $params);
      return $affected_rows;
   }
   //* Delete a mail mailinglist
   public function mail_mailinglist_delete($session_id, $primary_id)
    {
      if(!$this->checkPerm($session_id, 'mail_mailinglist_delete')) {
         $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
         return false;
      }
      $affected_rows = $this->deleteQuery('../mail/form/mail_mailinglist.tform.php', $primary_id);
      return $affected_rows;
   }
   //* Get mail user details
   public function mail_user_get($session_id, $primary_id)
    {
@@ -1005,7 +1005,7 @@
               $this->server->fault('permission_denied','You do not have the permissions to access this function.');
               return false;
         }
         $affected_rows = $this->updateQuery('../client/form/client.tform.php', $client_id, $reseller_id, $params);
         $affected_rows = $this->updateQuery('../client/form/client.tform.php', $reseller_id, $client_id, $params);
         
         $app->remoting_lib->ispconfig_sysuser_update($params,$client_id);
         
@@ -1238,13 +1238,16 @@
   }
   
   //* Add a record
   public function sites_web_domain_add($session_id, $client_id, $params)
   public function sites_web_domain_add($session_id, $client_id, $params, $readonly = false)
    {
      global $app;
      if(!$this->checkPerm($session_id, 'sites_web_domain_add')) {
         $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
         return false;
      }
      $affected_rows =  $this->insertQuery('../sites/form/web_domain.tform.php',$client_id,$params, 'sites:web_domain:on_after_insert');
      if ($readonly === true)
         $app->db->query("UPDATE web_domain SET `sys_userid` = '1' WHERE domain_id = ".$affected_rows);
      return $affected_rows;      
   }
   
@@ -2001,6 +2004,14 @@
         $new_rec = $app->remoting_lib->getDataRecord($insert_id);
         $app->remoting_lib->datalogSave('INSERT',$primary_id,array(),$new_rec);         
         $app->remoting_lib->ispconfig_sysuser_add($params,$insert_id);
            if($reseller_id) {
                $client_group = $app->db->queryOneRecord("SELECT * FROM sys_group WHERE client_id = ".$insert_id);
                $reseller_user = $app->db->queryOneRecord("SELECT * FROM sys_user WHERE client_id = ".$reseller_id);
                $app->auth->add_group_to_user($reseller_user['userid'], $client_group['groupid']);
                $app->db->query("UPDATE client SET parent_client_id = ".$reseller_id." WHERE client_id = ".$insert_id);
            }
      }
      return $insert_id;
   }