-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: use addHeader()
#8240
fix: use addHeader()
#8240
Changes from all commits
9e6be65
4986bc2
7852e3f
a769e53
3c38acb
568538e
8b0e1fe
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -18,6 +18,7 @@ | |||||||||||||||||||||||||||||
use CodeIgniter\Format\JSONFormatter; | ||||||||||||||||||||||||||||||
use CodeIgniter\Format\XMLFormatter; | ||||||||||||||||||||||||||||||
use CodeIgniter\HTTP\DownloadResponse; | ||||||||||||||||||||||||||||||
use CodeIgniter\HTTP\Header; | ||||||||||||||||||||||||||||||
use CodeIgniter\HTTP\IncomingRequest; | ||||||||||||||||||||||||||||||
use CodeIgniter\HTTP\RequestInterface; | ||||||||||||||||||||||||||||||
use CodeIgniter\HTTP\ResponseInterface; | ||||||||||||||||||||||||||||||
|
@@ -140,8 +141,17 @@ public function run(float $startTime, float $totalTime, RequestInterface $reques | |||||||||||||||||||||||||||||
$data['vars']['post'][esc($name)] = is_array($value) ? '<pre>' . esc(print_r($value, true)) . '</pre>' : esc($value); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
foreach ($request->headers() as $header) { | ||||||||||||||||||||||||||||||
$data['vars']['headers'][esc($header->getName())] = esc($header->getValueLine()); | ||||||||||||||||||||||||||||||
foreach ($request->headers() as $name => $value) { | ||||||||||||||||||||||||||||||
if ($value instanceof Header) { | ||||||||||||||||||||||||||||||
$data['vars']['headers'][esc($name)] = esc($value->getValueLine()); | ||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||
foreach ($value as $i => $header) { | ||||||||||||||||||||||||||||||
$index = $i + 1; | ||||||||||||||||||||||||||||||
$data['vars']['headers'][esc($name)] ??= ''; | ||||||||||||||||||||||||||||||
$data['vars']['headers'][esc($name)] .= ' (' . $index . ') ' | ||||||||||||||||||||||||||||||
. esc($header->getValueLine()); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
Comment on lines
+148
to
+153
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
foreach ($request->getCookie() as $name => $value) { | ||||||||||||||||||||||||||||||
|
@@ -157,8 +167,17 @@ public function run(float $startTime, float $totalTime, RequestInterface $reques | |||||||||||||||||||||||||||||
'headers' => [], | ||||||||||||||||||||||||||||||
]; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
foreach ($response->headers() as $header) { | ||||||||||||||||||||||||||||||
$data['vars']['response']['headers'][esc($header->getName())] = esc($header->getValueLine()); | ||||||||||||||||||||||||||||||
foreach ($response->headers() as $name => $value) { | ||||||||||||||||||||||||||||||
if ($value instanceof Header) { | ||||||||||||||||||||||||||||||
$data['vars']['response']['headers'][esc($name)] = esc($value->getValueLine()); | ||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||
foreach ($value as $i => $header) { | ||||||||||||||||||||||||||||||
$index = $i + 1; | ||||||||||||||||||||||||||||||
$data['vars']['response']['headers'][esc($name)] ??= ''; | ||||||||||||||||||||||||||||||
$data['vars']['response']['headers'][esc($name)] .= ' (' . $index . ') ' | ||||||||||||||||||||||||||||||
. esc($header->getValueLine()); | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
$data['config'] = Config::display(); | ||||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -479,10 +479,14 @@ protected function setResponseHeaders(array $headers = []) | |||||
{ | ||||||
foreach ($headers as $header) { | ||||||
if (($pos = strpos($header, ':')) !== false) { | ||||||
$title = substr($header, 0, $pos); | ||||||
$value = substr($header, $pos + 1); | ||||||
$title = trim(substr($header, 0, $pos)); | ||||||
$value = trim(substr($header, $pos + 1)); | ||||||
|
||||||
$this->response->setHeader($title, $value); | ||||||
if ($this->response instanceof Response) { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We cannot remove |
||||||
$this->response->addHeader($title, $value); | ||||||
} else { | ||||||
$this->response->setHeader($title, $value); | ||||||
} | ||||||
} elseif (strpos($header, 'HTTP') === 0) { | ||||||
preg_match('#^HTTP\/([12](?:\.[01])?) (\d+) (.+)#', $header, $matches); | ||||||
|
||||||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -161,8 +161,14 @@ public function withCookies() | |||||||||||||||||
*/ | ||||||||||||||||||
public function withHeaders() | ||||||||||||||||||
{ | ||||||||||||||||||
foreach (Services::response()->headers() as $name => $header) { | ||||||||||||||||||
$this->setHeader($name, $header->getValue()); | ||||||||||||||||||
foreach (Services::response()->headers() as $name => $value) { | ||||||||||||||||||
if ($value instanceof Header) { | ||||||||||||||||||
$this->setHeader($name, $value->getValue()); | ||||||||||||||||||
} else { | ||||||||||||||||||
foreach ($value as $header) { | ||||||||||||||||||
$this->addHeader($name, $header->getValue()); | ||||||||||||||||||
} | ||||||||||||||||||
Comment on lines
+168
to
+170
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||
} | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
return $this; | ||||||||||||||||||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -398,8 +398,22 @@ public function sendHeaders() | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
header(sprintf('HTTP/%s %s %s', $this->getProtocolVersion(), $this->getStatusCode(), $this->getReasonPhrase()), true, $this->getStatusCode()); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Send all of our headers | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
foreach (array_keys($this->headers()) as $name) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
header($name . ': ' . $this->getHeaderLine($name), false, $this->getStatusCode()); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
foreach ($this->headers() as $name => $value) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if ($value instanceof Header) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
header( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$name . ': ' . $value->getValueLine(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
false, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$this->getStatusCode() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
foreach ($value as $header) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
header( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$name . ': ' . $header->getValueLine(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
false, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
$this->getStatusCode() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+401
to
+416
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know why my code does not work for you. What was wrong? Any error message? |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return $this; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.