HttpFoundation Flashcards
Why the HttpFoundation?
Adds object orientation for the globals $_GET, $_POST, $_SESSION ……
How can you create a Request-Object from the current globals?
$request = Request::createFromGlobals();
equivalent to
~~~
$request = new Request(
$_GET,
$_POST,
[],
$_COOKIE,
$_FILES,
$_SERVER
);
)
~~~
What type are the properties of the Request objects?
ParameterBag, e.g.:
FileBag,
InputBag,
HeaderBag
Which helper methods does the ParameterBag contain to convert into a specific type?
- getBoolean($value, $default)
- getInt($value, $default)
- getEnum($value, $class, $default)
- getAlpha($value, $default)
and so on…
Which method is used on the Request to check if a session was initialized by a previous Request?
hasPreviousSession()
How can you anonymize IP-Adresses?
use Symfony\Component\HttpFoundation\IpUtils; $anonymousIpv4 = IpUtils::anonymize($ipv4); $anonymousIpv6 = IpUtils::anonymize($ipv6);
How do you check if an IP is a private IP?
$isPrivate = IpUtils::isPrivateIp($ipv4);
How can a request be checked with a set of rules?
RequestMatchers, e.g. IpsRequestMatcher, IsJsonRequestMatcher
Which parts does the Response-Object contain?
- content
- http-status-code
- http-headers
How can the different parts of the response be manipulated?
$response->setContent('Hello World'); $response->headers->set('Content-Type', 'text/plain'); $response->setStatusCode(Response::HTTP_NOT_FOUND);
What is the default encoding of symfony responses?
UTF-8
What is the “prepare”-method used for in the Request and Response?
to fix any incompatibility with the HTTP specification (e.g. a wrong Content-Type header)
How to create a cookie?
Cookie::create()
How can values like the expiry-date, the value or the domain be set when creating a cookie?
via withers:
~~~
$cookie = Cookie::create(‘foo’)
->withValue(‘bar’)
->withExpires(strtotime(‘Fri, 20-May-2011 15:25:52 GMT’))
->withDomain(‘.example.com’)
->withSecure(true);
~~~
How can a cookie be removed?
$response->headers->clearCookie($name)
What are partitioned cookies?
The are helpful for embedded stuff like iframes. E.g. for being locked in with the youtube account when watching a youtube video from another website.
How can Responses be streamed to the browser?
using a StreamedResponse containing a generator as callback
How can a filedownload be started using a disposition?
$disposition = HeaderUtil::makeDisposition(HeaderUtil::DISPOSITION_ATTACHMENT, 'test.txt'); $response->headers->set('Content-Disposition', $disposition);