You are looking at historical revision 23515 of this page. It may differ significantly from its current revision.

Awful

  1. Awful
    1. Description
      1. Screencasts
    2. Author
    3. Requirements
    4. Components
    5. A "Hello, world!" example
    6. Accessing request variables
    7. Re-evaluating the code by reloading the page
    8. Using ajax
    9. Adding arbitrary javascript code to pages
    10. Database access
    11. Login pages and session
    12. Session inspector
    13. Web REPL
    14. Pages access control
    15. Compiled pages
    16. Multiple applications support
    17. The awful application server
    18. Deploying Awful
      1. On Unix[-like] systems
        1. privileged.conf
        2. awful.conf
    19. Awful & SSL
    20. List of user configurable parameters
      1. Debugging (parameters)
        1. debug-file
        2. debug-db-query?
        3. debug-db-query-prefix
        4. debug-resources
      2. Database (parameters)
        1. db-credentials
      3. Ajax (parameters)
        1. ajax-library
        2. enable-ajax
        3. ajax-namespace
        4. ajax-invalid-session-message
      4. Sessions (parameters)
        1. enable-session
        2. enable-session-cookie
        3. session-cookie-name
      5. Access control (parameters)
        1. page-access-control
        2. page-access-denied-message
        3. valid-password?
      6. Pages (parameters)
        1. page-doctype
        2. page-css
        3. page-charset
        4. page-template
        5. page-exception-message
      7. Page paths (parameters)
        1. main-page-path
        2. app-root-path
        3. login-page-path
      8. Headers (parameters)
        1. awful-response-headers
      9. Web REPL (parameters)
        1. web-repl-access-control
        2. web-repl-access-denied-message
        3. enable-web-repl-fancy-editor
        4. fancy-editor-base-uri
      10. Session inspector (parameters)
        1. session-inspector-access-control
        2. session-inspector-access-denied-message
      11. Javascript (parameters)
        1. enable-javascript-compression
        2. javascript-compressor
        3. javascript-position
    21. List of read-only parameters available to users
      1. http-request-variables
      2. db-connection
      3. page-javascript
      4. sid
      5. awful-apps
      6. development-mode?
    22. List of procedures and macros
      1. Miscelaneous
        1. ++
        2. concat
        3. awful-version
      2. Javascript
        1. include-javascript
        2. add-javascript
      3. Debugging
        1. debug
        2. debug-pp
      4. Sessions and authentication
        1. $session
        2. $session-set!
        3. link
        4. form
        5. define-login-trampoline
        6. login-form
      5. Request variables and values
        1. $
        2. with-request-variables
      6. Database access
        1. $db
        2. $db-row-obj
        3. sql-quote
      7. Pages
        1. define-page
        2. define-session-page
        3. undefine-page
      8. Ajax
        1. ajax
        2. periodical-ajax
        3. ajax-link
      9. Redirection
        1. redirecto-to
      10. Request handler hooks
        1. add-request-handler-hook!
        2. remove-request-handler-hook!
      11. Web REPL
        1. enable-web-repl
      12. Session inspector
        1. enable-session-inspector
    23. Tips and tricks
      1. Use link and form for links and forms
      2. Use with-request-variables when referencing the same request variable multiple times
      3. Use the web REPL and the session inspector for debugging
      4. Create custom page definers when page-template and/or plain define-page are not enough
      5. Debugging: error messages on the browser window
      6. Run awful without arguments to quickly share a file
      7. Awful & SXML
      8. Awful badge
    24. Examples
      1. Number guessing game
      2. Sandboxed Chicken Web REPL
      3. Color chooser
      4. Fortune server
    25. The name
      1. Acknowledgements (IRC nicknames on freenode's #chicken):
    26. FAQ (aka Fakely Asked Questions)
      1. How does awful bind URIs to files/directories on the filesystem and procedures?
    27. Known bugs and limitations
    28. License
    29. Version history
      1. version 0.31
      2. version 0.30
      3. version 0.29
      4. version 0.28
      5. version 0.27
      6. version 0.26
      7. version 0.25
      8. version 0.24
      9. version 0.23
      10. version 0.22
      11. version 0.21
      12. version 0.20
      13. version 0.19
      14. version 0.18
      15. version 0.17
      16. version 0.16
      17. version 0.15
      18. version 0.14
      19. version 0.13
      20. version 0.12
      21. version 0.11
      22. version 0.10
      23. version 0.9
      24. version 0.8
      25. version 0.7
      26. version 0.6
      27. version 0.5
      28. version 0.4
      29. version 0.3
      30. version 0.2
      31. version 0.1

Description

awful provides an application and an extension to ease the development of web-based applications.

Here's a short summary of awful features:

Screencasts

Here are some screencasts about awful:

Awful in 35s
a 35 seconds video showing the installation of the awful egg and the development of a "hello, world" example
Number guessing game
a video demonstrating the development of a very simple number guessing game using ajax and the web REPL

Author

Mario Domenech Goulart

Requirements

The following eggs are required:

Components

awful is composed by two parts: an application, which can be thought as a web server; and an extension, which provides most of the supported features.

A "Hello, world!" example

Here's a "Hello, world!" example to be run by awful (hello-world.scm).

(use awful)

(define-page (main-page-path)
  (lambda ()
    "Hello, world!"))

To run this example, execute:

 $ awful hello-world.scm

Then access localhost:8080 using your favourite web browser.

Without any configuration, awful listens on port 8080. Since awful uses Spiffy behind the scenes, you can configure the web server parameters using Spiffy's.

define-page is the primitive procedure to define pages. In the simplest case, it takes as arguments a path to the page and a procedure to generate the page contents. The path to the page you use as the first argument is the same to be used as the path part of the URL you use to access the page.

In the example we use the main-page-path parameter, which is one of the awful configuration parameters. The default is "/".

If you look at the page source code, you'll see that awful created an HTML page for you. Awful uses the html-tags's html-page procedure behind the scenes. You can customize the page either by passing html-page's keyword parameters to define-page or by setting the page-template parameter with your favourite procedure to generate pages. page-template is a one-mandatory-argument procedure which receives the page contents and returns a string representing the formatted contents. define-page would still pass the html-page keyword parameters, so you can make use of them (the page-template procedure should be defined considering them -- if you don't need them, just ignore them by defining (lambda (contents . args) ...)).

You can also use some global page-related parameters if all pages use the same CSS, doctype and charset (page-css, page-doctype and page-charset, respectively).

An alternative way to write Awful scripts is by using the #!/path/to/awful shebang line. Example:

#! /usr/bin/awful

(use awful)

(define-page (main-page-path)
  (lambda ()
    "Hello, world!"))

Then you just need to run your script (assuming the file has execution permissions):

 $ ./hello-world.scm

Accessing request variables

Awful provides a procedure ($) to access variables from the request, both from the query string (GET method) and from the request body (e.g., POST method).

Here's a modified "Hello, world!" example to greet some person instead of the whole world:

(use awful)

