Recommend this page to a friend! |
Download .zip |
Info | Documentation | View files (40) | Download .zip | Reputation | Support forum | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2023-02-10 (7 days ago) | Not enough user ratings | Total: 173 This week: 6 | All time: 8,750 This week: 20 |
Version | License | PHP version | Categories | |||
packagebase 1.0.27 | MIT/X Consortium ... | 5.3.3 | PHP 5, Libraries, Data types |
Description | Author | |
This package contains base classes for implementing a package generator. Recommendations Call SOAP Web service SOAP client with Basic Authorization |
> Classes that are used by the classes generated by the PackageGenerator project to ease the SoapClient UX.
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.
The defined interfaces must be used in order to be able to match the requirements for the PackageGenerator generated classes.
This interface must be used to define a new EnumType class.
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.
This interface must be used to define a new StructType class.
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.
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
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.
This interface must be used to define a new SoapClient base class for any `
ServiceType`
class generated by PackageGenerator.
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`
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.
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
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
$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
This class is the base class for any `
ArrayType`
class generated by PackageGenerator. It implements our StructArrayInterface interface.
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 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',
]));
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.
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);
}
Feel free to make some pull requests. We'll study them and let you know when it can be integrated.
You can run the unit tests with the following command:
$ cd /path/to/src/WsdlToPhp/PackageBase/
$ composer install
$ composer test
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
If you have a question, feel free to create an issue.
The MIT License (MIT). Please see License File for more information.
Files |
File | Role | Description | ||
---|---|---|---|---|
.docker (1 file) | ||||
.github (2 files, 1 directory) | ||||
src (9 files) | ||||
tests (10 files, 1 directory) | ||||
.editorconfig | Data | Auxiliary data | ||
.php-cs-fixer.php | Example | Example script | ||
CHANGELOG.md | Data | Auxiliary data | ||
composer.json | Data | Auxiliary data | ||
docker-compose.yml | Data | Auxiliary data | ||
LICENSE | Lic. | License text | ||
phpstan.neon.dist | Data | Auxiliary data | ||
phpunit.xml.dist | Data | Auxiliary data | ||
README.md | Doc. | Documentation | ||
sonar-project.properties | Data | Auxiliary data | ||
UPGRADE-2.0.md | Data | Auxiliary data | ||
UPGRADE-3.0.md | Data | Auxiliary data | ||
UPGRADE-4.0.md | Data | Auxiliary data | ||
UPGRADE-5.0.md | Data | Auxiliary data |
Files | / | .github |
File | Role | Description | ||
---|---|---|---|---|
workflows (1 file) | ||||
CODE_OF_CONDUCT.md | Data | Auxiliary data | ||
CONTRIBUTING.md | Data | Auxiliary data |
Files | / | src |
File | Role | Description |
---|---|---|
AbstractSoapClientBase.php | Class | Class source |
AbstractStructArrayBase.php | Class | Class source |
AbstractStructBase.php | Class | Class source |
AbstractStructEnumBase.php | Class | Class source |
SoapClientInterface.php | Class | Class source |
StructArrayInterface.php | Class | Class source |
StructEnumInterface.php | Class | Class source |
StructInterface.php | Class | Class source |
Utils.php | Class | Class source |
Files | / | tests |
File | Role | Description | ||
---|---|---|---|---|
resources (3 files) | ||||
Client.php | Test | Unit test script | ||
SoapClient.php | Test | Unit test script | ||
SoapClientTest.php | Test | Unit test script | ||
StructArrayObject.php | Test | Unit test script | ||
StructArrayTest.php | Test | Unit test script | ||
StructBaseTest.php | Test | Unit test script | ||
StructEnumObject.php | Class | Class source | ||
StructObject.php | Test | Unit test script | ||
TestCase.php | Test | Unit test script | ||
UtilsTest.php | Test | Unit test script |
Files | / | tests | / | resources |
File | Role | Description |
---|---|---|
bingsearch.wsdl | Data | Auxiliary data |
formated.xml | Data | Auxiliary data |
oneline.xml | Data | Auxiliary data |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.