Giter Site home page Giter Site logo

sithira / maintenance-mode Goto Github PK

View Code? Open in Web Editor NEW

This project forked from awjudd/maintenance-mode

0.0 2.0 0.0 129 KB

An enhanced maintenance mode for Laravel 5.0 - 5.2. Built-in support for 5.3 now exists!

License: MIT License

PHP 83.10% HTML 16.90%

maintenance-mode's Introduction

Enhanced Laravel 5 Maintenance Mode

This package is a drop-in replacement for Laravel 5.0 - 5.2's maintenance mode. For 5.3+, please use the 1.1 branch! Features include:

  • Allowing custom maintenance messages to be shown to users
  • Including a timestamp of when the application went down
  • Exempting select users via custom exemption classes
  • Firing an event for when the application goes down
  • Dynamically selecting the view to be shown on down command

Table of Contents

  1. Installation
  2. Usage
  3. Configuration 1. Default Configuration
    1. Overriding Defaults
  4. Exemptions 1. Default Exemptions
    1. IP Whitelist
    2. Environment Whitelist 1. Creating a New Exemption
  5. Views 1. Application Down 1. Maintenance Notification
  6. Events

Installation

Within composer.json add the following line to the end of the require section:

"misterphilip/maintenance-mode": "1.0.*"

Next, run the Composer update command:

$ composer update

Add MisterPhilip\MaintenanceMode\MaintenanceModeServiceProvider::class, and MisterPhilip\MaintenanceMode\MaintenanceCommandServiceProvider::class, to the end of the $providers array in your config/app.php:

'providers' => [

    /*
     * Application Service Providers...
     */
     App\Providers\AppServiceProvider::class,
     App\Providers\EventServiceProvider::class,
     App\Providers\RouteServiceProvider::class,
        
     ...
        
     MisterPhilip\MaintenanceMode\MaintenanceModeServiceProvider::class,
     MisterPhilip\MaintenanceMode\MaintenanceCommandServiceProvider::class,
],

Finally, in app/Http/Kernel.php replace the current MaintenanceMode Middleware

'Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode',

or

\Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode::class,

with

\MisterPhilip\MaintenanceMode\Http\Middleware\CheckForMaintenanceMode::class,

Usage

This package overwrites the default artisan down command, with one optional argument and one option:

$ php artisan down [message] [--view=VIEW]

For example,

$ php artisan down "We're currently upgrading our system! Please check back later."

would show users a message of "We're doing some routine maintenance! Be back soon!". If you don't pass in a message, the default "We're currently working on the site, please try again later" will display to the users. Of course this default is configurable via a language string.

You can also change the view that is shown each time you run the artisan down command via the --view=[VIEW] option:

$ php artisan down "Be back in a few!" --view="errors/maintenance"

To bring your application back online, run the normal app up command:

$ php artisan up

Configuration

This package is a drop-in replacement for the default maintenance mode provided with Laravel 5. This means that you do not have to do any configuration out-of-the-box. However, if you'd like to tweak some of the settings, there are a number of configuration values that are available to make this package a better fit for your application.

Default Configuration

Below are the default configuration options and a short description on each. Don't worry, all of this information is within the configuration file too!

  • view (string)
    • The view to show to users when maintenance mode is currently enabled. This can be temporarily overridden when the command is called via the --view option
    • Defaults to maintenancemode::app-down
  • notification-styles (boolean)
  • inject.global (boolean)
    • Enable or disable global visibility to maintenance mode variables (accessible in all views)
    • Defaults to true
  • inject.prefix (string)
    • Prefix the maintenance mode variables to prevent view variable name collisions
    • Defaults to MaintenanceMode
  • language-path (string)
    • The path to the maintenance mode language strings.
    • Defaults to maintenancemode::defaults
  • exempt-ips (string array)
    • An array of IP address that will always be exempt from the application down page
    • Defaults to ['127.0.0.1']
  • exempt-ips-proxy (boolean)
    • Use proxies to get the user's IP address
    • Defaults to false
  • exempt-environments (string array)
    • An array of enviornment names that will always be exempt from the application down page
    • Defaults to ['local']
  • exemptions (string array)
    • A list of the exemption classes to execute. See Exemptions
    • Defaults to:
    '\MisterPhilip\MaintenanceMode\Exemptions\IPWhitelist',
    '\MisterPhilip\MaintenanceMode\Exemptions\EnvironmentWhitelist',

Overriding Defaults

If you need to override the default configuration values, run the following command:

