Controller Flashcards

1
Q

What are controllers in general?

A
  • usually methods in a controller-class
  • reading a request and returning a response
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What can the response contain for example?

A

HTML page, JSON, XML, a file download, a redirect, a 404 error (or anything else)

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

Why the AbstractController?

A

Contains a few http-related helpers like ->createNotFoundException() or ->generateUrl()

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

Which methods are used to redirect?

A
  • redirectToRoute()
  • redirect()
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which method is used to create a Response from a template?

A
  • render()
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Which naming convention applies to Controllers?

A

It should contain the “Controller”-suffix

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

What happens if Exceptions, which are no instance of HttpException are being thrown?

A

Symfony will turn it into a 500

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

How to access the HttpRequest?

A

Through an argument in the controller-method

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

What are possibilities to map query-parameters to php values?

A
  • # [MapQueryParameter] (To map separate query parameters to values)
  • # [MapQueryString] (To map the all query parameters to an object)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the default http response code if a validation for #[MapQueryString] fails?

A

404

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

How can the default http response code for failing request-validations be overwritten?

A

with the argument “validationFailedStatusCode”

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

How can you return a fallback DTO with #[MapQueryString] in case no query-parameters exist?

A

As default parameter-value:
~~~
#[MapQueryString] UserDto $userDto = new UserDto()
~~~

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

What is the default http response code if a validation for #[MapRequestPayload] fails?

A

422

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

Which Response-Type is used to return a file for a download?

A

BinaryFileResponse

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

How can you return a file for a download inside a controller?

A
use Symfony\Component\HttpFoundation\File\File;

return $this->file(new File(), 'filename.txt')
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are early hints?

A

Early hints tell the browser to start downloading some assets even before the application sends the response content (Most of the time css or javascript)

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

How do you retrieve cookies from a request?

A
$request->cookies->get('PHPSESSID');
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Where does symfony pass the Request-Object?

A

To any controller that has a parameter typehinted with “Request”

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

How do you define a Controller-Route in a yaml config?

A
api_post_edit:
    path:       /api/posts/{id}
    controller: App\Controller\BlogApiController::edit
    methods:    PUT
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

How can conditions be checked in route configurations?

A
post_show:
    path:       /posts/{id}
    controller: 'App\Controller\DefaultController::showPost'
    # expressions can retrieve route parameter values using the "params" variable
    condition:  "params['id'] < 1000"
21
Q

How can you display the flash messages from a session via twig?

A
{% for message in app.flashes('notice') %}
    <div class="flash-notice">
        {{ message }}
    </div>
{% endfor %}

or, if all of them should be rendered in one place
~~~

{% for label, messages in app.flashes %}
{% for message in messages %}
<div class="flash-{{ label }}">
{{ message }}
</div>
{% endfor %}
{% endfor %}
~~~

22
Q

How can a flashbag-message be selected without removing it from the stack?

A

with the method peek();

23
Q

How can a flashbag-message be selected and automatically be removed from the stack?

A

with the method get();

24
Q

How can the default ErrorController be overridden?

A

By configuration:
~~~
# config/packages/framework.yaml
framework:
error_controller: App\Controller\ErrorController::show
~~~

25
Q

Which information does the TwigErrorRenderer to the twig-template?

A
  • status_code
  • status_text

Additionally the whole HttpException-Object. Can be used like:

{{ exception.message }}
26
Q

How can the extension be guessed according to the mimtype of a file?

A
$uploadedFile->guessExtension();
27
Q

What does the method

$uploadedFile->getClientOriginalPath()
return in case the user uploaded a directory?
A

The webkitRelativePath provided by the browser

28
Q

Why should the FileType in symfony-forms always use “unmapped”?

A

Because not the image itself, but the filename is being attached to this form field. Therefore, in the controller the image must be read and handled via the the name manually:

$request->get('foo')->getData();

In this example, ‘foo’ is the name of the field in the symfony-form.

29
Q

How can static templates be rendered directly without controller logic?

A

via routes-config

acme_privacy:
    path:          /privacy
    controller:    Symfony\Bundle\FrameworkBundle\Controller\TemplateController
    defaults:

        template:  'static/privacy.html.twig'

        statusCode: 200
30
Q

How to Redirect to Urls and Routes directly from a route?

A

via routes-config
~~~
doc_shortcut:
path: /doc
controller: Symfony\Bundle\FrameworkBundle\Controller\RedirectController
defaults:
route: ‘doc_page’
~~~

31
Q

How to keep query params when redirecting directly via routes-config?

A

keepQueryParams: true

32
Q

What are TargetedValueResolvers used for?

A

To use a specific value resolver ONLY when being added explicitely. Not in the default resolver-chain e.g.:

#[AsTargetedValueResolver('booking_id')]
class BookingIdValueResolver implements ValueResolverInterface
   #[Route('/booking/{id}')]
    public function show(
        #[ValueResolver('booking_id')]
        Booking $booking
    ): Response
33
Q

Whats the purpose of ValueResolvers?

A

Use specific business-logic to map a parameter to some specific type. E.g: EntityId -> Entity

34
Q

What does the BackedEnumValueResolver do?

A

Convert a param with primitive type to the typehinted enum

35
Q

What does the RequestPayloadValueResolver do?

A

Maps the request payload or the query string into the type-hinted object

  • MapQueryString
  • MapRequestPayload
36
Q

RequestAttributeValueResolver

A

Attempts to find a request attribute that matches the name of the argument

37
Q

DateTimeValueResolver

A

Attempts to find a request attribute that matches the name of the argument and injects a DateTimeInterface object if type-hinted with a class extending DateTimeInterface.

By default any input that can be parsed as a date string by PHP is accepted.

38
Q

What does the MapDateTime do?

A

It uses a date-format and a value resolver to resolve the given date string to an object of DateTimeInterface

39
Q

What does the RequestValueResolver do?

A

Injects the current Request if type-hinted with Request or a class extending Request.

Often used in controllers.

40
Q

What does the ServiceValueResolver do?

A

Injects a service if type-hinted with a valid service class or interface. This works like autowiring.

41
Q

What does the SessionValueResolver do?

A

Injects the configured session class implementing SessionInterface if type-hinted with SessionInterface or a class implementing SessionInterface.

42
Q

What does the DefaultValueResolver do?

A

Will set the default value of the argument if present and the argument is optional.

43
Q

What does the UuidValueResolver do?

A

Attempts to convert any UID values from a route path parameter into UID objects. Leads to a 404 Not Found response if the value isn’t a valid UID.

44
Q

What does the UserValueResolver do?

A

Injects the object that represents the current logged in user if type-hinted with UserInterface. #[CurrentUser] attribute can be used to map to a specific user class to the argument.

45
Q

What does the SecurityTokenValueResolver do? And what happens if the value is typehinten non-nullable and no token exists?

A

Injects the object that represents the current logged in token if type-hinted with TokenInterface or a class extending it.

If the argument is not nullable and there is no logged in token, an HttpException with status code 401 is thrown by the resolver to prevent access to the controller.

46
Q

What does the EntityValueResolver do?

A

Automatically query for an entity and pass it as an argument to your controller. E.g. via ID

47
Q

What does the ValueResolver do?

A

It can take a specific ValueResolver-class as an argument and directly uses this. Therefore its some kind of targeted and can improve performance, since other valueResolvers wont be called before.

48
Q

How does symfony manage the order of the ValueResolvers being called?

A

With a hard defined priority for each resolver

49
Q

Which interface needs to be implemented to define an own value resolver?

A

ValueResolverInterface