Revert "Introduce IHTTPResult Interface as abstraction for CurlResult"

This reverts commit f238f4ef
This commit is contained in:
Philipp Holzer 2020-10-11 23:26:22 +02:00
parent b70b9d1139
commit 909da78e20
No known key found for this signature in database
GPG Key ID: 9A28B7D4FF5667BD
2 changed files with 57 additions and 108 deletions

View File

@ -29,7 +29,7 @@ use Friendica\Util\Network;
/** /**
* A content class for Curl call results * A content class for Curl call results
*/ */
class CurlResult implements IHTTPResult class CurlResult
{ {
/** /**
* @var int HTTP return code or 0 if timeout or failure * @var int HTTP return code or 0 if timeout or failure
@ -229,19 +229,33 @@ class CurlResult implements IHTTPResult
} }
} }
/** {@inheritDoc} */ /**
* Gets the Curl Code
*
* @return string The Curl Code
*/
public function getReturnCode() public function getReturnCode()
{ {
return $this->returnCode; return $this->returnCode;
} }
/** {@inheritDoc} */ /**
* Returns the Curl Content Type
*
* @return string the Curl Content Type
*/
public function getContentType() public function getContentType()
{ {
return $this->contentType; return $this->contentType;
} }
/** {@inheritDoc} */ /**
* Returns the Curl headers
*
* @param string $field optional header field. Return all fields if empty
*
* @return string the Curl headers or the specified content of the header variable
*/
public function getHeader(string $field = '') public function getHeader(string $field = '')
{ {
if (empty($field)) { if (empty($field)) {
@ -259,7 +273,13 @@ class CurlResult implements IHTTPResult
return ''; return '';
} }
/** {@inheritDoc} */ /**
* Check if a specified header exists
*
* @param string $field header field
*
* @return boolean "true" if header exists
*/
public function inHeader(string $field) public function inHeader(string $field)
{ {
$field = strtolower(trim($field)); $field = strtolower(trim($field));
@ -269,7 +289,11 @@ class CurlResult implements IHTTPResult
return array_key_exists($field, $headers); return array_key_exists($field, $headers);
} }
/** {@inheritDoc} */ /**
* Returns the Curl headers as an associated array
*
* @return array associated header array
*/
public function getHeaderArray() public function getHeaderArray()
{ {
if (!empty($this->header_fields)) { if (!empty($this->header_fields)) {
@ -289,55 +313,73 @@ class CurlResult implements IHTTPResult
return $this->header_fields; return $this->header_fields;
} }
/** {@inheritDoc} */ /**
* @return bool
*/
public function isSuccess() public function isSuccess()
{ {
return $this->isSuccess; return $this->isSuccess;
} }
/** {@inheritDoc} */ /**
* @return string
*/
public function getUrl() public function getUrl()
{ {
return $this->url; return $this->url;
} }
/** {@inheritDoc} */ /**
* @return string
*/
public function getRedirectUrl() public function getRedirectUrl()
{ {
return $this->redirectUrl; return $this->redirectUrl;
} }
/** {@inheritDoc} */ /**
* @return string
*/
public function getBody() public function getBody()
{ {
return $this->body; return $this->body;
} }
/** {@inheritDoc} */ /**
* @return array
*/
public function getInfo() public function getInfo()
{ {
return $this->info; return $this->info;
} }
/** {@inheritDoc} */ /**
* @return bool
*/
public function isRedirectUrl() public function isRedirectUrl()
{ {
return $this->isRedirectUrl; return $this->isRedirectUrl;
} }
/** {@inheritDoc} */ /**
* @return int
*/
public function getErrorNumber() public function getErrorNumber()
{ {
return $this->errorNumber; return $this->errorNumber;
} }
/** {@inheritDoc} */ /**
* @return string
*/
public function getError() public function getError()
{ {
return $this->error; return $this->error;
} }
/** {@inheritDoc} */ /**
* @return bool
*/
public function isTimeout() public function isTimeout()
{ {
return $this->isTimeout; return $this->isTimeout;

View File

@ -1,93 +0,0 @@
<?php
namespace Friendica\Network;
/**
* Temporary class to map Friendica used variables based on PSR-7 HTTPResponse
*/
interface IHTTPResult
{
/**
* Gets the Return Code
*
* @return string The Return Code
*/
public function getReturnCode();
/**
* Returns the Content Type
*
* @return string the Content Type
*/
public function getContentType();
/**
* Returns the headers
*
* @param string $field optional header field. Return all fields if empty
*
* @return string the headers or the specified content of the header variable
*/
public function getHeader(string $field = '');
/**
* Check if a specified header exists
*
* @param string $field header field
*
* @return boolean "true" if header exists
*/
public function inHeader(string $field);
/**
* Returns the headers as an associated array
*
* @return array associated header array
*/
public function getHeaderArray();
/**
* @return bool
*/
public function isSuccess();
/**
* @return string
*/
public function getUrl();
/**
* @return string
*/
public function getRedirectUrl();
/**
* @return string
*/
public function getBody();
/**
* @return array
*/
public function getInfo();
/**
* @return boolean
*/
public function isRedirectUrl();
/**
* @return integer
*/
public function getErrorNumber();
/**
* @return string
*/
public function getError();
/**
* @return boolean
*/
public function isTimeout();
}