PHP Classes

Package Base: Base classes for implementing a package generator

Recommend this page to a friend!
  Info   View files Documentation   View files View files (40)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 176 This week: 1All time: 8,761 This week: 560Up
Version License PHP version Categories
packagebase 1.0.27MIT/X Consortium ...5.3.3PHP 5, Libraries, Data types
Description 

Authors

Mikaël DELSOL
Luke Rodgers
Arthur Moore
Necati Yared Ozal
Gemorroj
hordijk
Jacob Dreesen
Karl Pierce
maurobn


Contributor

This package contains base classes for implementing a package generator.

It defines several base classes and interfaces that are implemented and extended by the package generator package.

Currently it provides an AbstractSoapClientBase class, AbstractStructArrayBase class, AbstractStructBase class, and the interfaces SoapClientInterface, StructArrayInterface, StructInterface.

Picture of WsdlToPhp
  Performance   Level  
Name: WsdlToPhp <contact>
Classes: 9 packages by
Country: France France
Age: 40
All time rank: 73731 in France France
Week rank: 411 Up15 in France France Up
Innovation award
Innovation award
Nominee: 5x

Winner: 1x

Recommendations

Call SOAP Web service
Problem to call Web service with authentication

SOAP client with Basic Authorization
Need a SOAP client that sends Basic Authorization header

Documentation

Package Base

> Classes that are used by the classes generated by the PackageGenerator project to ease the SoapClient UX.

License Latest Stable Version TeamCity build status Scrutinizer Code Quality Code Coverage Total Downloads StyleCI SymfonyInsight

The goal is to provide generic and useful classes that are on top of the classes generated by the PackageGenerator project.

For example, it allows to easily loop through the array elements of a SOAP result object property, it allows to easily set HTTP and SOAP headers for a SOAP request and it allows to easily populate an object from its array state representation.

Main features

The interfaces

The defined interfaces must be used in order to be able to match the requirements for the PackageGenerator generated classes.

StructEnumInterface

Description

This interface must be used to define a new EnumType class.

What has to be implemented?

There is at least/most one method that must be implemented so it's pretty fast to implement it even if you don't see the goal of it: - valueIsValid($value): this method must ensure that the passed $value is valid. This can be done using the array of string returned by the getValidValues method always present in the generated Enum classes.

If you do not want to implement this method, you can too create your own class that inherits from our AbstractStructEnumBase class.

StructInterface

Description

This interface must be used to define a new StructType class.

What has to be implemented?

There is at least/most one method that must be implemented so it's pretty fast to implement it even if you don't see the goal of it: - __set_state: __set_state is useful when you want want to load an object that you stored as a string using var_export.

If you do not want to implement this method, you can too create your own class that inherits from our AbstractStructBase class.

StructArrayInterface

Description

This interface must be used to define a new ArrayType class. The goal is to provide utility methods around Array Structs defined by the Wsdl in order to ease the handling of its content. Therefore, this interface inherits from our StructInterface interface plus the native ArrayAccess, Iterator and Countable PHP interfaces

What has to be implemented?

The only method that must be implemented would be getAttributeName but be aware that it is implemented in every generated ArrayType class so no need to define it. It's just a reminder of what is available in ArrayType classes.

So, basically, you MUST at least override the methods declared by the PHP interfaces from which this interface inherits

If you do not want to implement all the methods, you can too create your own class that inherits from our AbstractStructArrayBase class.

SoapClientInterface

Description

This interface must be used to define a new SoapClient base class for any `ServiceType` class generated by PackageGenerator.

Options

