File Manager
Upload
Current Directory: /home/lartcid/public_html/journal.lartc.id
[Back]
..
[Open]
Hapus
Rename
.htaccess
[Edit]
Hapus
Rename
.well-known
[Open]
Hapus
Rename
README.md
[Edit]
Hapus
Rename
api
[Open]
Hapus
Rename
cache
[Open]
Hapus
Rename
cgi-bin
[Open]
Hapus
Rename
classes
[Open]
Hapus
Rename
config.TEMPLATE.inc.php
[Edit]
Hapus
Rename
config.inc.php
[Edit]
Hapus
Rename
controllers
[Open]
Hapus
Rename
cypress.json
[Edit]
Hapus
Rename
dbscripts
[Open]
Hapus
Rename
docs
[Open]
Hapus
Rename
error_log
[Edit]
Hapus
Rename
favicon.ico
[Edit]
Hapus
Rename
index.php
[Edit]
Hapus
Rename
js
[Open]
Hapus
Rename
lib
[Open]
Hapus
Rename
locale
[Open]
Hapus
Rename
mini.php
[Edit]
Hapus
Rename
pages
[Open]
Hapus
Rename
php.ini
[Edit]
Hapus
Rename
plugins
[Open]
Hapus
Rename
public
[Open]
Hapus
Rename
registry
[Open]
Hapus
Rename
scheduledTaskLogs
[Open]
Hapus
Rename
schemas
[Open]
Hapus
Rename
styles
[Open]
Hapus
Rename
templates
[Open]
Hapus
Rename
tools
[Open]
Hapus
Rename
Edit File
<?php /** * @file classes/webservice/WebServiceRequest.inc.php * * Copyright (c) 2014-2021 Simon Fraser University * Copyright (c) 2000-2021 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @class WebServiceRequest * @ingroup webservice * * @brief Represents a web service request. */ class WebServiceRequest { /** @var string */ var $_url; /** @var mixed array (key value pairs) or string */ var $_params; /** @var string HTTP request method */ var $_method; /** @var string Accept header */ var $_accept; /** @var array Additional request headers */ var $_headers = array(); /** @var boolean Whether to make an asynchronous request */ var $_async = false; /** @var boolean Whether to consider the proxy settings in the config.inc.php */ var $_useProxySettings = true; /** * Constructor * * @param $url string The request URL * @param $params mixed array (key value pairs) or string request parameters * @param $method string GET or POST * @param $useProxy boolean Whether the proxy settings from config.inc.php should be considered */ function __construct($url, $params, $method = 'GET', $useProxy = true) { $this->_url = $url; $this->_params = $params; $this->_method = $method; $this->_accept = 'text/xml, */*'; $this->_useProxySettings = $useProxy; } // // Getters and Setters // /** * Get the web service URL * @return string */ function getUrl() { return $this->_url; } /** * Set the web service URL * @param $url string */ function setUrl($url) { $this->_url = $url; } /** * Get the request parameters * @return mixed array (key value pairs) or string */ function &getParams() { return $this->_params; } /** * Set the request parameters * @param $params mixed array (key value pairs) or string */ function setParams(&$params) { $this->_params =& $params; } /** * Get the request method * @return string */ function getMethod() { return $this->_method; } /** * Set the request method * @param $method string */ function setMethod($method) { $this->_method = $method; } /** * Set the accept header value * @param $accept string */ function setAccept($accept) { $this->_accept = $accept; } /** * Get the accept header value * @return string */ function getAccept() { return $this->_accept; } /** * Set an additional request header. * @param $header string * @param $content string */ function setHeader($header, $content) { $this->_headers[$header] = $content; } /** * Check whether the given header is * present in the request. * * The check is case insensitive. * * @param $header string */ function hasHeader($header) { $header = strtolower($header); foreach($this->_headers as $h => $dummy) { if ($header == strtolower($h)) return true; } return false; } /** * Get additional request headers. */ function getHeaders() { return $this->_headers; } /** * Set whether to make an async request. * (POST requests only) * @param $async boolean */ function setAsync($async) { $this->_async = (boolean)$async; } /** * Whether to make an async request. * @return boolean */ function getAsync() { return $this->_async; } /** * Set whether to consider the proxy settings in config.inc.php. * @param $useProxySettings boolean */ function setUseProxySettings($useProxySettings) { $this->_useProxySettings = $useProxySettings; } /** * Get whether to consider the proxy settings in config.inc.php. * @return boolean */ function getUseProxySettings() { return $this->_useProxySettings; } }
Simpan