HttpFoundation Flashcards

1
Q

Why the HttpFoundation?

A

Adds object orientation for the globals $_GET, $_POST, $_SESSION ……

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How can you create a Request-Object from the current globals?

A
$request = Request::createFromGlobals();

equivalent to
~~~

$request = new Request(
$_GET,
$_POST,
[],
$_COOKIE,
$_FILES,
$_SERVER
);
)
~~~

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What type are the properties of the Request objects?

A

ParameterBag, e.g.:
FileBag,
InputBag,
HeaderBag

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which helper methods does the ParameterBag contain to convert into a specific type?

A
  • getBoolean($value, $default)
  • getInt($value, $default)
  • getEnum($value, $class, $default)
  • getAlpha($value, $default)
    and so on…
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which method is used on the Request to check if a session was initialized by a previous Request?

A

hasPreviousSession()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How can you anonymize IP-Adresses?

A
use Symfony\Component\HttpFoundation\IpUtils;

$anonymousIpv4 = IpUtils::anonymize($ipv4);
$anonymousIpv6 = IpUtils::anonymize($ipv6);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do you check if an IP is a private IP?

A
$isPrivate = IpUtils::isPrivateIp($ipv4);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How can a request be checked with a set of rules?

A

RequestMatchers, e.g. IpsRequestMatcher, IsJsonRequestMatcher

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Which parts does the Response-Object contain?

A
  • content
  • http-status-code
  • http-headers
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How can the different parts of the response be manipulated?

A
$response->setContent('Hello World');

$response->headers->set('Content-Type', 'text/plain');

$response->setStatusCode(Response::HTTP_NOT_FOUND);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the default encoding of symfony responses?

A

UTF-8

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the “prepare”-method used for in the Request and Response?

A

to fix any incompatibility with the HTTP specification (e.g. a wrong Content-Type header)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How to create a cookie?

A

Cookie::create()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How can values like the expiry-date, the value or the domain be set when creating a cookie?

A

via withers:
~~~
$cookie = Cookie::create(‘foo’)
->withValue(‘bar’)
->withExpires(strtotime(‘Fri, 20-May-2011 15:25:52 GMT’))
->withDomain(‘.example.com’)
->withSecure(true);
~~~

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How can a cookie be removed?

A
$response->headers->clearCookie($name)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are partitioned cookies?

A

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.

17
Q

How can Responses be streamed to the browser?

A

using a StreamedResponse containing a generator as callback

18
Q

How can a filedownload be started using a disposition?

A
$disposition = HeaderUtil::makeDisposition(HeaderUtil::DISPOSITION_ATTACHMENT, 'test.txt');

$response->headers->set('Content-Disposition', $disposition);