Download the PHP package wsdltophp/packagebase without Composer
On this page you can find all versions of the php package wsdltophp/packagebase. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download wsdltophp/packagebase
More information about wsdltophp/packagebase
Files in wsdltophp/packagebase
Package packagebase
Short Description Contains the base classes to be used by classes generated by wsdltophp/packagegenerator
License MIT
Homepage https://github.com/WsdlToPhp/PackageBase
Informations about the package packagebase
Package Base
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.
Main features
- Interfaces
- StructEnumInterface
- StructInterface
- StructArrayInterface
- SoapClientInterface
- Abstract classes
- AbstractStructEnumBase
- AbstractStructBase
- AbstractStructArrayBase
- AbstractSoapClientBase
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 thegetValidValues
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 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 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
- WSDL_EXCEPTIONS: boolean value defining whether soap errors throw exceptions of type SoapFault
- WSDL_CACHE_WSDL: option is one of , , or
- WSDL_STREAM_CONTEXT: a resource for context
- WSDL_SOAP_VERSION: one of either or 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 , ,
- 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 (default) or
- WSDL_SSL_METHOD: one of , , or
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 SoapHeaders for the request
- getLastError(): must return the last error, its format is up to you
- saveLastError($methodName, \SoapFault $soapFault): look to 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 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 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 . It also allows you to ease the instanciation of an object that contains many properties which would be hard to instanciate using the method. You can see as an hydratation method.
- setPropertyValue(string $name, $value): As magic method but used by the method. Plus, defining 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 . 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
AbstractStructArrayBase
Description
This class is the base class for any 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:
- **You can call , methods: gives you the number of items contained by your object
-
You can iterate through the items:
-
You can get the first item:
-
You can get the last item:
-
You can get any item:
- You can add a new item:
AbstractSoapClientBase
Description
This class is the base class for any 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 class:
You can do:
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 version of the request
- getLastResponse($asDomDocument = false): returns either the XML string version or the 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 is called
- getLastErrorForMethod($methodName) : returns the error associated to the called method. It should return a object
You have additional methods such as:
-
setSoapHeader($nameSpace, $name, $data, $mustUnderstand = false, $actor = null): it provides a way to redefine SoapHeaders
- 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:
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:
You then have a container named package_base
in which you can run composer
commands and php cli
commands such as:
FAQ
If you have a question, feel free to create an issue.
License
The MIT License (MIT). Please see License File for more information.
All versions of packagebase with dependencies
ext-soap Version *
ext-dom Version *
ext-json Version *