Skip to content

Commit 8c7d59d

Browse files
committed
add documentation about maintenance mode
1 parent b9c85e9 commit 8c7d59d

File tree

1 file changed

+67
-6
lines changed

1 file changed

+67
-6
lines changed

dispatcher/index.md

+67-6
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,15 @@ Fano Framework will pass instance of CGI environment and `IStdIn` instance based
3535

3636
## Built-in Dispatcher implementation
3737

38-
Fano Framework comes with two dispatcher implementation, `TSimpleDispatcher` and
39-
`TDispatcher` class.
38+
Fano Framework comes with several dispatcher implementations.
4039

41-
`TSimpleDispatcher` is light-weight dispatcher that does not offer middleware layer
42-
while the latter supports middleware.
43-
44-
`TVerbTunnellingDispatcher` is decorator dispatcher that allows web application to serve request through [HTTP verb tunnelling](/security/http-verb-tunnelling).
40+
- `TSimpleDispatcher` is light-weight dispatcher that does not offer middleware layer.
41+
- `TXSimpleDispatcher` is similar to `TSimpleDispatcher` with capability to decorate request, response and CGI environment. This is provided, for example, to [allow HTTP override]((/security/http-verb-tunnelling)) `_method` parameter.
42+
- `TDispatcher` is dispatcher that supports middleware.
43+
- `TXDispatcher` is similar to `TDispatcher` with capability like `TXSimpleDispatcher`.
44+
- `TMwExecDispatcher` is similar to `TXDispatcher` except it makes sure global middlewares are always executed although route does not exist or method verb is not allowed.
45+
- `TMaintenanceModeDispatcher` is decorater dispatcher that makes application enters maintenance mode when a special file exists.
46+
- `TVerbTunnellingDispatcher` is decorator dispatcher that allows web application to serve request through [HTTP verb tunnelling](/security/http-verb-tunnelling).
4547

4648
## Creating dispatcher
4749
If you use [Fano CLI](https://github.com/fanoframework/fano-cli) to [scaffold your web application project](/scaffolding-with-fano-cli), you can skip this as Fano CLI creates dispatcher instance for you.
@@ -106,6 +108,65 @@ container.add(
106108
)
107109
);
108110
```
111+
112+
### Maintenance mode
113+
114+
To allow application to enter maintenance mode, use `TMaintenanceModeDispatcher`.
115+
```
116+
var actualDispatcher : IDispatcher;
117+
maintenanceModeDispatcher : IDispatcher;
118+
...
119+
120+
maintenanceModeDispatcher := TMaintenanceModeDispatcher.create(actualDispatcher);
121+
```
122+
123+
To register maintenance mode dispatcher in dependency container, use
124+
`TMaintenanceModeDispatcherFactory` class.
125+
126+
```
127+
container.add(
128+
'dispatcher',
129+
TMaintenanceModeDispatcherFactory.create(
130+
TVerbTunnellingDispatcherFactory.create(
131+
TSimpleDispatcherFactory.create(
132+
router,
133+
TRequestResponseFactory.create()
134+
)
135+
)
136+
)
137+
);
138+
```
139+
140+
By default, this dispatcher checks if file `__maintenance__` exists in current
141+
directory. If it does then it assumes application is in maintenance mode and
142+
raise `EServiceUnavailable` exception.
143+
144+
To make application enters maintenance mode, create empty file with name
145+
`__maintenance__` in current working directory. For example
146+
147+
```
148+
$ touch __maintenance__
149+
```
150+
To leave maintenance mode, just remove it.
151+
```
152+
$ rm __maintenance__
153+
```
154+
155+
To use different filename, set its file path using `path()` method of `TMaintenanceModeDispatcherFactory()`.
156+
157+
```
158+
container.add(
159+
'dispatcher',
160+
TMaintenanceModeDispatcherFactory.create(
161+
TVerbTunnellingDispatcherFactory.create(
162+
TSimpleDispatcherFactory.create(
163+
router,
164+
TRequestResponseFactory.create()
165+
)
166+
)
167+
).path('/home/example/maintenance')
168+
);
169+
```
109170
## <a name="set-dispatcher"></a> Set dispatcher
110171

111172
Fano Framework allows application to change dispatcher implementation to use, by

0 commit comments

Comments
 (0)