Here are the constants/options defined by this interface and their utility: - DEFAULT_SOAP_CLIENT_CLASS = '\SoapClient': this is the default SoapClient class that is used to send the request. Feel free to override it if you want to use another SoapClient class - OPTION_PREFIX: this is the prefix used for any constant's option name - WSDL_URL: option index used to pass the WSDL url - WSDL_URI: option index used to pass the target namespace of the SOAP service (required for non-WSDL-mode with with the location) - WSDL_USE: option index used to pass non-WSDL-mode option use - WSDL_STYLE: option index used to pass non-WSDL-mode option style - WSDL_CLASSMAP: the classmap's array - WSDL_LOGIN: the basic authentication's login - WSDL_PASSWORD: the basic authentication's password - WSDL_TRACE: tracing of request so faults can be backtraced. This defaults to `true` - WSDL_EXCEPTIONS: boolean value defining whether soap errors throw exceptions of type SoapFault - WSDL_CACHE_WSDL: option is one of `WSDL_CACHE_NONE`, `WSDL_CACHE_DISK`, `WSDL_CACHE_MEMORY` or `WSDL_CACHE_BOTH` - WSDL_STREAM_CONTEXT: a resource for context - WSDL_SOAP_VERSION: one of either `SOAP_1_1` or `SOAP_1_2` to select SOAP 1.1 or 1.2, respectively. If omitted, SOAP 1.1 is used - WSDL_COMPRESSION: allows to use compression of HTTP SOAP requests and responses - WSDL_ENCODING: internal character encoding. This option does not change the encoding of SOAP requests (it is always utf-8), but converts strings into it - WSDL_CONNECTION_TIMEOUT: defines a timeout in seconds for the connection to the SOAP service. This option does not define a timeout for services with slow responses. To limit the time to wait for calls to finish the default_socket_timeout setting is available - WSDL_TYPEMAP: array of type mappings. Type mapping is an array with keys type_name, type_ns (namespace URI), from_xml (callback accepting one string parameter) and to_xml (callback accepting one object parameter) - WSDL_USER_AGENT: specifies string to use in User-Agent header - WSDL_FEATURES: a bitmask of `SOAP_SINGLE_ELEMENT_ARRAYS`, `SOAP_USE_XSI_ARRAY_TYPE`, `SOAP_WAIT_ONE_WAY_CALLS` - WSDL_KEEP_ALIVE: a boolean value defining whether to send the Connection: Keep-Alive header or Connection: close - WSDL_PROXY_HOST: your pxoxy hostname - WSDL_PROXY_PORT: your proxy port - WSDL_PROXY_LOGIN: your proxy login - WSDL_PROXY_PASSWORD: your proxy password - WSDL_LOCAL_CERT: your local certificate content (as a string) - WSDL_PASSPHRASE: your local passphrase content (as a string) - WSDL_AUTHENTICATION: authentication method may be either `SOAP_AUTHENTICATION_BASIC` (default) or `SOAP_AUTHENTICATION_DIGEST` - WSDL_SSL_METHOD: one of `SOAP_SSL_METHOD_TLS`, `SOAP_SSL_METHOD_SSLv2`, `SOAP_SSL_METHOD_SSLv3` or `SOAP_SSL_METHOD_SSLv23`

What has to be implemented?

Here are the methods that must be implemented and why: - __construct(array $wsdlOptions = array(), $resetSoapClient = true): the constructor must be able to handl one of the listed constants above - getSoapClient(): must return the SoapClient object that is responsible fo sending the requests. - setSoapHeader($nameSpace, $name, $data, $mustUnderstand = false, $actor = null): look to AbstractSoapClientBase part that details this method. Basically, it allows to define SoapHeaders for the request - getLastError(): must return the last error, its format is up to you - saveLastError($methodName, \SoapFault $soapFault): look to AbstractSoapClientBase part that details this method. Basically, it must allow to store a catched Soapfault object when a request has failed - getResult(): should return the Soap Web Service response, it's up to you - setResult($result): must accept any parameter type as it should received the Soap Web Service response

If you do not want to implement all these methods, you can too create your own class that inherits from our AbstractSoapClientBase class.

The abstract classes

AbstractStructEnumBase

Description

This class is the base class for any `EnumType` class generated by PackageGenerator. It implements our StructEnumInterface interface. It defines two methods: - valueIsValid($value): It defines the default behaviour in order to validate a value that must be based on the current EnumType class constants returned by the getValidValues method. - __toString(): see __toString definition

AbstractStructBase

Description

This class is the base class for any `StructType` class generated by PackageGenerator. It implements our StructInterface interface. It defines five methods: - __set_state($array): Useful when you load the string representation of an object that you stored using `var_export`. It also allows you to ease the instanciation of an object that contains many properties which would be hard to instanciate using the `__construct` method. You can see `__set_state` as an hydratation method. - setPropertyValue(string $name, $value): As magic method `__set` but used by the `__set_state` method. Plus, defining `__set` method on used class by the classmap option for the SoapClient breaks the correct hydratation of your received objects. - getPropertyValue(string $name): As magic method `__get`. Used by our AbstractStructArrayBase class. - jsonSerialize(): by implementing the \JsonSerializable interface, it implements this method that allows to pass the object to the json_encode method so it will return the properties of the current object in an array. - __toString(): see __toString definition

Usage

$item = \Api\StructType\Item::__set_state([
    'id' => 1,
    'name' => 'Entity #1',
    'label' => 'Entity #1',
    '_href' => 'http://www.entity.com',
]);
// $item is now an \Api\StructType\Item object

AbstractStructArrayBase

Description

This class is the base class for any `ArrayType` class generated by PackageGenerator. It implements our StructArrayInterface interface.

Usage

As soon as you have an element that is an array of items such as:

