Home
last modified time | relevance | path

Searched full:dokuhttpclient (Results 1 – 25 of 108) sorted by relevance

12345

/plugin/issuelinks/services/
H A DAbstractService.php26 * You can query the $dokuHTTPClient for more result headers later
28 …* @param \DokuHTTPClient $dokuHTTPClient an Instance of \DokuHTTPClient which will make the request
38 …protected function makeHTTPRequest(\DokuHTTPClient $dokuHTTPClient, $url, $headers, array $data, $… argument
40 $dokuHTTPClient->headers = array_merge($dokuHTTPClient->headers ?: [], $headers);
43 $success = $dokuHTTPClient->sendRequest($url, $dataToBeSend, $method);
45 throw new HTTPRequestException('request error', $dokuHTTPClient, $url, $method);
48 if (!$success || $dokuHTTPClient->status < 200 || $dokuHTTPClient->status > 206) {
49 if ($dokuHTTPClient->status >= 500) {
50 throw new ExternalServerException('request error', $dokuHTTPClient, $url, $method);
52 throw new HTTPRequestException('request error', $dokuHTTPClient, $url, $method);
[all …]
H A DGitHub.service.php24 /** @var \DokuHTTPClient */
25 protected $dokuHTTPClient; variable in dokuwiki\\plugin\\issuelinks\\services\\GitHub
31 $this->dokuHTTPClient = new \DokuHTTPClient();
104 $headers = $this->dokuHTTPClient->resp_headers;
147 if ($this->dokuHTTPClient->resp_headers['x-ratelimit-remaining'] < 500) {
150 dformat($this->dokuHTTPClient->resp_headers['x-ratelimit-reset'])
157 if (empty($this->dokuHTTPClient->resp_headers['link'])) {
160 $links = $utils->parseHTTPLinkHeaders($this->dokuHTTPClient->resp_headers['link']);
261 $status = $this->dokuHTTPClient->status;
291 $status = $this->dokuHTTPClient->status;
[all …]
H A DGitLab.service.php18 protected $dokuHTTPClient; variable in dokuwiki\\plugin\\issuelinks\\services\\GitLab
27 $this->dokuHTTPClient = new \DokuHTTPClient();
135 return $this->makeHTTPRequest($this->dokuHTTPClient, $url, $requestHeaders, $data, $method);
247 $status = $this->dokuHTTPClient->status;
267 $status = $this->dokuHTTPClient->status;
470 $headers = $this->dokuHTTPClient->resp_headers;
H A DJira.service.php23 protected $dokuHTTPClient; variable in dokuwiki\\plugin\\issuelinks\\services\\Jira
33 $this->dokuHTTPClient = new \DokuHTTPClient();
155 return $this->makeHTTPRequest($this->dokuHTTPClient, $url, $requestHeaders, $data, $method);
/dokuwiki/inc/
H A DFeedParserFile.php7 use dokuwiki\HTTP\DokuHTTPClient;
22 * We ignore all given parameters - they are set in DokuHTTPClient
29 $this->http = new DokuHTTPClient();
5 use dokuwiki\HTTP\DokuHTTPClient; global() alias
/dokuwiki/lib/plugins/extension/helper/
H A Drepository.php13 use dokuwiki\HTTP\DokuHTTPClient;
51 $httpclient = new DokuHTTPClient();
83 $httpclient = new DokuHTTPClient();
120 $httpclient = new DokuHTTPClient();
154 $httpclient = new DokuHTTPClient();
10 use dokuwiki\HTTP\DokuHTTPClient; global() alias
/plugin/oauth/
H A DHTTPClient.php5 use dokuwiki\HTTP\DokuHTTPClient; alias
22 $http = new DokuHTTPClient();
/plugin/gitlab/
H A Dsyntax.php41 $http = new DokuHTTPClient();
57 $http = new DokuHTTPClient();
/plugin/doi/Resolver/
H A DIsbnOpenLibraryResolver.php5 use dokuwiki\HTTP\DokuHTTPClient; alias
41 $http = new DokuHTTPClient();
H A DDoiResolver.php5 use dokuwiki\HTTP\DokuHTTPClient; alias
41 $http = new DokuHTTPClient();
H A DIsbnGoogleBooksResolver.php5 use dokuwiki\HTTP\DokuHTTPClient; alias
50 $http = new DokuHTTPClient();
H A DIsbnIsbnDeResolver.php5 use dokuwiki\HTTP\DokuHTTPClient; alias
27 $http = new DokuHTTPClient();
/plugin/sentry/
H A Dhelper.php210 if (class_exists('dokuwiki\HTTP\DokuHTTPClient')) {
211 $http = new dokuwiki\HTTP\DokuHTTPClient();
213 $http = new DokuHTTPClient();
/plugin/slacknotifier/
H A Daction.php11 use dokuwiki\HTTP\DokuHTTPClient; alias
141 $http = new DokuHTTPClient();
/plugin/oauthazure/
H A DAzure.php5 use dokuwiki\HTTP\DokuHTTPClient; alias
52 $http = new DokuHTTPClient();
/plugin/blogtng/exe/
H A Dtrackback.php11 use dokuwiki\HTTP\DokuHTTPClient; alias
61 $http = new DokuHTTPClient;
H A Dpingback.php13 use dokuwiki\HTTP\DokuHTTPClient; alias
69 $http = new DokuHTTPClient;
/plugin/aichat/Model/OpenAI/
H A DGPT35Turbo.php
/plugin/siteexport/inc/
H A Dhttpproxy.php23 class _HTTPProxy extends DokuHTTPClient {}
24 } else if ( class_exists( "\dokuwiki\HTTP\DokuHTTPClient", true ) ) {
25 class _HTTPProxy extends \dokuwiki\HTTP\DokuHTTPClient {}
/plugin/sfauth/
H A Dhelper.php143 $http = new DokuHTTPClient();
231 $http = new DokuHTTPClient();
261 $http = new DokuHTTPClient();
/plugin/shorty/
H A Dhelper.php127 $http = new DokuHTTPClient();
149 $http = new DokuHTTPClient();
/plugin/issuelinks/classes/
H A DHTTPRequestException.php19 public function __construct($message, \DokuHTTPClient $httpClient, $url, $method)
/plugin/statistics/inc/
H A DStatisticsBrowscap.class.php27 $http = new DokuHTTPClient($url);
/dokuwiki/inc/Sitemap/
H A DMapper.php13 use dokuwiki\HTTP\DokuHTTPClient;
148 $http = new DokuHTTPClient();
11 use dokuwiki\HTTP\DokuHTTPClient; global() alias
/plugin/wikipediasnippet/
H A Dsyntax.php78 $http = new DokuHTTPClient();
141 $http = new DokuHTTPClient();

12345