Giter Site home page Giter Site logo

ericlbarnes / laravel-caffeine Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mikebronner/laravel-caffeine

2.0 1.0 0.0 98 KB

Package for Laravel 5.1 that keeps session alive, preventing timeout of forms.

License: MIT License

PHP 93.81% JavaScript 6.19%

laravel-caffeine's Introduction

Caffeine For Laravel 5.1

Goal

Prevent forms from timing out when submitting them after leaving them on-screen for a considerable amount of time. (Laravel defaults to 120 minutes, but that is configurable and could be different site-by-site.)

Implementation

To achieve this, we are sending a caffeine-drip (a request at regular intervals) to keep the session from timing out. This is only implemented on pages with a _token field, so all other pages will time-out as normal.

Reasoning

I chose this approach to keep the integrity of site-security, by avoiding the following:

  • exposing the CSRF Token on an unsecured endpoint.
  • eliminating CSRF Token validation on specific routes, or even altogether.
  • removing session-timeout on all pages.

Considerations

This package adds the routes under genealabs/laravel-caffeine. Please verify that these don't collide with your existing routes.

Installation

  1. Install MixPanel via composer:
composer require genealabs/laravel-caffeine:~0.1
  1. Add the service provider entry in config\app.php:
        GeneaLabs\LaravelCaffeine\LaravelCaffeineServiceProvider::class,
  1. Publish the assets for this package:
php artisan vendor:publish --tag=genealabs-laravel-caffeine --force
  1. Register the middleware class in app/Http/kernel.php:
    protected $middleware = [
        // other entries above
        \GeneaLabs\LaravelCaffeine\Http\Middleware\LaravelCaffeineDripMiddleware::class,
  ];

Usage

That was it! It will apply itself automatically where it finds a form with a _token field while pages are open in browsers.

laravel-caffeine's People

Contributors

mikebronner avatar

Stargazers

 avatar  avatar

Watchers

 avatar

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.