Giter Site home page Giter Site logo

Response NS about slim-api-skeleton HOT 3 CLOSED

tuupola avatar tuupola commented on July 21, 2024
Response NS

from slim-api-skeleton.

Comments (3)

tuupola avatar tuupola commented on July 21, 2024

You are correct it is a bug. It seems I have assumed Headers object is immutable. Thanks for the heads up!

from slim-api-skeleton.

B3B8 avatar B3B8 commented on July 21, 2024

Mika can I ask you a tip to reduce the serialize lines and respective response ie

$app->post("/todos", function ($request, $response, $arguments) {
 [...]
    /* Serialize the response data. */
    $fractal = new Manager();
    $fractal->setSerializer(new DataArraySerializer);
    $resource = new Collection($todos, new TodoTransformer);
    $data = $fractal->createData($resource)->toArray();

    return $response->withStatus(200)
        ->withHeader("Content-Type", "application/json")
        ->write(json_encode($data, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT));

$app->get("/todos/{uid}", function ($request, $response, $arguments) {
 [...]
    /* Serialize the response data. */
    $fractal = new Manager();
    $fractal->setSerializer(new DataArraySerializer);
    $resource = new Item($todo, new TodoTransformer);
    $data = $fractal->createData($resource)->toArray();

    return $response->withStatus(200)
        ->withHeader("Content-Type", "application/json")
        ->write(json_encode($data, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT));

Start from todos routes methods, compliting my others API routes like todos with the same functions, I'll write the same serialize with the same response, so I think about "don't repeat yourself" principle and maybe with SLIM design pattern I can improve the code...Is it right use this schema or I'm just complicating myself? If it's worth, how can you rewrite it?
Thanks for your suggestion!

from slim-api-skeleton.

tuupola avatar tuupola commented on July 21, 2024

You could extract serializing part to external facade class and it would save a couple of lines in the route. Calling the facade could look something like.

$data = (new SerializerFacade($todo, TodoTransformer::class))->toArray()

Downside is this would make code a bit harder to follow since you have to go see the source of the facade class to understand what is happening. It is always a fine line between optimising and readability.

from slim-api-skeleton.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.