README.md

# lmug

[![Build Status][gh-actions-badge]][gh-actions]
[![LFE Versions][lfe-badge]][lfe]
[![Erlang Versions][erlang-badge]][versions]
[![Tags][github-tags-badge]][github-tags]

*LFE HTTP Server Abstraction and Web Application Middleware Infrastructure*

[![Project Logo][logo]][logo-large]

#### Contents

* [Introduction](#introduction-)
  * [Why?](#why-)
* [Installation](#installation-)
* [Documentation](#documentation-)
* [Usage](#usage-)
  * [Simple Example](#simple-example-)
  * [Applications](#applications-)
* [More Details](#more-details-)
* [The Name?](#the-name-)

## Introduction [↟](#contents)

lmug is an LFE web applications library inspired by
[Clojure's Ring](https://github.com/ring-clojure/ring).

lmug allows web applications to be constructed of modular components
that can be shared among a variety of applications -- regardless of
which web server, web framework, or HTTP client is used. This is possible by providing
standard abstractions for:

* HTTP requests and responses for Erlang/LFE/BEAM HTTP servers and clients - these are provided by and defined in the [LFE HTTP library](https://github.com/lfe-http/http)
* Functions that transform a request into a response (handlers)
* Higher order funtions that take transformers (handlers) as arguments and return a new, wrapped transformer (these are middleware)
* Functions that start a server/listener and pass a handler, potentially handler chain of middleware (adapters)

For an overview, be sure to read the [core concepts document](./docs/core-concepts.md). For more details, see the [lmug specification](docs/lmug-spec.md).

### Why? [↟](#contents)

Using lmug as the basis for your web application has a number of
benefits:

* Write your application using LFE functions and maps
* Take advantage of pre-written middleware
* More easily deploy your application across different environmentsu
* Swap out the underlying HTTP server without changing any of your code

If all goes well, lmug will be the de facto standard, the base upon which one will write web applications in LFE. Higher level frameworks could then use lmug as its HTTP foundation.

## Installation [↟](#contents)

Just add it to your ``rebar.config`` deps:

```erlang
{deps, [
    ...
    {lmug, "0.1.0}
  ]}.
```

And then do the usual:

```bash
rebar3 compile
```

## Documentation [↟](#contents)

* The [lmug spec](docs/SPEC.md) - based on the Clojure [Ring spec](https://github.com/ring-clojure/ring/blob/master/SPEC)
* The [lmug API Reference](http://lfe-mug.github.io/lmug/current/api)

## Usage [↟](#contents)

The usage examples below are done from the REPL:

```bash
make repl
```

### Simple Example [↟](#contents)

Ordinarily you would use lmug middleware in a project that was running a
supported web server and which included the lmug adaptor for that web server.
Below is an example showing something similar to what you would have in an
lmug web application: it demonstrates the use of multiple middleware modules (the
no-op/identify middleware is used as filler, to help demonstrate more middleware).
If you are familiar with Clojure's Ring library, then this will look *very*
familiar (though with a Lisp-2 flavour ...):

If you'd like to test the logging middlware:

``` lisp
lfe> (logjam:set-dev-config)
lfe> (application:ensure_all_started 'logjam)
```

```lisp
lfe> (set app (clj:-> (lmug:app)
                      (lmug-mw-request-id:wrap)
                      (lmug-mw-content-type:wrap)
                      (lmug-mw-status-body:wrap)
                      (lmug-mw-log-request:wrap #m(log-level notice))))
```

Then, to run it, simply do the following:

```lisp
lfe> (set req
      (http.request:new
       'get
       #"http://alice:sekr1t@localhost/tune.mp3"
       #""
       #m(#"user-agent" #"LFE REPL")))
lfe> (set req (mupd req 'remote-addr #"http://client.host"))
lfe> (funcall app req)
#M(status 200
   headers
     #M(#"Content-Type" #"audio/mpeg"
        #"X-Request-ID" #"116765989140096673677588780992994213888")
   body #"200")
```

### Applications [↟](#contents)

The example usage above shows how one can chain together, but it doesn't
illustrate real-world usage. The lmug library is meant to be used in
conjunction with other lmug libraries (e.g., middleware for converting the
body of a response to JSON) and web server adaptors (which allow you to write
a single application that is runnable on any supported web server).

The simplest lmug adaptor is for the Erlang OTP http server. Here's an
example of an lmug application running on OTP inets/httpd:

```lisp
TBD
```

### More Details [↟](#contents)

For a closer look at LFE examples, be sure read the [usage details doc](./doc/usage-details).

## The Name? [↟](#contents)

What's with the name? Well, there was lfest ... the web app routing
party. What would be at an LFE routing party? Lots of mugs, I guess.
Full of tastey, hot LFE.

Really, though, a mug is topologically equivalent to a ring.

An lmug even more so.


[//]: ---Named-Links---

[logo]: resources/images/mugring-small-grey-3.png
[logo-large]: resources/images/mugring-large-grey-3.png
[gh-actions-badge]: https://github.com/lfe-mug/lmug/workflows/ci%2Fcd/badge.svg
[gh-actions]: https://github.com/lfe-mug/lmug/actions
[lfe]: https://github.com/lfe/lfe
[lfe-badge]: https://img.shields.io/badge/lfe-2.1-blue.svg
[erlang-badge]: https://img.shields.io/badge/erlang-21%20to%2026-blue.svg
[versions]: https://github.com/lfe-mug/lmug/blob/master/.github/workflows/cicd.yml
[github-tags]: https://github.com/lfe-mug/lmug/tags
[github-tags-badge]: https://img.shields.io/github/tag/lfe-mug/lmug.svg