ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilLTIConsumerServiceResponse.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
30 {
32  private int $code;
33 
35  private string $reason;
36 
38  private string $requestmethod;
39 
41  private string $accept;
42 
44  private string $contenttype;
45 
47  private string $data;
48 
50  private string $body;
51 
53  private array $responsecodes;
54 
56  private array $additionalheaders;
57 
61  public function __construct()
62  {
63  $this->code = 200;
64  $this->reason = '';
65  $this->requestmethod = $_SERVER['REQUEST_METHOD'];
66  $this->accept = '';
67  $this->contenttype = '';
68  $this->data = '';
69  $this->body = '';
70  $this->responsecodes = array(
71  200 => 'OK',
72  201 => 'Created',
73  202 => 'Accepted',
74  300 => 'Multiple Choices',
75  400 => 'Bad Request',
76  401 => 'Unauthorized',
77  402 => 'Payment Required',
78  403 => 'Forbidden',
79  404 => 'Not Found',
80  405 => 'Method Not Allowed',
81  406 => 'Not Acceptable',
82  415 => 'Unsupported Media Type',
83  500 => 'Internal Server Error',
84  501 => 'Not Implemented'
85  );
86  $this->additionalheaders = array();
87  }
88 
92  public function getCode(): int
93  {
94  return $this->code;
95  }
96 
100  public function setCode(int $code): void
101  {
102  $this->code = $code;
103  $this->reason = '';
104  }
105 
109  public function getReason(): string
110  {
111  $code = $this->code;
112  if (($code < 200) || ($code >= 600)) {
113  $code = 500; // Status code must be between 200 and 599.
114  }
115  if (empty($this->reason) && array_key_exists($code, $this->responsecodes)) {
116  $this->reason = $this->responsecodes[$code];
117  }
118  // Use generic reason for this category (based on first digit) if a specific reason is not defined.
119  if (empty($this->reason)) {
120  $this->reason = $this->responsecodes[intval($code / 100) * 100];
121  }
122  return $this->reason;
123  }
124 
128  public function setReason(string $reason): void
129  {
130  $this->reason = $reason;
131  }
132 
136  public function getRequestMethod(): string
137  {
138  return $this->requestmethod;
139  }
140 
144  public function getAccept(): string
145  {
146  return $this->accept;
147  }
148 
152  public function setAccept(string $accept): void
153  {
154  $this->accept = $accept;
155  }
156 
160  public function getContentType(): string
161  {
162  return $this->contenttype;
163  }
164 
168  public function setContentType(string $contenttype): void
169  {
170  $this->contenttype = $contenttype;
171  }
172 
176  public function getRequestData(): string
177  {
178  return $this->data;
179  }
180 
184  public function setRequestData(string $data): void
185  {
186  $this->data = $data;
187  }
188 
192  public function setBody(string $body): void
193  {
194  $this->body = $body;
195  }
196 
200  /*
201  public function add_additional_header(string $header): void {
202  $this->additionalheaders[] = $header;
203  }
204  */
208  public function send($debug = true): void
209  {
210  header("HTTP/1.0 {$this->code} {$this->getReason()}");
211  foreach ($this->additionalheaders as $header) {
212  header($header);
213  }
214  if ($debug) {
215  if ($this->code >= 200 && $this->code < 400) {
216  ilObjLTIConsumer::getLogger()->debug("$this->code {$this->getReason()}");
217  } else {
218  ilObjLTIConsumer::getLogger()->error("$this->code {$this->getReason()}");
219  }
220  }
221  if ((($this->code >= 200) && ($this->code < 300)) || !empty($this->body)) {
222  if (!empty($this->contenttype)) {
223  header("Content-Type: $this->contenttype; charset=utf-8");
224  }
225  if (!empty($this->body)) {
226  echo $this->body;
227  }
228  } elseif ($this->code >= 400) {
229  header("Content-Type: application/json; charset=utf-8");
230  $body = new stdClass();
231  $body->status = $this->code;
232  $body->reason = $this->getReason();
233  $body->request = new stdClass();
234  $body->request->method = $_SERVER['REQUEST_METHOD'];
235  $body->request->url = $_SERVER['REQUEST_URI'];
236  if (isset($_SERVER['HTTP_ACCEPT'])) {
237  $body->request->accept = $_SERVER['HTTP_ACCEPT'];
238  }
239  if (isset($_SERVER['CONTENT_TYPE'])) {
240  $body->request->contentType = explode(';', $_SERVER['CONTENT_TYPE'], 2)[0];
241  }
242  echo json_encode($body, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
243  }
244  }
245 }
setBody(string $body)
Set the response body.
getAccept()
Get the request accept header.
string $accept
HTTP request accept header.
$_SERVER['HTTP_HOST']
Definition: raiseError.php:26
array $additionalheaders
HTTP additional headers.
getContentType()
Get the response content type.
setCode(int $code)
Set the response code.
setReason(string $reason)
Set the response reason.
send($debug=true)
Add an additional header.
setAccept(string $accept)
Set the request accept header.
setRequestData(string $data)
Set the response body.
header()
expected output: > ILIAS shows the rendered Component.
Definition: header.php:29
setContentType(string $contenttype)
Set the response content type.
string $contenttype
HTTP response content type.