(define-page (main-page-path)
  (lambda ()
    (++ "Hello, " ($ 'person "world") "!")))

The ++ procedure is an alias to string-append (name inspired by Haskell's operator to concatenate strings).

So, restart the web server to reload the code, then access the main page using an argument, represented by the person query string variable: http://localhost:8080/?person=Mario. You'll see a page showing Hello, Mario!.

Re-evaluating the code by reloading the page

When we upgraded our "Hello, world!" example to the improved one which can use an argument passed through the URL, we needed to modify the code and restart the web server to reload the application code. Awful provides a way to reload the code via URL without restarting the server. To do that, we can define a special page whose handler just reloads the code:

(use awful)

(define-page "/reload"
  (lambda ()
    (load-apps (awful-apps))
    "Reloaded"))

and restart the awful server. Now, whenever you want to reload the application code, access http://localhost:8080/reload.

You can control which IP numbers can access the reload page by using the page-access-control parameter. For example, allowing only the localhost to reload the apps:

(use awful spiffy)

(page-access-control
 (lambda (path)
   (if (equal? path "/reload")
       (member (remote-address) '("127.0.0.1"))
       #t)))

When used in development mode (see the --development-mode command line option for the awful application server), awful automatically defines a /reload path (available to any host) for reloading all the applications.

Using ajax

Awful provides a way to (hopefully) make the use of ajax straightforward for web applications.

By default, the ajax support is disabled, but it can be easily globally enabled by setting the enable-ajax parameter to #t. When you enable ajax via enable-ajax, all the pages defined via define-page will be linked to the JQuery javascript library. If you want just a couple of pages to have ajax support (i.e., not global ajax support), you can use the use-ajax keyword parameter for define-page, so only the pages defined with use-ajax: #t have ajax support.

When you have ajax enabled and you want to disable it for specific pages, you can pass #f as the value for the define-page keyword parameter no-ajax.

The URL of the JQuery file can be customized by setting the ajax-library parameter (the default is Google's API JQuery file).

So, if we now change our code to

(use awful)

(define-page (main-page-path)
  (lambda ()
    (++ "Hello, " ($ 'person "world") "!"))
  use-ajax: #t)

and reload the application, we'll have our page linked to JQuery.

Awful provides some procedures to do ajax. We start by the more generic one (ajax) to reply the page greetings when we click "Hello, <person>!".

(use awful html-tags)

(define-page (main-page-path)
  (lambda ()
    (ajax "greetings" 'greetings 'click
          (lambda ()
            (<b> "Hello, awful!"))
          target: "greetings-reply")
    (++ (<a> href: "#"
             id: "greetings"
             (++ "Hello, " ($ 'person "world") "!"))
        (<div> id: "greetings-reply")))
  use-ajax: #t)

The ajax procedure uses at least four arguments:

1. The URL path to the server-side handler (a string). This path is relative to ajax-namespace parameter (default is ajax. So, in the example, we'll have /ajax/greetings as the ajax path to be generated if we pass ajax as the first argument.

2. The ID of the DOM element to observe.

3. The event to be handled

4. The procedure to be run on the server-side.

So, in the example, ajax will bind the fourth argument (the procedure) to the first argument (the path) on the server side. Then it will add javascript code to the page in order to wait for click events for the element of ID greetings. When we click "Hello, <person>!", we'll get Hello, awful! printed on the page as reply. ajax updates the DOM element whose id is the value of the target keyword parameter ("greetings-reply", in the example).

For the very specific case of creating links that execute server side code when clicked, awful provides the ajax-link procedure. So our example could be coded like:

(use awful)

(define-page (main-page-path)
  (lambda ()
    (++ (ajax-link "greetings" 'greetings
                   (lambda ()
                     (<b> "Hello, awful!"))
                   target: "greetings-reply")
        (<div> id: "greetings-reply")))
  use-ajax: #t)

Adding arbitrary javascript code to pages

Awful provides a procedure which can be used to add arbitrary javascript code to the page. It's called add-javascript. Here's an example using javascript's alert and our "Hello, world!" example:

(use awful)

(define-page (main-page-path)
  (lambda ()
    (add-javascript "alert('Hello!');")
    (++ (ajax-link "greetings" 'greetings
                   (lambda ()
                     (<b> "Hello, awful!"))
                   target: "greetings-reply")
        (<div> id: "greetings-reply")))
  use-ajax: #t)

Database access

To access databases, you need some of the awful eggs which provide database access. Currently, these are the possible options:

As with ajax, database access is not enabled by default. To enable it, you need to pick one the awful database support eggs and call the enable-db procedure. Since version 0.10, and differently from the enable-* parameters, enable-db is a zero-argument procedure provided by each of awful database-support eggs. So, if you use awful-postgresql, the enable-db procedure will automatically set up awful to use a postgresql database.

Additionally, to access the db, you need to provide the credentials. You can provide the credentials by setting the db-credentials parameter. See the documentation for the eggs corresponding to the database type you are using (postgresql for Postgresql and sqlite3 or sql-de-lite for Sqlite3.)

To actually query the database, there's the $db procedure, which uses as arguments a string representing the query and, optionally, a default value (a keyword parameter) to be used in case the query doesn't return any result. $db returns a list of lists. Below is an usage example:

(use awful awful-postgresql)

(enable-db)
(db-credentials '((dbname . "my-db")
                  (user . "mario")
                  (password . "secret")
                  (host . "localhost")))

(define-page "db-example"
  (lambda ()
    (with-output-to-string
      (lambda ()
        (pp ($db "select full_name, phone from users"))))))

Hint: for Sqlite3 databases, db-credentials should be the path to the database file.

There's also the $db-row-obj procedure for when you want to access the results of a query by row name. $db-row-obj returns a procedure of two arguments: the name of the field and, optionally, a default value to be used in case the field value is #f.

(define-page "db-example"
  (lambda ()
    (let ((& ($db-row-obj "select full_name, phone from users where user_id=1")))
      (<p> "Full name: " (& 'full_name))
      (<p> "Phone: " (& 'phone)))))

Warning: currently $db-row-obj is only implemented for Postgresql.

If you need more flexibility to query the database, you can always use the (db-connection) parameter to get the database connection object and use it with the procedures available from the your favorite database egg API.

Login pages and session

Awful provides a very basic (awful?) support for creating authentication pages.

The basic things you have to do is:

1. Enable the use of sessions:

(enable-session #t)

2. Set the password validation parameter. This parameter is a two argument procedure (user and password) which returns a value (usually #t or #f) indicating whether the password is valid for the given user. The default is a password which returns #f. Let's set it to a procedure which returns #t is the user and the password are the same:

(valid-password?
  (lambda (user password)
    (equal? user password)))

3. Define a login trampoline, which is an intermediate page accessed when redirecting from the login page to the main page.

(define-login-trampoline "/login-trampoline")

4. Create a login page. Awful provides a simple user/password login form (login-form), which we are going to use. Here's our full example so far (using the basic "Hello, world!" as main page).

(use awful)

(enable-session #t)

(define-login-trampoline "/login-trampoline")

(valid-password?
  (lambda (user password)
    (equal? user password)))

(define-page (main-page-path)
  (lambda ()
    "Hello world!"))

(define-page (login-page-path)
  (lambda ()
    (login-form))
  no-session: #t)

That's the very basic we need to set an auth page. If the password is valid for the given user, awful will perform a redirect to the main page (main-page-path parameter) passing the user variable and its value in the query string . If the password is not valid, awful will redirect to the login page (login-page-path parameter) and pass the following variables and values:

reason
the reason why awful redirected to the login page. It may be invalid-password, for when the password is invalid for the given user; or invalid-session for when the session identifier is not valid (e.g., the session expired).
attempted-page
the URL path to page the user tried to access, but couldn't because either he/she was not logged in or he/she provided an invalid session identifier.
user
the user used for the form user field.

Now we're gonna change our main page to store the user in the session and retrieve it to make the greetings message:

(define-page (main-page-path)
  (lambda ()
    ($session-set! 'user ($ 'user))
    (++ "Hello " ($session 'user "world") "!")))

Here we can see the two procedures to access the session: $session and $session-set!.

$session-set! accepts two arguments: the first one is the name of the session variable and the second one is its value.

$session takes the name of the session variable as argument and returns its session value. We can optionally use a second argument to specify a default value, in case the session variable is not bound or is #f.

Session inspector

Awful provides a session inspector, so we can easily see the session contents for a given session identifier. By default, the session inspector is disabled. We can enabled it using the enable-session-inspector procedure, passing the session inspector URL path as argument:

(enable-session-inspector "session-inspector")

Now, if you log in and try to access http://localhost:8080/session-inspector, you'll get ... an access denied page.

Awful provides a way to control access to the session inspector (session-inspector-access-control parameter). The session-inspector-access-control parameter is an one-argument procedure which returns #f or some other value to indicate whether the access to the session inspector is allowed or not. By default, it blocks all access. Let's configure it so we can access the session inspector from the local machine (whose IP number is 127.0.0.1):

(session-inspector-access-control
 (lambda ()
   (member (remote-address) '("127.0.0.1"))))

Regarding to the access denied message, you can customize it by setting the session-inspector-access-denied-message.

Now we can access http://localhost:8080/session-inspector and see the session contents.

Note: if enable-session-cookie is #f, you need to pass the session identifier in the query string (e.g., http://localhost:8080/session-inspector?sid=the-session-cookie-here).

Here's a screenshot:

When enable-session is #t and the --development-mode option is given to the awful application server, the session inspector is automatically enabled and is avaliable from /session-inspector.

Web REPL

For further run-time, server-side web hacking, awful provides a REPL that you can use via web browser.

The web REPL can use either a plain HTML textarea for the input area or a more featureful editor (based on codemirror). By default, the web REPL uses the fancy editor.

The activation and control access are basically the same as for the session inspector. The relevant procedure and parameters are:

Here's a screenshot (using the fancy editor):

When the --development-mode option is given to the awful application server, the web REPL is automatically enabled and is avaliable from /web-repl. The awful application server also accepts the --disable-web-repl-fancy-editor command line option to disable the web REPL fancy editor.

Pages access control

To allow/deny access to pages, you can use the page-access-control parameter. It's an one-argument procedure (the page path) which can be set to determine if the access to the page is allowed or not.

The example bellow shows a very silly access control to the main page: it only allows the access when the value of the request variable user is "mario":

(use awful)

(enable-session #t)

(define-login-trampoline "/login-trampoline")

(valid-password?
 (lambda (user password)
   (equal? user password)))

(page-access-control
 (lambda (path)
   (or (member path `(,(login-page-path) "/login-trampoline")) ;; allow access to login-related pages
       (and (equal? ($ 'user) "mario")
            (equal? path (main-page-path))))))

(define-page (main-page-path)
  (lambda ()
    "Hello world"))

(define-page (login-page-path)
  (lambda ()
    (login-form))
  no-session: #t)

You can customize the access denied message by setting the page-access-denied-message with an one-argument procedure (the page path).

Compiled pages

Since Chicken is a compiler and our pages are Chicken code, we can compile them to have faster pages. We just need to compile our app and pass the generated .so to the awful application:

 $ csc -s hello-world.scm
 $ awful hello-world.so

Multiple applications support

Parameters are thread-safe, but Spiffy (the web server used by awful) doesn't garantee that each request will be handled by a different thread, so awful has to provide a way to overcome that, otherwise hosting multiple applications under the same virtual host can be very painful, since it's not guaranteed that parameters will be reset at each request (awful does reset some critical and obviously per-request ones like http-request-variables, awful-response-headers, db-connection and sid).

Awful provides the possibility of running hooks when handling requests, so you can set parameters for multiple applications in a way that they don't interfere with others.

See the documentation for add-request-handler-hook! for an example about how to do that.

The awful application server

Awful consists of an application server and an extension module. The awful application server is a command line program whose usage is:

$ awful --help
awful [ -h | --help ]
awful [ -v | --version ]
awful [ --development-mode ] [ --disable-web-repl-fancy-editor ] [ --ip-address=<ip address> ] [ --port=<port number> ] [ <app1> <app2> ... ]

<app1> <app2> ... are files containing code to be loaded by the awful application server.

--ip-address can be used to bind the web server to the given IP address.

--port can be used to make the web server listen to the given port.

--ip-address and --port take precedence over the Spiffy parameters to specify the server IP address (server-bind-address) and port (server-port).

The --development-mode option is intended to be used during the development of your web application. It's not recommended to run awful with --development-mode in production. The development mode enables the web REPL and the session inspector (when enable-session is #t) for the localhost, prints error messages and backtraces to the client (e.g., web browser) and HTTP server debugging messages to the current-error-port. It also makes the /reload path available for reloading awful applications.

When in development mode, the web REPL and the session inspector are available from the /web-repl and /session-inspector paths.

If you enable the development mode you can still use enable-web-repl and enable-session-inspector to customize their respective paths and access control procedures (although the development mode always allows access to web REPL and session inspector for the localhost).

The --disable-web-repl-fancy-editor command line option disables the web REPL fancy editor.

The --privileged-code command line options specify code to be run in privileged mode, for the cases when you specify a user/group to run the server (spiffy-user/spiffy-group). In this case, you usually run awful as a user with administrator privileges (e.g., root in Unix[-like] systems) and spiffy switches to the specified user/group. To make things clearer, let's take a look at awful's workflow:

        |
        v
load privileged code
        |
        v
     listen
        |
        v
 switch user/group
        |
        v
 load applications
        |
        v
      accept
        |
        v

As you can see, the privileged code is loaded and evaluated before switching user/group. So, if you run awful with administrator privileges, the privileged code will the loaded with administrator privileges. Running code with administrator privileges is usually not recommended, but it is necessary if you want, for example, to specify the user and group to switch to before acceting connections. So, the --privileged-code command line option should be used strictly to specify code which must be run with administrator privileges (like specifying server user/group and enabling SSL, for example).

The privileged code is not reloaded when you reload applications via a defined reload page.

Deploying Awful

Here are some tips about how to deploy awful on your system.

On Unix[-like] systems

Create a user for running awful. For example, on GNU/Linux systems, you can use the adduser program:

 # adduser --system --no-create-home --disabled-password --disabled-login --group awful

This will create a user and a group called awful.

Create a directory for the awful configuration file:

 # mkdir /etc/awful

Create a directory for log files:

 # mkdir /var/log/awful

Create a directory for static files:

 # mkdir /var/www/awful

You may also want to create a directory for your awful applications:

 # mkdir /var/lib/awful

Create configuration files for awful. In the privileged configuration file (privileged.conf below) you can set all the configuration parameters for awful and spiffy which require administrator provileges.

In another file (awful.conf below) you can put whatever code which does not need administrator provileges.

Here's some example configuration for awful listening on port 80 (strictly speaking, spiffy -- the actual web server -- listens on this port):

privileged.conf
;; -*- scheme -*-

(use spiffy awful)
(spiffy-user "awful")
(server-port 80)
(root-path "/var/www/awful")
(debug-log "/var/log/awful/debug.log")
(error-log "/var/log/awful/error.log")
awful.conf
(load "/var/lib/awful/my-app") ;; if you don't use file suffixes, Chicken will
                               ;; pick .so files when you compile your apps

Set the permissions for the configuration, log, static files and awful applications directories:

 # chown -R awful:awful /etc/awful /var/log/awful /var/www/awful /var/lib/awful

Set up an init script for your system. Basically, it should call

 /usr/bin/awful --privileged-code=/etc/awful/privileged.conf /etc/awful/awful.conf &> /var/log/awful/init.log &

If awful doesn't start, take a look at /var/log/awful/init.log

You can find an init script for Debian systems (or derivatives, like Ubuntu) at the awful source repository. Here are the steps to install it:

 # cd /etc/init.d
 # wget --user=anonymous --password='' http://code.call-cc.org/svn/chicken-eggs/release/4/awful/extra/awful-debian-init -O awful
 # chmod 755 awful
 # update-rc.d awful defaults

There's also an init script for Gentoo (by David Krentzlin).

Awful & SSL

To make awful serve pages using SSL, see the documentation for the awful-ssl egg.

List of user configurable parameters

Debugging (parameters)

debug-file
[parameter] (debug-file [file path])

If #f, indicates that debugging should be disabled. When set to a string, it should be the path to the file where the debug messages go (when debug or debug-pp is used.)

The default value is #f.

debug-db-query?
[parameter] (debug-db-query? [boolean])

When not #f, all queries passed to $db and to $db-row-obj are printed to the debug file.

The default value is #f.

debug-db-query-prefix
[parameter] (debug-db-query-prefix [string])

Prefix to be used for queries debugging when debug-db-query is not #f.

The default value is "".

debug-resources
[parameter] (debug-resources [boolean])

When #t, enables debugging of awful's resources table (an alist mapping paths (or regexes) and vhost paths to their corresponding procedures to be executed on the server side upon request). The debugging data is sent to the file pointed by debug-file. The default value is #f.

Database (parameters)

db-credentials
[parameter] (db-credentials [boolean or list])

Credentials to be used to access the database (see the documentation for the egg corresponding to the database backend you selected.) When #f, no database access is performed.

The default value is #f.

Ajax (parameters)

ajax-library
[parameter] (ajax-library [string])

URL or path to the ajax library (currently only JQuery is supported.)

The default value is "http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"

enable-ajax
[parameter] (enable-ajax [boolean])

When #t, makes define-page link the ajax-library to the generated page. It's effect is global, that is, once enable-ajax is set to #t, all pages defined via define-page will be linked to the ajax library, unless when the no-ajax keyword parameter is explicitly set.

The default value is #f

ajax-namespace
[parameter] (ajax-namespace [string])

Name to be used as a namespace for ajax URL paths.

The default value is "ajax".

ajax-invalid-session-message
[parameter] (ajax-invalid-session-message [string])

The message to be used when attempting the make an ajax call using an invalid session identifier.

The default value is "Invalid session".

Sessions (parameters)

enable-session
[parameter] (enable-session [boolean])

When #t, session support is enabled.

The default value is #f.

[parameter] (enable-session-cookie [boolean])

When #t, awful uses cookies to store the session identifier. Otherwise, the session identifier is passed as a value in the query string or in the request body. The default value is #t.

[parameter] (session-cookie-name [string])

The name of the cookie for storing the session identifier. The dafult value is "awful-cookie".

Access control (parameters)

page-access-control
[parameter] (page-access-control [procedure])

An one-argument (URL path of the current page) procedure which tells whether the access to the page is allowed or not.

The default value is (lambda (path) #t).

page-access-denied-message
[parameter] (page-access-denied-message [procedure])

An one-argument (URL path of the current page) procedure which returns the access denied message.

The default value is (lambda (path) (<h3> "Access denied.")).

valid-password?
[parameter] (valid-password? [procedure])

A two-argument (user and password) procedure which indicates whether the given password is valid for the given user.

The default value is (lambda (user password) #f).

Pages (parameters)

page-doctype
[parameter] (page-doctype [string])

The doctype (see the doctype egg) to be applied to all pages defined by define-page. It can be overwritten by define-page's doctype keyword parameter.

The default value is "".

page-css
[parameter] (page-css [boolean or string])

The CSS file to be linked by all pages defined by define-page. It can be overwritten by define-page's css keyword parameter. See html-utils's html-page procedure to know about the css keyword parameter syntax.

The default value is #f (no CSS).

page-charset
[parameter] (page-charset [boolean or string])

The page charset to be used by all pages defined by define-page. It can be overwritten by define-page's charset keyword parameter.

The default value is #f (no explicit charset).

page-template
[parameter] (page-template [procedure])

An one-mandatory-argument procedure to be used by define-page (unless define-page's no-template keyword parameter is set to #f) to generate HTML pages. Although this procedure can take only one mandatory argument, the following keyword arguments are passed:

The default value is html-page (see the html-utils egg documentation.)

page-exception-message
[parameter] (page-exception-message [procedure])

An one-argument procedure to be used when an exception occurs while define-page tries to evaluate its contents.

The default value is (lambda (exn) (<h3> "An error has accurred while processing your request."))

Page paths (parameters)

main-page-path
[parameter] (main-page-path [string])

The URL path to the app main page.

The default value is "/".

app-root-path
[parameter] (app-root-path [string])

The base path to be used by the application. All the pages defined by define-page will use app-root-path as the base directory. For example, if app-root-path is set to "/my-app" and "my-page" is used as first argument to define-page, the page would be available at http://<server>:<port>/my-app/my-page.

The default value is "/".

Important: this parameter is evaluated both at page definition time and page request handling time.

login-page-path
[parameter] (login-page-path [string])

The URL path for the login page. When creating a login page, be sure to set the no-session keyword parameter for define-page to #t, otherwise you'll get an endless loop.

The default value is "/login".

Headers (parameters)

awful-response-headers
[parameter] (awful-response-headers [alist])

An alist to specify the headers to be used in the response. If the content-length header is not provided, awful will calculate it automatically.

Here's an example:

(use awful)

(define (define-json path body)
  (define-page path
    (lambda ()
      (awful-response-headers '((content-type "text/json")))
      (body))
    no-template: #t))


(define-json (main-page-path)
  (lambda ()
    "{a: 1}"))

Web REPL (parameters)

web-repl-access-control
[parameter] (web-repl-access-control [procedure])

A no-argument procedure to control access to the web REPL.

The default value is (lambda () #f).

web-repl-access-denied-message
[parameter] (web-repl-access-denied-message [string])

Message to be printed when the access to the web REPL is denied.

The default value is (<h3> "Access denied.").

enable-web-repl-fancy-editor
[parameter] (enable-web-repl-fancy-editor [boolean])

Indicates whether the web REPL should use a fancier editor for the input area. The editor is based on codemirror. Without the fancy editor, the input area is a simple HTML textarea. The default value for use-fancy-editor is #t.

fancy-editor-base-uri
[parameter] (fancy-editor-base-uri [string])

The URI which indicates the fancy editor source files (javascript and CSS) location. The default value is http://parenteses.org/awful/codemirror.

Session inspector (parameters)

session-inspector-access-control
[parameter] (session-inspector-access-control [procedure])

A no-argument procedure to control access to the session inspector.

The default value is (lambda () #f).

session-inspector-access-denied-message
[parameter] (session-inspector-access-denied-message [string])

Message to be printed when the access to the session inspector is denied.

The default value is (<h3> "Access denied.").

Javascript (parameters)

enable-javascript-compression
[parameter] (enable-javascript-compression [boolean])

Enable javascript compression support. When enabled the compressor set by javascript-compressor is used.

The default value is #f.

javascript-compressor
[parameter] (javascript-compressor [procedure])

An one-argument procedure (the javascript code) which return the given javascript code compressed. Only used when enable-javascript-compression is not #f.

The default value is the identity procedure.

A possible value for javascript-compressor is jsmin-string (see the jsmin egg.)

javascript-position
[parameter] (javascript-position [symbol])

A symbol indicating the position of javascript code in the generated pages. Possible values are top (in the page headers) and bottom (right before </body>). The default value is top.

List of read-only parameters available to users

Note: these parameters should not be explicitly set and when their use is needed, it's a string sign you're doing something you shouldn't (except for db-connection, which can be used by procedures from the postgresql egg API).

http-request-variables
[parameter] (http-request-variables)

The per-request value returned by spiffy-request-vars's request-vars.

db-connection
[parameter] (db-connection)

A per-request databaseconnection object. The connection is automatically opened and closed by awful in a per-request basis (unless databases are not being used the no-db keyword parameter for define-page is #t.)

page-javascript
[parameter] (page-javascript)

Javascript code to be added to the pages defined by define-page.

sid
[parameter] (sid)

The session identifier.

awful-apps
[parameter] (awful-apps)

The list of awful applications, as given to the awful server when invoked from the command line.

development-mode?
[parameter] (development-mode?)

Indicates whether awful is running in development mode (see the --development-mode command line option for the awful application server).

List of procedures and macros

Miscelaneous

++
[procedure] (++ string1 string2 ... stringn)

A shortcut to string-append.

concat
[procedure] (concat args #!optional (sep ""))

Convert args to string and intersperse the resulting strings with sep.

awful-version
[procedure] (awful-version)

Return the awful version (a string).

Javascript

include-javascript
[procedure] (include-javascript . files)

A shortcut to (<script> type: "text/javascript" src: file).

add-javascript
[procedure] (add-javascript . code)

Add arbitrary javascript code to the pages defined by define-page and define-session-page.

Debugging

debug
[procedure] (debug . args)

Print args, concatenated, to the file debug-file.

debug-pp
[procedure] (debug-pp arg)

Pretty-print arg to the file debug-file.

Sessions and authentication

$session
[procedure] ($session var #!optional default)

Return the value of var in the session (or default if var does not exist or is #f).

$session-set!
[procedure] ($session-set! var #!optional val)

If var is a quoted symbol, set the value of var to val. If val is not provided, var will have its value set to #f.

var can be an alist mapping session variable names to their corresponding values.

Examples:

($session-set! 'foo "foo value")

($session-set! '((foo . "foo value")
                 (bar . "bar value")
                 (baz . "baz value")))
[procedure] (link url text . rest)

Return a session-aware HTML code for a link, using the <a> procedure from html-tags.

The rest arguments are the same as the ones for the <a> procedure from html-tags, plus the following:

no-session
a boolean. If #t, forces link to ignore the session even when enable-session is #t.
arguments
an alist mapping variable names to their corresponding values, to be passed to uri-common's form-urlencode procedure.
separator
the value to the separator keyword argument to be passed to to uri-common's form-urlencode procedure.

When enable-session is #t, link automatically encodes the session identifier in the URI (unless no-session is #t).

form
[procedure] (form contents . rest)

Return a session-aware HTML code for a form, using the <form> procedure from html-tags.

The rest arguments are the same as the ones for the <form> procedure from html-tags, plus no-session, a boolean. If no-session is #t, it forces form to ignore the session even when enable-session is #t.

When enable-session is #t, form automatically generates a hidden input field to pass the session identifier (unless no-session is #t).

define-login-trampoline
[procedure] (define-login-trampoline path #!key vhost-root-path hook)

Define a trampoline -- an intermediate page accessed when redirecting from the login page to the main page.

login-form
[procedure] (login-form #!key (user-label "User: ") (password-label "Password: ") (submit-label "Submit") (refill-user #t))

Return a user/password login form (e.g., for using in authentication pages).

When the refill-user is #t, the User field is reffiled with the value from the user query string value when either the session or the password is invalid.

The user-label, password-label and submit-label keyword parameters are labels to be used for the user, password and submit form widgets, respectively.

Request variables and values

$
[procedure] ($ var #!optional default/converter)

Return the HTTP request value for the given variable var. The variable is looked for in both the query string (GET method) and request body (e.g., POST method). See the documentation for the procedure returned by spiffy-request-vars's request-vars for further details.

with-request-variables
[syntax] (with-request-variables (var1 var2 ... varn) expression1 ...)

A wrapper around spiffy-request-vars's with-request-vars*.

All the spiffy-request-vars's converter procedures are exported, for convenience.

Database access

$db
[procedure] ($db q #!key default values)

Execute the given query (q) on the database and return the result as a list of lists or default if the result set is empty.

The values keyword parameter (a list) is a list of values to replace the placehoders in the query.

Example:

($db "insert into foo (bar, baz) values (?, ?)" values: '("bar-val" "baz-val"))
$db-row-obj
[procedure] ($db-row-obj q)

Execute the given query q on the database and return an one-argument procedure which takes as argument the name of the database field to get the value.

Example:

(let ((& ($db-row-obj "select full_name, phone from users where user_id=1")))
  (<p> "Full name: " (& 'full_name))
  (<p> "Phone: " (& 'phone)))

Warning: currently $db-row-obj is only implemented for Postgresql databases.

sql-quote
[procedure] (sql-quote . data)

Escape and quote the concatenation of data to be used in SQL queries.

Warning: for Sqlite databases, sql-quote just replaces ' by '' and quotes the data. For Postgresql, sql-quote quotes the result of escape-string.

Consider using the API for placeholders of your favorite database egg instead od sql-quote whenever possible.

Pages

define-page
[procedure] (define-page path contents #!key css title doctype headers charset no-ajax use-ajax no-template no-session no-db no-javascript-compression)

Define an awful page.

path is the path to the page. It can be represented by two types: a string and a regular expression object. If it is a string, the path used in the URI will be bound to the given no-argument procedure contents. If it is a regular expression object, any request whose URL path matches the regular expression will br handled by the one-argument procedure contents. This procedure will be given the requested path.

The css, title, doctype, headers and charset keyword parameters have the same meaning as html-page (from the html-utils egg).

If no-ajax is #t, it means that the page won't use ajax, even if the enable-ajax parameter is #t.

If use-ajax is #t, it means that the page will be linked to the ajax library, even if the enable-ajax parameter is #f.

If no-template is #t, it means that no page template (see the page-template parameter) should be used.

If no-session is #t, it means that the page should not use session.

If no-db is #t, it means that the page should not use the database, even when database usage is activated by enable-db and db-credentials is not #f.

If no-javascript-compression is #t the javascript code for the page is not compressed, even when enable-javascript-compression is not #f.

Examples:

(use srfi-1 ;; for filter-map
     regex) ;; for regexp

;; http://host:port/foo => "bar"
(define-page "/foo"
  (lambda ()
    "bar"))

;; http://host:port/add/1/2/3 => 6
(define-page (regexp "/add/.*")
  (lambda (path)
    (let ((numbers (filter-map string->number (string-split path "/"))))
      (number->string (apply + numbers)))))
define-session-page
[procedure] (define-session-page path contents . rest)

Define a session-aware page. When the page is accessed and a correponding session does not exist, it is created. If the session already exists and is not valid, it is recreated. If the session already exists and is valid, then it is refreshed.

The rest parameters are the same as for define-page.

Here's an example (the arc challenge):

(use awful html-utils)

(define-session-page "said"
  (lambda ()
    (with-request-variables (said)
      (cond (said
             ($session-set! 'said said)
             (link "said" "click here"))
            (($session 'said)
             => (lambda (said)
                  (++ "You said: " said)))
            (else (form (++ (text-input 'said)
                            (submit-input))
                        action: "said"
                        method: 'post))))))
undefine-page
[procedure] (undefine-page path #!optional vhost-root-path)

Undefine a page whose path is path (a string or a regular expression object).

The optional parameter vhost-root-path is the path of virtual host where the page is to be undefined. If omited, (root-path) is used.

Ajax

ajax
[procedure] (ajax path selector event proc #!key target (action 'html) (method 'POST) (arguments '()) success no-session no-db vhost-root-path live prelude update-targets cache)

Generate javascript code to be added to the page defined by define-page. Return the generated javascript code (which usually is not useful, so should be discarded).

path is the URL path (a string) of the server side handler. This path is placed under the (app-root-path)/(ajax-namespace) path. So, if your app-root-path is "my-app", your ajax-namespace is "ajax" and you use "do-something" as the first argument to ajax, the URL for the server side handler would be "/my-app/ajax/do-something".

selector is the selector for the DOM element to be observed. If it is a quoted symbol, awful generates a JQuery selector by DOM id (e.g., 'my-selector generates "#my-selector"). If it is a string, awful uses it as-is to generate the JQuery selector (e.g., "input[name^=omg]" generates "input[name^=omg]").

event (a quoted symbol or a list) is the event(s) to be observed. If it is a quoted symbol (e.g., 'click), only this event will be bound. If event is a list of events, all the events from the list will be bound.

proc is a no-argument procedure to be executed on the server side.

The target keyword parameter is the id of the DOM element to be affected by the result of proc.

The method (a quoted symbol, usually 'GET or 'POST) keyword parameter is the HTTP method to be used by the ajax request.

The arguments keyword parameter is an alist mapping request variables (symbols) to their values (strings). ajax uses these arguments to assembly the query string or the request body to send to the server when performing the ajax request.

Example:

arguments: '((var1 . "$('#var1').val()")
             (var2 . "$('#var2').val()"))

If the no-session keyword parameter is #t, it means that no session should be considered (ajax implicit sends the session identifier when no-session is #f).

If the no-db keyword parameter is #t, it means that the should be no attempt to connect the database, even when database usage is activated by enable-db and db-credentials is not #f.

The vhost-root-path keyword parameter (a string) is the vhost root path. It is useful for explicitly separate pages defined using the same path (see define-page) but for different vhosts.

The live keyword parameter (boolean) indicates wheter ajax should use JQuery's live method (see http://api.jquery.com/live/).

The prelude keyword parameter (string) is an arbitrary piece of javascript code to be placed right before the ajax request.

The update-targets keyword parameter a boolean indicating whether multiple targets should be updated upon ajax response. When update-targets is used, the procedure proc used as argument to ajax should yield an alist as result. The alist maps DOM elements identifiers to their corresponding values.

Here's an example:

(use awful html-tags)

(enable-ajax #t)

(define-page (main-page-path)
  (lambda ()

    (ajax "foo" 'foo 'click
          (lambda ()
            '((a . 1) (b . 2) (c . 3)))
          update-targets: #t)

    (<div>
     (link "#" "foo" id: "foo")
     (<div> id: "a")
     (<div> id: "b")
     (<div> id: "c"))))

The success keyword parameter (string) can be any arbitrary javascript code to be executed on the successful ajax request. The javascript code can assume that a variable response is bound and contains the request resulting data. Here's an example:

(use awful html-tags)

(enable-ajax #t)

(define-page (main-page-path)
  (lambda ()

    (ajax "foo" 'foo "click"
          (lambda ()
            "hey")
          success: "$('#bar').html(response + ' you!')")

    (++ (link "#" "foo" id: "foo")
        (<div> id: "bar"))))

The cache keyword parameter (boolean), if set to #f, it will force requested pages not to be cached by the browser. The default value is not set, leaving it to be set by JQuery. See JQuery's documentation for further details.

The ajax procedure is session, HTTP request and database -aware.

periodical-ajax
[procedure] (periodical-ajax path interval proc #!key target (action 'html) (method 'POST) (arguments '()) success no-session no-db vhost-root-path live prelude update-targets)

Periodically execute proc on the server side, using (app-root-path)/(ajax-namespace)/path as the URL path for the server side handler.

interval (a number) is the interval between consecutive executions of proc, in milliseconds.

The meaning of the keyword parameters is the same as for ajax's.

[procedure] (ajax-link path id text proc #!key target (action 'html) (method 'POST) (arguments '()) success no-session no-db (event 'click) vhost-root-path live class hreflang type rel rev charset coords shape accesskey tabindex a-target prelude update-targets)

A shortcut to

(begin
  (ajax path id 'click proc ...)
  (<a> href: "#" [...other <a> keyword parameters...] id: id text))

The meaning of the target, action, method, arguments, success, no-session, no-db, event, vhost-root-path, update-targets and live keyword parameters is the same as for ajax's.

The meaning of the class, hreflang, type, rel, rev, charset, coords, shape, accesskey, tabindex and a-target are the same as for html-tags' <a> procedure (except that a-target is <a>'s target, since ajax uses the target keyword parameter).

The event keyword parameter syntax is the same for ajax's event mandatory parameter.

Redirection

redirecto-to
[procedure] (redirect-to uri)

Perform an HTTP redirection (code 302) to the given uri (either a string or a uri-common uri object). To be used from define-page contents. Example:

(use awful)

;; / -> /foo
(define-page "/"
  (lambda ()
    (redirect-to "/foo")))

(define-page "/foo"
  (lambda ()
    "foo"))

The example above shows a redirection from / to /foo. Redirections can also be performed when the origin path is a regular expression:

(use awful)

;; /bar.* -> /foo
(define-page (regexp "/bar.*")
  (lambda (_)
    (redirect-to "/foo")))

(define-page "/foo"
  (lambda ()
    "foo"))

Request handler hooks

Awful provides the possibility of plugin hooks to the request handler, so that deploying multiple awful applications under the same virtual host is possible and easy.

add-request-handler-hook!
[procedure] (add-request-handler-hook! hook-id proc)

Adds a hook identified by id (can be used to remove the hook if necessary). proc is a two-argument procedure which receives the requested path and its handler.

Here's a simple usage example:

(add-request-handler-hook!
 'foo
 (lambda (path handler)
   (when (string-prefix? "/foo" path)
     (parameterize
         ((debug-file "/tmp/foo-debug")
          (enable-ajax #t))
       (handler))))

By using request handlers, you can parameterize parameter values in a way that they don't affect other applications.

remove-request-handler-hook!
[procedure] (remove-request-handler-hook! hook-id)

Removes the request handler hook identified by id.

Web REPL

enable-web-repl
[procedure] (enable-web-repl path #!key css title)

Enable the web REPL. path is the URL path to the web REPL.

The keyword parameter css is the CSS to be used the the web REPL page (see the documentation for html-page, from the html-utils egg, for the css keyword parameter.)

The keyword parameter title (a string) is the title for the web REPL page (see the documentation for html-page, from the html-utils egg, for the title keyword parameter.)

The web REPL is automatically enabled by the awful application server when the --development-mode is provided (available from /web-repl). By default, the fancy editor is used, but can be disabled with the --disable-web-repl-fancy-editor command line option for the awful application server.

Session inspector

enable-session-inspector
[procedure] (enable-session-inspector path #!key css title)

Enable the session inspector. path is the URL path to the session inspector.

The keyword parameter css is the CSS to be used the the session inspector page (see the documentation for html-page, from the html-utils egg, for the css keyword parameter.)

The keyword parameter title (a string) is the title for the session inspector page (see the documentation for html-page, from the html-utils egg, for the title keyword parameter.)

The session inspector is automatically enabled by the awful application server when the --development-mode is provided (available from /session-inspector).

Tips and tricks

Instead of using <a> and <form> for creating links and forms, respectively, consider using the link and form procedures instead. They are specially useful when using sessions, since they transparently handle the session identifier for you. Even if you don't use sessions, they may save you some work if one day you decide to use sessions (then you won't have do to anything regarding to links and forms).

Use with-request-variables when referencing the same request variable multiple times

When you need to access the same request variable more than once, consider using with-request-variables.

For example, instead of:

(use awful)

(define-page "save-and-show-user"
  (lambda ()
    ($session-set! 'user ($ 'user))
    (++ "Welcome " ($ 'user) "!")))

consider using something like:

(use awful)

(define-page "save-and-show-user"
  (lambda ()
    (with-request-variables (user)
      ($session-set! 'user user)
      (++ "Welcome " user))))

Use the web REPL and the session inspector for debugging

You can simply use the --development-mode option for the awful application server to enable the web REPL and the session inspector (when enable-session is #t). The development mode allows access to them for the localhost. When in development mode, the web REPL and the session inspector are available at the /web-repl and /session-inspector paths.

If you want further flexibility, you can customize the web REPL and the session inspector.

Here's a simple recipe to allow access for your local machine to the web REPL (/repl) and to the session inspector (/session-inspector).

(session-inspector-access-control
 (lambda ()
   (member (remote-address) '("127.0.0.1"))))

(enable-session-inspector "/session-inspector")


(web-repl-access-control
 (lambda ()
   (member (remote-address) '("127.0.0.1"))))

(enable-web-repl "/repl")

To access them, just point your browser to http://localhost:<port>/repl and http://localhost:<port>/session-inspector, respectively.

Create custom page definers when page-template and/or plain define-page are not enough

You can define your own page definers when page-template or the plain define-page is not enough for what you need. Here's an example:

(use awful html-tags)

(define (define-custom-page path contents)
  (define-page path
    (lambda ()
      (<html> (<body> (contents))))
    no-template: #t))

(define-custom-page (main-page-path)
  (lambda ()
    "Hey!"))

If you access http://localhost:8080 you'll get the following HTML code:

 <html><body>Hey!</body></html>

Debugging: error messages on the browser window

Error messages right on the browser window can be quite handy for debugging (although not for production environments). Here's a way to accomplish that:

(use awful html-tags)

(page-exception-message
 (lambda (exn)
   (<pre> convert-to-entities?: #t
          (with-output-to-string
            (lambda ()
              (print-call-chain)
              (print-error-message exn))))))

This feature is automatically enabled when the awful application server is used with the --development-mode option.

Run awful without arguments to quickly share a file

When invoked without arguments, awful (the application) starts the web server using the current directory as root path and keeps listening on port 8080. So, if you want to quickly share a file (or some files), change to the directory containing the files and execute awful. The access http://<host>:8080/<the-file-you-want>.

Awful & SXML

By default, awful uses html-tags to generate HTML for pages. Of course, it can be changed, and you can even use SXML. Here's an example by setting the page-template parameter to use SXML (see the sxml-transforms egg):

(use awful sxml-transforms)

(page-template
 (lambda (contents . rest)
   (with-output-to-string
     (lambda ()
       (SXML->HTML `(html (body ,contents)))))))

(define-page (main-page-path)
  (lambda ()
    '(p "Awful SXML example")))

Alternatively, you can create a define-sxml-page procedure which calls define-page (disabling page-template) and do the SXML transformations in the page definition body:

(use awful sxml-transforms)

(define (define-sxml-page path contents)
  (define-page path
    (lambda ()
      (with-output-to-string
        (lambda ()
          (SXML->HTML `(html (body ,(contents)))))))
    no-template: #t))

(define-sxml-page (main-page-path)
  (lambda ()
    '(p "Awful SXML example")))

Finally, you can create a define-sxml-page procedure which calls define-page and uses the SXML transformations in the page definition body for the <body> section only, using the original template to generate the <html> and <head> sections. This allows you to use the css, doctype and charset parameters in the definition of define-sxml-page.

 
(use awful sxml-transforms doctype) 

(define (define-sxml-page path contents) 
 (define-page path 
   (lambda args 
     (with-output-to-string 
       (lambda () 
         (SXML->HTML `(body ,(apply contents args))))))
   doctype: doctype-xhtml-1.0-transitional))



==== Reloading awful from Emacs

Here's a quick hack to reload awful apps from Emacs.  It can be handy
when you are developing using awful in development mode
({{--development-mode}}, or when you defined your own reload path).

<enscript highlight=elisp>
(defun awful-reload ()
  (interactive)
  (shell-command "lynx -dump http://localhost:8080/reload"))

(add-hook 'scheme-mode-hook
   #'(lambda ()
       (local-set-key "\C-cR" 'awful-reload)))

The code above defines an awful-reload procedure, which requests the /reload path (automatically defined by awful when running in development mode) using lynx. You can use whatever command line HTTP client you want. lynx is handy because of the -dump option, which can be readly displayed by Emacs in the shell command output buffer.

Here's a screenshot:

Awful badge

Here's a suggestion:

Examples

Here are some simple examples using assorted awful features.

Number guessing game

A screencast showing this example is available at http://wiki.call-cc.org/video/awful-guess.ogv

This examples shows a simple guessing game. A random number is generated on the server side and the user tries to guess it. It shows some basic ajax features.

(use awful html-tags)

(enable-ajax #t)

(define (prompt-guess)
  (<input> type: "text" id: "guess"))

(define-page (main-page-path)
  (lambda ()
    (ajax "try-guess" 'guess 'change
          (lambda ()
            (let ((guess ($ 'guess as-number))
                  (thinking (random 10)))
              (<p> (if (and guess (= guess thinking))
                       "You guessed it right!"
                       (conc "You guessed it wrong. I'm thinking " thinking ".")))))
            target: "verdict"
            arguments: '((guess . "$('#guess').val()")))
    (++ (<p> "Guess the number I'm thinking:")
        (prompt-guess)
        (<div> id: "verdict"))))

To run it, execute:

 $ awful number-guess.scm

(considering you saved the code above in a file called number-guess.scm), then access http://localhost:8080.

Sandboxed Chicken Web REPL

This example was featured in the Chicken Gazette #10.

It shows how to implement a very simple web-based Chicken REPL using a sandbox environment (see the sandbox egg documentation) for safe evaluation.

The idea is to have a web page with an input box. Users type the forms they want to evaluate and submit them to the server. The server evaluates the given forms in a sandbox environment and return the results.

Here's the commented code:

(use html-tags awful sandbox)

;; Here we define the REPL page.  It uses the session to store the
;; sandboxed environment.  By default, the `main-page-path' parameter
;; value is "/".
(define-session-page (main-page-path)
  (lambda ()

    ;; Create the sandbox environment (if it does not exist yet) and
    ;; store it in the user session.
    (unless ($session 'sandbox-env)
      ($session-set! 'sandbox-env
                     (make-safe-environment
                      parent: default-safe-environment
                      mutable: #t
                      extendable: #t)))

    ;; Here we set an ajax handler for the REPL expressions
    ;; submission.  When users change the REPL input widget (i.e., by
    ;; pressing ENTER), the contents of the text input field are
    ;; submitted and handled by the procedure given as the forth
    ;; argument to `ajax'.
    (ajax "eval" 'repl-input 'change
          (lambda ()

            ;; This binds the variable `repl-input' from the POST
            ;; method the the `repl-input' Scheme variable
            (let ((repl-input ($ 'repl-input)))

              ;; We'd better handle exceptions when trying to
              ;; evaluate the expressions given by users.
              (handle-exceptions
               exn
               ;; If something goes wrong, we print the error message
               ;; and the call chain.
               (<pre> convert-to-entities?: #t
                      (with-output-to-string
                        (lambda ()
                          (print-error-message exn)
                          (print-call-chain))))
               ;; Here we try to evaluate the given expression in the
               ;; sandboxed environment stored in the user session. 
               ;; The `repl-output' page div is updated with the result.
               (<pre> convert-to-entities?: #t
                      (safe-eval
                       (with-input-from-string repl-input read)
                       fuel: 100
                       allocation-limit: 100
                       environment: ($session 'sandbox-env))))))

          ;; Here we pass the contents of the text input to the ajax
          ;; handler.  The default HTTP method used by `ajax' is POST.
          arguments: `((repl-input . "$('#repl-input').val()"))

          ;; The output of the ajax handler updates the `repl-output'
          ;; page div.
          target: "repl-output")

    ;; Here's what is displayed to users
    (++ (<h1> "Sandboxed Chicken web REPL")
        (<input> type: "text" id: "repl-input")
        (<div> id: "repl-output")))

  ;; This tells `define-session-page' to link the page to JQuery
  use-ajax: #t)

To run the code above you'll need to install awful and sandbox:

 $ chicken-install awful sandbox

Then (considering you save the code above in a file called web-sandbox.scm), run:

 $ awful web-sandbox.scm

and access http://localhost:8080.

Here are some screenshots of the code above running on Firefox:

If you try something nasty, the sandbox will abort the evaluation and you'll get an error message and the call chain:

We can also compile the web application:

$ csc -s web-sandbox.scm
$ awful web-sandbox.so

Color chooser

Here's an example provided by Christian Kellermann demonstrating an ajax-based color chooser:

(use awful html-utils html-tags)

(define color-table
  '("f63353" "fead76" "107279" "10fabc" "1181bf" "120902" "129105"
    "131848" "13a04b" "1427ee" "14a8b1" "1532d4" "15bcf7" "16671a"
    "16c13d" "175b60" "17d583" "186fa6" "18ecc9" "1973ec"))

(enable-ajax #t)

(define (color-picker counter color)
  (<div> class: "color-box" style: (conc  "background-color: " (conc "#" color))
         (text-input (conc "change-color-" counter) value: color)))

(define (make-color-chooser counter c)
  (ajax "ajax" (conc "#change-color-" counter) 'change
        (lambda ()
          (let ((color (or ($ 'color) c))
                (counter ($ 'counter)))
            (color-picker counter color)))
        target: (conc "color-box-" counter)
        arguments: `((color . ,(conc  "$('#change-color-" counter "').val()"))
                     (counter . ,counter))
        live: #t)
  (<div> id: (conc "color-box-" counter) (color-picker counter c)))

(define-page (main-page-path)
  (lambda ()
    (concat (map (let ((counter -1))
                   (lambda (c)
                     (set! counter (add1 counter))
                     (make-color-chooser counter c)))
                 color-table))))

Here's a screenshot:

To run this example (considering you save the code above in a file called color-chooser.scm):

 $ awful color-chooser.scm

then access http://localhost:8080. You can change the colors by editing the input boxes then pressing enter.

Fortune server

This example is a fortune server in awful. It demonstrates some handy awful features like database access and ajax. You'll need the awful-sql-de-lite egg and its dependencies (which should be automatically installed by chicken-install).

Here are instructions to install and use it:

1. Install awful-sql-de-lite

  $ chicken-install awful-sql-de-lite

2. Create the fortunes database (see the code below):

  $ csi -s create-database.scm

3. Run the fortune server (see the code below):

  $ awful fortune-server.scm

Here's the code for create-database.scm which creates and populates the fortune database:

(use sql-de-lite posix)

(define fortunes
  '(("Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it."
     "Brian Kernighan")
    ("In order to understand recursion, one must first understand recursion.")
    ("If debugging is the process of removing software bugs, then programming must be the process of putting them in."
     "Edsger Dijkstra")
    ("Controlling complexity is the essence of computer programming."
     "Brian Kernigan")
    ("The function of good software is to make the complex appear to be simple."
     "Grady Booch")
    ("That's the thing about people who think they hate computers.  What they really hate is lousy programmers."
     "Larry Niven")
    ("First learn computer science and all the theory.  Next develop a programming style.  Then forget all that and just hack."
    "George Carrette")
    ("To iterate is human, to recurse divine."
    "L. Peter Deutsch")
    ("The best thing about a boolean is even if you are wrong, you are only off by a bit.")
    ("Optimism is an occupational hazard of programming; feedback is the treatment."
     "Kent Beck")
    ("Simplicity is prerequisite for reliability."
     "Edsger W. Dijkstra")
    ("Simplicity is the ultimate sophistication."
     "Leonardo da Vinci")
    ("The unavoidable price of reliability is simplicity."
     "C.A.R. Hoare")
    ("The ability to simplify means to eliminate the unnecessary so that the necessary may speak."
     "Hans Hoffmann")
    ("Simplicity is hard to build, easy to use, and hard to charge for. Complexity is easy to build, hard to use, and easy to charge for."
     "Chris Sacca")))

(delete-file* "fortunes.db")

(let ((db (open-database "fortunes.db")))
  (exec (sql db "create table fortunes(sentence text, author text)"))
  (for-each (lambda (fortune)
              (let* ((sentence (car fortune))
                     (author (cdr fortune))
                     (statement
                      (string-append
                       "insert into fortunes (sentence, author) values (?,?)")))
                (exec (sql db statement)
                      sentence
                      (if (null? author) "" (car author)))))
            fortunes)
  (close-database db))

Here's the code for the fortune server:

(use awful html-tags awful-sql-de-lite)

(enable-db)
(db-credentials "fortunes.db")

(define (random-fortune)
  (car ($db "select sentence, author from fortunes order by random() limit 1")))

(define-page (main-page-path)
  (lambda ()
    (ajax "new-fortune" 'new-fortune 'click
          (lambda ()
            (let ((fortune (random-fortune)))
              `((sentence . ,(car fortune))
                (author . ,(cadr fortune)))))
          update-targets: #t)

    (<div> id: "content"
           (<div> id: "sentence" "Click the button below to get a new fortune")
           (<div> id: "author")
           (<button> id: "new-fortune" "New fortune")))

  css: "fortune.css"
  use-ajax: #t
  charset: "utf-8")

The contents of the fortune.css file are:

 body
 { font-family: arial, verdana, sans-serif;
 }
 
 #sentence
 { width: 20em;
   background-color: #DEE7EC;
   padding: 6px;
   min-height: 7em;
 }
 
 #author
 { width: 20em;
   min-height: 2em;
   padding: 6px;
   background-color: #eee;
 }

Here's a screenshot:

The name

Awful doesn't mean anything special. It's just awful. But folks on freenode's #chicken (IRC) have suggested some acronym expansions:

Acknowledgements (IRC nicknames on freenode's #chicken):

FAQ (aka Fakely Asked Questions)

How does awful bind URIs to files/directories on the filesystem and procedures?

Explanation by example:

When a procedure is bound to a path a (like (define-page "a" (lambda ...))) and the request is made to a/, the awful behavior is the following:

Known bugs and limitations

License

BSD

Version history

version 0.31
version 0.30
version 0.29
version 0.28
version 0.27
version 0.26
version 0.25
version 0.24
version 0.23
version 0.22
version 0.21
version 0.20
version 0.19
version 0.18
version 0.17
version 0.16
version 0.15
version 0.14
version 0.13
version 0.12
version 0.11
version 0.10
version 0.9
version 0.8
version 0.7
version 0.6
version 0.5
version 0.4
version 0.3
version 0.2
version 0.1