$ php artisan vendor:publish --provider="MisterPhilip\MaintenanceMode\MaintenanceModeServiceProvider" --tag="config"

Now you can edit the values at config/maintenancemode.php.

Exemptions

Exemptions allow for select users to continue to use the application like normal based on a specific set of rules. Each of these rule sets are defined via a class which is then executed against.

Default Exemptions

By default, an IP whitelist and an application environment whitelist are included with this package to get you off the ground running. Additionally, more examples are provided for various types of exemptions that might be useful to your application.

IP Whitelist

This exemption allows you to check the user's IP address against a whitelist. This is useful for always including your office IP(s) so that your staff doesn't see the maintenance page.

Configuration values included with this exemption are:

  • exempt-ips - An array of IP addresses that will not see the maintenance page
  • exempt-ips-proxy - Set to true if you have IP proxies setup
Environment Whitelist

This exemption allows you to check if the current environment matches against a whitelist. This is useful for local development where you might not want to see the maintenance page.

Configuration values included with this exemption are:

  • exempt-environments - An array of environments that will not display the maintenance page

Creating a new exemption

Setting up a new exemption is simple:

  1. Create a new class and extend MisterPhilip\MaintenanceMode\Exemptions\MaintenanceModeExemption. You might consider creating these files in app\Exemptions or app\Infrastructure\Maintenance, but you're free to place them where you want.
  2. This class must include an isExempt method. This method should return true if the user should not see the maintenance page. If this returns false, it indicates that the user does not match your ruleset and other exceptions should be checked.
  3. Add the full class name to the exemptions array in the configuration file.

Below is an template to use for a new exemption class SampleExemption:

<?php namespace App\Exemptions;

use MisterPhilip\MaintenanceMode\Exemptions\MaintenanceModeExemption;

class SampleExemption extends MaintenanceModeExemption
{
    /**
     * Execute the exemption check
     *
     * @return bool
     */
    public function isExempt()
    {
        return true; // or false
    }
}

Views

There are 2 views included with this package: an "application down" page that replaces the current "Be right back!" page, and a "maintenance notification" which is a notification bar that tells exempted users that the application is in maintenance mode.

You can also publish these views so that you can edit them easily. The command below will publish the views to resources/views/vendor/maintenancemode/*. Once published be sure to change the config values (view) to point to the new file location.

$ php artisan vendor:publish --provider="MisterPhilip\MaintenanceMode\MaintenanceModeServiceProvider" --tag="views"

Application Down

Default maintenance page The default maintenance page, maintenancemode::app-down

Included is a default view that displays your custom message and a timestamp for your users. To change this page, update the view configuration value to point to the new view. The following variables are available for you to use:

  • $MaintenanceModeEnabled - Check to see if the maintenance mode is enabled
  • $MaintenanceModeMessage - The message that should be displayed to users (either the one passed via the command call, or the default from the language file)
  • $MaintenanceModeTimestamp - The timestamp from when the application went into maintenance mode

NOTE: If you've changed the inject.prefix configuration value, you'll need to reflect this change in the variable names above. For example, if inject.prefix = "Foobar", your view variables would be $FoobarEnabled, $FoobarMessage, and $FoobarTimestamp.

NOTE: By default, these variables are available in all views. To disable this functionality and have it only inject variables on the maintenance page, change the inject.global configuration value to false.

You can also temporarily override the view shown by passing in the --view option when calling the artisan down command. E.g. if you wanted to use the default errors/503.blade.php view, you could call:

$ php artisan down --view="error/503"

Maintenance Notification

Maintenance notification The optional maintenance notification, maintenancemode::notification

We've included a maintenance notification for users that want to include a notice to those that are exempt from seeing the maintenance page. We've found that as an admin, it's helpful to know when your application is in maintenance mode in the event that you've forgotten to disable it or it was turned on automatically.

You can enable this notification by placing the following code within your main blade layouts file(s):

@include('maintenancemode::notification')

Events

This package fires an event, MisterPhilip\MaintenanceMode\Events\MaintenanceModeEnabled, whenever the application goes down for maintenance. You can add your own listener in your events Service Provider. By default this is located at app/providers/EventServiceProvider.php. An example event listener would be sending admins an email whenever the application was put into maintenance mode:

protected $listen = [
    'MisterPhilip\MaintenanceMode\Events\MaintenanceModeEnabled' => [
        'App\Listeners\AdminEmailMaintenanceAnnouncement',
    ],
    // ..
];

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.