blob: 3e0fbf31184c8d45d6d48c805f96663be8c2358a (
plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
<?php
/**
* Contains code related to web services support.
*
* @file
* @author Niklas Laxström
* @license GPL-2.0-or-later
*/
/**
* Mutable objects that represents a HTTP(S) query.
* NB: Too lazy to make TranslationQueryFactory to make this class immutable.
* @since 2015.02
*/
class TranslationQuery {
protected $url;
protected $timeout = 0;
protected $method = 'GET';
protected $params = [];
protected $body;
protected $headers = [];
/**
* @var mixed Arbitrary data that is returned with TranslationQueryResponse
*/
protected $instructions;
// URL is mandatory, so using it here
public static function factory( $url ) {
$obj = new self();
$obj->url = $url;
return $obj;
}
/**
* Make this a POST request with given data.
*
* @param string $data
* @return $this
*/
public function postWithData( $data ) {
$this->method = 'POST';
$this->body = $data;
return $this;
}
public function queryParameters( array $params ) {
$this->params = $params;
return $this;
}
public function queryHeaders( array $headers ) {
$this->headers = $headers;
return $this;
}
public function timeout( $timeout ) {
$this->timeout = $timeout;
return $this;
}
/**
* Attach arbitrary data that is necessary to process the results.
* @param mixed $data
* @return self
* @since 2017.04
*/
public function attachProcessingInstructions( $data ) {
$this->instructions = $data;
return $this;
}
public function getTimeout() {
return $this->timeout;
}
public function getUrl() {
return $this->url;
}
public function getMethod() {
return $this->method;
}
public function getQueryParameters() {
return $this->params;
}
public function getBody() {
return $this->body;
}
public function getHeaders() {
return $this->headers;
}
/**
* Get previously attached result processing instructions.
* @return mixed
* @since 2017.04
*/
public function getProcessingInstructions() {
return $this->instructions;
}
}
|