README.md update.

pull/7/head
Ferry Boender 9 years ago
parent 5eed3e1466
commit fbf38d5800
  1. 61
      README.md

@ -3,14 +3,47 @@
## About
A stand-alone webserver that automatically generates forms from JSON to serve as frontends to scripts.
A stand-alone webserver that automatically generates forms from JSON to serve
as frontends to scripts.
ScriptForm takes a JSON file which contains form definitions. It then constructs web forms from this JSON and serves these to users. The user can select a form and fill it out. When the user submits the form, it is validated and the associated script is called. Data entered in the form is passed to the script through the environment.
ScriptForm takes a JSON file which contains form definitions. It then
constructs web forms from this JSON and serves these to users. The user can
select a form and fill it out. When the user submits the form, it is validated
and the associated script is called. Data entered in the form is passed to the
script through the environment.
### Features
- Very rapidly construct forms with backends.
- Completely standalone HTTP server; only required Python.
- Callbacks to any kind of script / program or to Python functions.
- User authentication support through Basic HTAuth.
- Validates form values before calling scripts.
- Uploaded files are automatically saved to temporary files, which are passed
on to the callback.
- Multiple forms in a single JSON definition file.
### Use-cases
Scriptform is very flexible and as such serves many use-cases. Most of these
revolve around giving non-technical users a user friendly way to safely run
scripts on a server.
Here are some of the potential uses of Scriptform:
- Add / remove users from htpasswd files.
- Execute SQL snippets.
- View service status
- Upload data to be processed.
- Restart, enable and disable services.
- Trigger for batch processing.
## Example
The following example lets you add new users to a htpasswd file via ScriptForm. It presents the user with a form to enter the user's details. When the form is submitted, the `job_add_user.sh` script is called which adds the user to the htpasswd file.
The following example lets you add new users to a htpasswd file via ScriptForm.
It presents the user with a form to enter the user's details. When the form is
submitted, the `job_add_user.sh` script is called which adds the user to the
htpasswd file.
Form definition file: `test_server.json`
@ -37,20 +70,29 @@ The script `job_add_user.sh`:
#!/bin/sh
if [ -z "$password1" ]; then
err "Empty password specified" >&2; exit 1
echo "Empty password specified" >&2; exit 1
fi
if [ "$password1" != "$password2" ]; then
err "Passwords do not match" >&2; exit 1
echo "Passwords do not match" >&2; exit 1
fi
htpasswd -s -b .htpasswd $username $password1 || exit $?
echo "User created or password updated"
We can now start ScriptForm to start serving the form over HTTP:
$ scriptform -p8080 ./test_server.json
The user is presented with the following form:
![Form](/home/fboender/form.png)
## Installation and usage
When submitting the form, the results are displayed.
![Form](/home/fboender/result.png)
## Installation
### Requirements
@ -58,6 +100,12 @@ ScriptForm requires:
* Python 2.6+ # FIXME
## Usage
### Authentication
Passwords are stored in plain text.
## License
ScriptForm is released under the MIT license.
@ -69,3 +117,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Loading…
Cancel
Save