Spade

Mini Shell

Directory:~$ /proc/self/root/home/lmsyaran/www/joomla5/components/com_fabrik/models/webservice/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ //proc/self/root/home/lmsyaran/www/joomla5/components/com_fabrik/models/webservice/soap.php

<?php
/**
 * SOAP web service
 *
 * @package     Joomla
 * @subpackage  Fabrik
 * @copyright   Copyright (C) 2005-2020  Media A-Team, Inc. - All rights
reserved.
 * @license     GNU/GPL http://www.gnu.org/copyleft/gpl.html
 */

// No direct access
defined('_JEXEC') or die('Restricted access');

use Joomla\CMS\Factory;

jimport('joomla.application.component.model');

/**
 * SOAP web service
 *
 * @package  Fabrik
 * @since    3.0
 */

class FabrikWebServiceSoap extends FabrikWebService
{
	/**
	 * Constructor
	 *
	 * @param   array  $options  ini state
	 */

	public function __construct($options)
	{
		ini_set("soap.wsdl_cache_enabled", 0);
		$this->client = new SoapClient($options['endpoint']);
	}

	/**
	 * get SOAP clients function
	 *
	 * @return  null
	 */

	public function getFunctions()
	{
		$functions = $this->client->__getFunctions();
	}

	/**
	 * Query the web service to get the data
	 *
	 * @param   string  $method      to call at web service (soap only)
	 * @param   array   $options     key value filters to send to web service
to filter the data
	 * @param   string  $startPoint  of actual data, if soap this is an xpath
expression,
	 * otherwise its a key.key2.key3 string to traverse the returned data to
arrive at the data to map to the fabrik list
	 * @param   string  $result      method name - soap only, if not set then
"$method . 'Result' will be used
	 *
	 * @return  array	series of objects which can then be bound to the list
using storeLocally()
	 */

	public function get($method, $options = array(), $startPoint = null,
$result = null)
	{
		if (is_null($result))
		{
			$result = $method . 'Result';
		}

		$xml = $this->client->$method($options);
		$data = Factory::getXML($xml->$result, false);

		if (!is_null($startPoint))
		{
			$data = $data->xpath($startPoint);
		}

		$return = array();

		// Convert xml nodes into simple objects
		foreach ($data as $xmlElement)
		{
			$json = json_encode($xmlElement);
			$return[] = json_decode($json);
		}

		return $return;
	}
}