$items = \Api\ArrayType\Items::__set_state([
    'items' => [
        \Api\StructType\Item::__set_state([
            'id' => 1,
            'name' => 'Entity #1',
            'label' => 'Entity #1',
            '_href' => 'http://www.entity-1.com',
        ]),
        \Api\StructType\Item::__set_state([
            'id' => 2,
            'name' => 'Entity #2',
            'label' => 'Entity #2',
            '_href' => 'http://www.entity-2.com',
        ]),
        \Api\StructType\Item::__set_state([
            'id' => 3,
            'name' => 'Entity #3',
            'label' => 'Entity #3',
            '_href' => 'http://www.entity-3.com',
        ]),
    ],
]);
// 'items' is the unique property of the object
// Its name is returned by the getAttributeName method
// defined in the generated \Api\ArrayType\Items class
  • You can call ```count```, ```length``` methods: gives you the number of items contained by your object
  • You can iterate through the items:
    foreach ($items as $item) {
    // $items->current() and $item is an \Api\StructType\Item object
    // $items->key() is the current index
    }
    
  • You can get the first item:
    $items->first();
    
  • You can get the last item:
    $items->last();
    
  • You can get any item:
    $items->item($index);
    
  • You can add a new item:
    $items->add(\Api\StructType\Item::__set_state([
    'id' => 4,
    'name' => 'Entity #4',
    'label' => 'Entity #4',
    '_href' => 'http://www.entity-4.com',
    ]));
    

AbstractSoapClientBase

Description

This class is the base class for any `ServiceType` class generated by PackageGenerator. Its goal is to provide utility/handful methods by implementing our SoapClientInterface interface. It's basically a decorator design pattern as the class has the SoapClient object as a static property in order to be able to apply methods on it. It is a static property in order to have a singleton between multiple calls (allowing to send cookies automatically between calls). It can be reset by passing true as the second parameter.

Usage

Let's say you have this type of generate `ServiceType` class:

