1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47:
<?php
namespace Net\Bazzline\Component\Curl\ResponseBehaviour;
use Exception;
use Net\Bazzline\Component\Curl\Response\Response;
use RuntimeException;
class ThrowRuntimeExceptionIfStatusCodeIsAboveTheLimitBehaviour implements ResponseBehaviourInterface
{
private $statusCode;
public function __construct($firstStatusCodeThatIsOverTheLimit = 400)
{
$this->statusCode = (int) $firstStatusCodeThatIsOverTheLimit;
}
public function behave(Response $response)
{
$statusCodeIsToHigh = ($response->statusCode() > $this->statusCode);
if ($statusCodeIsToHigh) {
throw new RuntimeException(
'limit of status code exceeded. dumping response: ' .
implode(', ', $response->convertIntoAnArray())
);
}
return $response;
}
}