diff options
author | Hannes Kindströmmer <hannes@kindstrommer.se> | 2017-03-20 15:55:54 +0100 |
---|---|---|
committer | Hannes Kindströmmer <hannes@kindstrommer.se> | 2017-03-20 15:55:54 +0100 |
commit | 461b0e87833c6fcfb630c6320409ca75bcad1d5f (patch) | |
tree | afed68fe111ae3261b89a4b4150462dd1c1b7082 /src | |
parent | 39273c0c62edb5f3a5081cc6bbc19bf165a9b71b (diff) | |
parent | 4e2e609828b7b7a9875be7b94b7dcdd853eab9a4 (diff) | |
download | ip1-php-sdk-461b0e87833c6fcfb630c6320409ca75bcad1d5f.zip ip1-php-sdk-461b0e87833c6fcfb630c6320409ca75bcad1d5f.tar.gz ip1-php-sdk-461b0e87833c6fcfb630c6320409ca75bcad1d5f.tar.bz2 |
Merge branch 'release/0.2.0-beta'0.2.0-beta
Diffstat (limited to 'src')
-rw-r--r-- | src/Core/Communicator.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Core/Communicator.php b/src/Core/Communicator.php index 5fee54a..1417e4c 100644 --- a/src/Core/Communicator.php +++ b/src/Core/Communicator.php @@ -12,6 +12,7 @@ namespace IP1\RESTClient\Core; use IP1\RESTClient\Recipient\RecipientFactory; +use IP1\RESTClient\Recipient\ProcessedBlacklistEntry; use IP1\RESTClient\Core\ProcessedComponentInterface; use IP1\RESTClient\Core\UpdatableComponentInterface; use IP1\RESTClient\Core\ProcessableComponentInterface; @@ -63,6 +64,11 @@ class Communicator case "IP1\RESTClient\SMS\OutGoingSMS": $response = $this->sendRequest("api/sms/send", "POST", json_encode($component)); return RecipientFactory::createProcessedOutGoingSMSFromJSONArray($response); + case "IP1\RESTClient\Recipient\BlacklistEntry": + $response = $this->sendRequest("api/blacklist", "POST", json_encode($component)); + $stdResponse = json_decode($response); + $created = new \DateTime($stdResponse->Created); + return new ProcessedBlacklistEntry($stdResponse->Phone, $stdResponse->ID, $created); default: throw new \InvalidArgumentException("Given JsonSerializable not supported."); } @@ -88,6 +94,13 @@ class Communicator case "IP1\RESTClient\Recipient\ProcessedMembership": $response = $this->sendRequest("api/memberships/".$component->getID(), "DELETE"); return RecipientFactory::createProcessedMembershipFromJSON($response); + + case "IP1\RESTClient\Recipient\ProcessedBlacklistEntry": + $response = $this->sendRequest("api/blacklist/".$component->getID(), "DELETE"); + $stdResponse = json_decode($response); + $created = new \DateTime($stdResponse->Created); + return new ProcessedBlacklistEntry($stdResponse->Phone, $stdResponse->ID, $created); + default: throw new \InvalidArgumentException("Given JsonSerializable not supported."); } |