namespace Api\ServiceType;
use \WsdlToPhp\PackageBase\AbstractSoapClientBase;
class ApiUpdate extends AbstractSoapClientBase
{
    public function UpdateBulkOrder(\Api\StructType\ApiUpdateBulkOrder $parameters)
    {
        try {
            $this->setResult($this->getSoapClient()->UpdateBulkOrder($parameters));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
}

You can do:

use \WsdlToPhp\PackageBase\AbstractSoapClientBase;
$options = [
    AbstractSoapClientBase::WSDL_URL => '__WSDL_URL__',
    AbstractSoapClientBase::WSDL_CLASSMAP => \Api\ApiClassMap::classMap(),
];
// sets the first instance of SoapClient within  AbstractSoapClientBase
$update = new \Api\ServiceType\ApiUpdate($options);
// resets the SoapClient instance
$update = new \Api\ServiceType\ApiUpdate($options, true);

Then call any of these base methods: - getResult: return the actual response as an object. The object's class should be a generated class - getLastRequest($asDomDocument = false): returns either the XML string version or the `DOMDocument` version of the request - getLastResponse($asDomDocument = false): returns either the XML string version or the `DOMDocument` version of the response - getLastRequestHeaders($asArray = false): returns either the HTTP request's headers as a string or as an array (each HTTP header is parsed) - getLastResponseHeaders($asArray = false): returns either the HTTP response's headers as a string or as an array - getLastError: automatically populated with an error when `$this->saveLastError(__METHOD__, $soapFault)` is called - getLastErrorForMethod($methodName) : returns the error associated to the called method. It should return a `SoapFault` object

$result = $update->UpdateBulkOrder(new \Api\StructType\ApiUpdateBulkOrder())
if ($result !== false) {
    echo "\nThis is the result as an object:" . print_r($update->getResult(), true);
    // Actually $result is the same data than $update->getResult()
} else {
    echo "\nThis is the XML request:" . $update->getLastRequest(false);
    echo "\nThese are the request's headers:" . $update->getLastRequestHeaders(false);
    echo "\nThis is the XML response:" . $update->getLastResponse(false);
    echo "\nThese are the response's headers:" . $update->getLastResponseHeaders(false);
    echo "\nThese are the last errors:" . print_r($update->getLastError(), true);
    echo "\nThis is the current error:" . print_r($update->getLastErrorForMethod('\Api\ServiceType\ApiUpdate::UpdateBulkOrder'), true);
}

You have additional methods such as: - setSoapHeader($nameSpace, $name, $data, $mustUnderstand = false, $actor = null): it provides a way to redefine SoapHeaders

// A sample of its usage in the generated ServiceType class
public function setSoapHeaderCSPCHD(\Api\StructType\ApiCSPCHD $cSPCHD, $nameSpace = 'http://tempuri.org', $mustUnderstand = false, $actor = null)
{
    return $this->setSoapHeader($nameSpace, 'CSPCHD', $cSPCHD, $mustUnderstand, $actor);
}
  • setHttpHeader($headerName, $headerValue): an easy way to define your proper HTTP headers that must be sent
  • setLocation($location): Sets the location of the Web service to use
  • getStreamContext(): Returns the created stream context used by the SoapClient class
  • getStreamContextOptions(): Returns the created stream context's options used by the SoapClient class

Need improvements for these classes?

Feel free to make some pull requests. We'll study them and let you know when it can be integrated.

Testing

You can run the unit tests with the following command:

$ cd /path/to/src/WsdlToPhp/PackageBase/
$ composer install
$ composer test

Testing using Docker

Thanks to the Docker image of phpfarm, tests can be run locally under any PHP version using the cli: - php-7.4

First of all, you need to create your container which you can do using docker-compose by running the below command line from the root directory of the project:

$ docker-compose up -d --build

You then have a container named package_base in which you can run composer commands and php cli commands such as:

# install deps in container (using update ensure it does use the composer.lock file if there is any)
$ docker exec -it package_base php-7.4 /usr/bin/composer update
# run tests in container
$ docker exec -it package_base php-7.4 -dmemory_limit=-1 vendor/bin/phpunit

FAQ

If you have a question, feel free to create an issue.

License

The MIT License (MIT). Please see License File for more information.


  Files folder image Files  
File Role Description
Files folder image.docker (1 file)
Files folder image.github (2 files, 1 directory)
Files folder imagesrc (9 files)
Files folder imagetests (10 files, 1 directory)
Accessible without login Plain text file .editorconfig Data Auxiliary data
Accessible without login Plain text file .php-cs-fixer.php Example Example script
Accessible without login Plain text file CHANGELOG.md Data Auxiliary data
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file docker-compose.yml Data Auxiliary data
Accessible without login Plain text file LICENSE Lic. License text
Accessible without login Plain text file phpstan.neon.dist Data Auxiliary data
Accessible without login Plain text file phpunit.xml.dist Data Auxiliary data
Accessible without login Plain text file README.md Doc. Documentation
Accessible without login Plain text file sonar-project.properties Data Auxiliary data
Accessible without login Plain text file UPGRADE-2.0.md Data Auxiliary data
Accessible without login Plain text file UPGRADE-3.0.md Data Auxiliary data
Accessible without login Plain text file UPGRADE-4.0.md Data Auxiliary data
Accessible without login Plain text file UPGRADE-5.0.md Data Auxiliary data

  Files folder image Files  /  .docker  
File Role Description
  Accessible without login Plain text file Dockerfile Data Auxiliary data

  Files folder image Files  /  .github  
File Role Description
Files folder imageworkflows (1 file)
  Accessible without login Plain text file CODE_OF_CONDUCT.md Data Auxiliary data
  Accessible without login Plain text file CONTRIBUTING.md Data Auxiliary data

  Files folder image Files  /  .github  /  workflows  
File Role Description
  Accessible without login Plain text file sonars.yml Data Auxiliary data

  Files folder image Files  /  src  
File Role Description
  Plain text file AbstractSoapClientBase.php Class Class source
  Plain text file AbstractStructArrayBase.php Class Class source
  Plain text file AbstractStructBase.php Class Class source
  Plain text file AbstractStructEnumBase.php Class Class source
  Plain text file SoapClientInterface.php Class Class source
  Plain text file StructArrayInterface.php Class Class source
  Plain text file StructEnumInterface.php Class Class source
  Plain text file StructInterface.php Class Class source
  Plain text file Utils.php Class Class source

  Files folder image Files  /  tests  
File Role Description
Files folder imageresources (3 files)
  Accessible without login Plain text file Client.php Test Unit test script
  Accessible without login Plain text file SoapClient.php Test Unit test script
  Accessible without login Plain text file SoapClientTest.php Test Unit test script
  Accessible without login Plain text file StructArrayObject.php Test Unit test script
  Accessible without login Plain text file StructArrayTest.php Test Unit test script
  Accessible without login Plain text file StructBaseTest.php Test Unit test script
  Plain text file StructEnumObject.php Class Class source
  Accessible without login Plain text file StructObject.php Test Unit test script
  Accessible without login Plain text file TestCase.php Test Unit test script
  Accessible without login Plain text file UtilsTest.php Test Unit test script

  Files folder image Files  /  tests  /  resources  
File Role Description
  Accessible without login Plain text file bingsearch.wsdl Data Auxiliary data
  Accessible without login Plain text file formated.xml Data Auxiliary data
  Accessible without login Plain text file oneline.xml Data Auxiliary data

 Version Control Unique User Downloads Download Rankings  
 100%
Total:176
This week:1
All time:8,761
This week:560Up