Download the PHP package thinker-g/yii2-ishtar-gate without Composer

On this page you can find all versions of the php package thinker-g/yii2-ishtar-gate. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package yii2-ishtar-gate

Ishtar Gate [v1.0.1]

Latest Stable Version Total Downloads License Powered by Yii 2.0

Description

What's this?

Ishtar Gate is an ready-to-use module gives enhanced maintenance mode to a yii 2.0 website. It provides 2 different Blocking Modes, with some enhanced features: Alpha Test Authencation, News Ticker, etc.

It can put the entire site or just a part of it into maintenance mode. When enabled, only permitted users (normally our testers) are allowed to access the website without limitation. All other public users will be shown a pre-defined maintenance page.

The idea is to give our team an opportunity to test their new changes on live site, without "surprising" public users. And also to allow them to verify the results that are not effected by operations from the public.

How it works?

The blocking control is based on yii request route. Two blocking modes mentioned below can be applied:

  1. Positive blocking: All accesses except specified routes will be blocked, this is basically a whole site blocking.

  2. Passive blocking: This is opposite to the Positive blocking, only specified routes will be blocking. This is useful when we are deploying a new module without taking down the whole site.

Why this?

Besides blocking public access by providing a settable static page, Ishtar Gate provides another level of a session-based authentication, which allows a group of special users (which I'd like to call them the "Alpha Testers") to access the site while normal users are blocked. So our team can run some tests on REAL production environment.

For planned maintenance, a news ticker is integrated in the module, so that we can give users some messages before a planned maintenance takes place.

PS: Instructions of setting up these enhanced features will be mentioned in later sections.

Does it hurt?

The system performance has been well considered while designing this module. Even the module is not frequently used and needs to be mounted to the "bootstrap" phase, it does nothing when it's set to disabled. To load an empty module takes barely no resource for yii framework.


Quick start

1. Install

The preferred way to install this extension is through composer. To install via composer, issuing following command in root directory of your yii2.0 application.

It can also be installed by downloading a copy directly from Github project page. If you install in this way, you need to setup a path alias for the namespace "thinker_g\IshtarGate". For instance, we place the module folder(yii2-ishtar-gate) in "runtime/tmp-extensions" in application root path. Add following alias definition to attribute "aliases" of the yii application object.

2. Mount

Mount the module to the application in the same way to any other modules. In this case, we use "istharDemo" as the module ID.

And then add the <module ID> to "bootstrap" of the application.

3. Enable

Now the module is ready to bring your site into maintenance mode. But you cannot see any change on your site yet, because the module is not enabled yet. To enable it, we need to set the module attribute enabled to true.

Now you should be seeing that your site always displays Ishtar Gate's default blocker page, no matter which route you are accessing. Enjoy ;-)

We'll introduce basic settings and enhanced features in later sections.


Basic Usage

NOTE: As aforementioned, the blocking control is based on yii request route. The routes in configuration should be full route name WITHOUT the leading slash "/". For example the route in setting "site/about" stands for the real route "/site/about", the leading slash will be then prepended automatically by the module.

1. Blocker Route

When Ishtar Gate blocks public accesses, it will run a certain route configured in attribute blockerRoute, instead of invoking the requested one. The default blockerRoute is set to "<module ID>/gate/index". Following setting will use "/site/about" as the blocker page instead of the built-in blocker.

By default, Ishtar Gate use its own layout file while rendering the blocker page. This can be customized by setting up the attribute layout. This design is to ensure that the blocker page won't crash when we access database in daily-used layout file. You can build another static layout file for your own application.

2. Positive blocking

Positive blocking is the default mode of the module. When the module is ENABLED, all routes will be block except the ones set in exceptRoutes.

To let certain route open to the public, you need to add the route to attribute exceptRoutes. Following example shows how to let pass the access of route "/site/about", while the maintenance mode is enabled.

NOTE: Routes in this module, and those set in siteLogoutRoute will never be blocked, as they need to support some lower level functions.

3. Passive blocking

When the module is ENABLED and any routes added to attribute onlyRoutes, only those routes will be blocked and nothing happens to other parts of the site. The following setting will ONLY block the route '/site/signup':

4. Switching between 2 blocking modes

Once any routes are added to onlyRoutes as an empty array or false.


Enhanced Features

1. Alpha test access

Test access control allows project team members to access the website with no restriction, while the maintenance mode is enabled (where public users are blocked). To achieve this, we have 2 options, privileged IPs and Alpha Login.

2. News ticker

For a planned maintenance, you may want to inform your users before it takes place. Ishtar Gate provides a news ticker to display this kind of messages to public user. To do this you need to setup the option news.

NOTE: News ticker will only take effects when attribute enabled is set to false.

3. Tip version

When a tester is doing internal tests, a version tip can be shown in the bottom right of the page. This can notice our testers/developers that they are now accessing in alpha test mode, while the site is actually blocking other accesses from the public. This feature is enabled by default, and can be turned off by setting option tipVersion to false.

NOTE: The version tip will only show up when tipVersion is set to true AND current request is a test access (authenticated by Alpha Login or from a Privileged IP).

Options Reference


Name Type Default Usage
enabled bool false Enable the maintenance or not.
tipVersion bool true Whether to tip version on page in test accesses. Only take effects when enabled is set to true.
layout string 'main' Layout file used to render the blocker page.
logoutPublic bool false Whether to logout the logged users when maintenance mode is enabled. Only takes effects in positive blocking mode.
siteLogoutRoute array ['site/logout'] Route used to logout users when maintenance mode is enabled.
This takes effect only when $logoutPublic is set to true.
Leave it as "null" or an empty array, system will use Yii::$app->getUser()->logout() to logout current user. Otherwise user will be redirected to the specified route, and the destination route must allow GET request.
credentials array ['tester' => 'tester'] Alpha test user credentials, where key are usernames, and values are hashed passwords.
privIPs array [] Array of IP addresses, requests from these IPs will never be blocked.
sessKey string 'ishtar' Session key to support Alpha Login authencation.
exceptRoutes array [] Routes listed here won't be blocked.
onlyRoutes array [] Only routes listed here will be blocked.
When it has value, exceptRoutes won't take effects.
blockerRoute array <module ID>/gate/index Blocker page route.
useRedirection bool false The way to display the blocker page, set to false to overwrite \yii\web\Application::$catchAll, set to true to always redirect users to the blocker route.
errActionRoute string 'site/error' Error handler of Yii::$app. This should be the value of the "errorAction" of your application.
hashCallable callable 'thinker_g\IshtarGate\Module::dummyHash' Callable used to hash the inputted password in Alpha Login authencation.
The default method return the password without doing anything.
news array [] News entries array, where the key is the time string and value is the messages.
Only messages whose key is "later" than CURRENT TIME will be displayed. Takes effects only when module is NOT enabled.
newsTicker string or array 'thinker_g\IshtarGate\INewsTickerAsset' News ticker configuration (string/array). The class should extends \yii\web\AssetBundle.
customField string 'System is down for maintenance. We\'ll return in a moment' Custom message can be invoked in view of blocker page.

Contact Me

If you have any questions or cool ideas, you are welcome to submit an issue or send email to [email protected] .


All versions of yii2-ishtar-gate with dependencies

PHP Build Version
Package Version
Requires yiisoft/yii2 Version *
yiisoft/yii2-bootstrap Version *
thinker-g/yii2-helpers Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package thinker-g/yii2-ishtar-gate contains the following files

Loading the files please wait ....