Coder Social home page Coder Social logo

Nope about conditionalrequest HOT 3 CLOSED

Anahkiasen avatar Anahkiasen commented on June 20, 2024
Nope

from conditionalrequest.

Comments (3)

fideloper avatar fideloper commented on June 20, 2024

Hello!

Correct, this this isn't maintained - the symfony http classes that Laravel
uses under the hood can actually take care of this for you!

(you just need to generate the etag)

On Monday, May 5, 2014, Maxime Fabre [email protected] wrote:

This doesn't work on 4.1 because of the components required, is this still
maintained or do you have another way to set ETags and such ?


Reply to this email directly or view it on GitHubhttps://github.com//issues/1
.

from conditionalrequest.

Anahkiasen avatar Anahkiasen commented on June 20, 2024

What do you mean? I'm doing this currently which kind of isn't the nicest thing I've ever done.

Route::filter('etags', function($route, $request, $response) {
    $responseEtag = md5($response->getContent());
    $requestEtag  = array_get($request->getETags(), 0);
    $requestEtag  = trim($requestEtag, '"');

    // Set request as not modified if ETags match
    if($requestEtag && $requestEtag == $responseEtag){
        $response->setNotModified();
    }

    // Set ETag on response
    $response->setEtag($responseEtag);
});

from conditionalrequest.

fideloper avatar fideloper commented on June 20, 2024

Laravel's $request and $response objects extend Symfony's request and response classes, so you can use all of their features.

The Request object in particular can help determine if a request isNotModified. Take a look around there and see what's available!

from conditionalrequest.

Related Issues (2)

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.