You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.3 KiB
76 lines
1.3 KiB
<?php
|
|
namespace AliyunMNS\Requests;
|
|
|
|
abstract class BaseRequest
|
|
{
|
|
protected $headers;
|
|
protected $resourcePath;
|
|
protected $method;
|
|
|
|
protected $body;
|
|
protected $queryString;
|
|
|
|
public function __construct($method, $resourcePath) {
|
|
$this->method = $method;
|
|
$this->resourcePath = $resourcePath;
|
|
}
|
|
|
|
abstract public function generateBody();
|
|
abstract public function generateQueryString();
|
|
|
|
public function setBody($body)
|
|
{
|
|
$this->body = $body;
|
|
}
|
|
|
|
public function getBody()
|
|
{
|
|
return $this->body;
|
|
}
|
|
|
|
public function setQueryString($queryString)
|
|
{
|
|
$this->queryString = $queryString;
|
|
}
|
|
|
|
public function getQueryString()
|
|
{
|
|
return $this->queryString;
|
|
}
|
|
|
|
public function isHeaderSet($header)
|
|
{
|
|
return isset($this->headers[$header]);
|
|
}
|
|
|
|
public function getHeaders()
|
|
{
|
|
return $this->headers;
|
|
}
|
|
|
|
public function removeHeader($header)
|
|
{
|
|
if (isset($this->headers[$header]))
|
|
{
|
|
unset($this->headers[$header]);
|
|
}
|
|
}
|
|
|
|
public function setHeader($header, $value)
|
|
{
|
|
$this->headers[$header] = $value;
|
|
}
|
|
|
|
public function getResourcePath()
|
|
{
|
|
return $this->resourcePath;
|
|
}
|
|
|
|
public function getMethod()
|
|
{
|
|
return $this->method;
|
|
}
|
|
}
|
|
|
|
?>
|