----- isHidden: false menupriority: 1 kind: article created_at: 2012-01-15T19:14:40+02:00 title: Haskell web programming subtitle: A Yesod tutorial author_name: Yann Esposito author_uri: yannesposito.com tags: - yesod - haskell - programming - web macros: html5: 'html5' html: 'html' http: 'http' url: 'url' css: 'css' ----- blogimage("flying_neo.jpg","Neo Flying at warp speed") begindiv(intro) _update_: updated for yesod 0.10 %tldr A simple yesod tutorial. Yesod is a Haskell web framework. You shouldn't need to know Haskell. >
Table of content
> > * Table of Content (generated) > {:toc} enddiv Why Haskell? blogimage("haskell-benchmark.png","Impressive Haskell Benchmark") Its efficiency (see [Snap Benchmark][snapbench] _&_ [Warp Benchmark][warpbench][^benchmarkdigression]). Haskell is an order of magnitude faster than interpreted languages like [Ruby][haskellvsruby] and [Python][haskellvspython][^speeddigression]. Haskell is a high level language and make it harder to shoot you in the foot than `C`, `C++` or `Java` for example. One of the best property of Haskell being: > "If your program compile it will be > very close to what the programmer intended". Haskell web frameworks handle parallel tasks perfectly. For example even better than node.js[^nodejstroll]. leftblogimage("thousands_smiths.jpg","Thousands of Agent Smith") From the pure technical point of view, Haskell seems to be the perfect web development tool. Weaknesses of Haskell certainly won't be technical: - Hard to grasp Haskell - Hard to find a Haskell programmer - The Haskell community is smaller than the community for `/.*/` - There is no [heroku](http://heroku.com) for Haskell (even if [Greg Weber did it](http://www.yesodweb.com/blog/2011/07/haskell-on-heroku), it was more a workaround). I won't say these are not important drawbacks. But, with Haskell your web application will have both properties to absorb an impressive number of parallel request securely and to adapt to change. Actually there are three main Haskell web frameworks: 1. [Happstack](http://happstack.com) 2. [Snap](http://snapframework.com) 3. [Yesod](http://yesodweb.com) I don't think there is a real winner between these three framework. The choice I made for yesod is highly subjective. I just lurked a bit and tried some tutorials. I had the feeling yesod make a better job at helping newcomers. Furthermore, apparently the yesod team seems the most active. Of course I might be wrong since it is a matter of feeling. blogimage("owl_draw.png","1. Draw some circles. 2. Draw the rest of the fucking owl") Why did I write this article? The yesod documentation and particularly the book are excellent. But I missed an intermediate tutorial. This tutorial won't explain all details. I tried to give a step by step of how to start from a five minute tutorial to an almost production ready architecture. Furthermore explaining something to others is a great way to learn. If you are used to Haskell and Yesod, this tutorial won't learn you much. If you are completely new to Haskell and Yesod it might hopefully helps you. Also if you find yourself too confused by the syntax, it might helps to read this [article](http://blog.ezyang.com/2011/11/how-to-read-haskell/) During this tutorial you'll install, initialize and configure your first yesod project. Then there is a very minimal 5 minutes yesod tutorial to heat up and verify the awesomeness of yesod. Then we will clean up the 5 minutes tutorial to use some "best practices". Finally there will be a more standard real world example; a minimal blog system. [warpbench]: http://www.yesodweb.com/blog/2011/03/preliminary-warp-cross-language-benchmarks [snapbench]: http://snapframework.com/blog/2010/11/17/snap-0.3-benchmarks [^benchmarkdigression]: One can argue these benchmark contains many problems. But the benchmarks are just here to give an order of idea. Mainly Haskell is very fast. [^speeddigression]: Generally _high level_ Haskell is slower than C, but _low level_ Haskell is equivalent to C speed. It means that even if you can easily link C code with Haskell, this is not needed to reach the same speed. Furthermore writing a web service in C/C++ seems to be a very bad idea. You can take a look at a [discussion on HN about this](http://news.ycombinator.com/item?id=3449388). [^nodejstroll]: If you are curious, you can search about [the Fibonacci node.js troll](http://www.unlimitednovelty.com/2011/10/nodejs-has-jumped-shark.html). Without any tweaking, [Haskell handled this problem perfectly](http://mathias-biilmann.net/posts/2011/10/is-haskell-the-cure). I tested it myself using yesod instead of Snap. [haskellvsruby]: http://shootout.alioth.debian.org/u64q/benchmark.php?test=all&lang=ghc&lang2=yarv [haskellvspython]: http://shootout.alioth.debian.org/u64q/benchmark.php?test=all&lang=ghc&lang2=python3 ## Before the real start ### Install The recommended way to install [Haskell][haskell] is to download the [Haskell Platform][haskellplatform]. [haskell]: http://www.haskell.org [haskellplatform]: http://www.haskell.org/platform Once done, you need to install yesod. Open a terminal session and do: ~ cabal update ~ cabal install yesod cabal-dev There are few steps but it should take some time to finish. ### Initialize You are now ready to initialize your first yesod project. Open a terminal and type: ~ yesod init Enter your name, choose `yosog` for the project name and enter `Yosog` for the name of the Foundation. Finally choose `sqlite`. Now, start the development cycle: ~ cd yosog ~ cabal-dev install && yesod --dev devel This will compile the entire project. Be patient it could take a while the first time. Once finished a server is launched and you could visit it by clicking this link: [`http://localhost:3000`](http://localhost:3000) Congratulation! Yesod works!
Note: if something is messed up use the following command line inside the project directory. \rm -rf dist/* ; cabal-dev install && yesod --dev devel
Until the end of the tutorial, use another terminal and let this one open in a corner to see what occurs. ### Configure git > Of course this step is not mandatory for the tutorial > but it is a good practice. Copy this `.gitignore` file into the `yosog` folder. cabal-dev dist .static-cache static/tmp *.sqlite3 Then initialize your git repository: ~ git init . ~ git add . ~ git commit -a -m "Initial yesod commit" We are almost ready to start. ### Some last minute words Up until here, we have a directory containing a bunch of files and a local web server listening the port 3000. If we modify a file inside this directory, yesod should try to recompile as fast as possible the site. Instead of explaining the role of every file, let's focus only on the important files/directories for this tutorial: 1. `config/routes` 2. `Handler/` 3. `templates/` 4. `config/models` Obviously: | `config/routes` | is where you'll configure the map %url → Code. | | `Handler/` | contains the files that will contain the code called when a %url is accessed. | | `templates/` | contains %html, js and %css templates. | | `config/models` | is where you'll configure the persistent objects (database tables). | During this tutorial we'll modify other files as well, but we won't explore them in detail. Also note, shell commands are executed in the root directory of your project instead specified otherwise. We are now ready to start! ## Echo To verify the quality of the security of the yesod framework, let's make a minimal echo application. > Goal: > > Make a server that when accessed `/echo/[some text]` should return a web page containing "some text" inside an `h1` bloc. In a first time, we must declare the %url of the form `/echo/...` are meaningful. Let's take a look at the file `config/routes`:
/static StaticR Static getStatic
/auth   AuthR   Auth   getAuth

/favicon.ico FaviconR GET
/robots.txt RobotsR GET

/ HomeR GET
We want to add a route of the form `/echo/[anything]` somehow and do some action with this. Add the following:
/echo/#String EchoR GET
This line contains three elements: the %url pattern, a handler name, an %http method. I am not particularly fan of the big R notation but this is the standard convention. If you save `config/routes`, you should see your terminal in which you launched `yesod devel` activate and certainly displaying an error message.
Application.hs:31:1: Not in scope: `getEchoR'
Why? Simply because we didn't written the code for the handler `EchoR`. Edit the file `Handler/Home.hs` and append this: getEchoR :: String -> Handler RepHtml getEchoR theText = do defaultLayout $ do [whamlet|

#{theText}|] Don't worry if you find all of this a bit cryptic. In short it just declare a function named `getEchoR` with one argument (`theText`) of type String. When this function is called, it return a `Handler RepHtml` whatever it is. But mainly this will encapsulate our expected result inside an %html text. After saving the file, you should see yesod recompile the application. When the compilation is finished you'll see the message: `Starting devel application`. Now you can visit: [`http://localhost:3000/echo/Yesod%20rocks!`](http://localhost:3000/echo/Yesod%20rocks!) TADA! It works! ### Bulletproof? blogimage("neo_bullet_proof.jpg","Neo stops a myriad of bullets") Even this extremely minimal web application has some impressive properties. For exemple, imagine an attacker entering this %url: [`http://localhost:3000/echo/I'm " %> The special characters are protected for us. A malicious user could not hide some bad script inside. This behavior is a direct consequence of _type safety_. The %url string is put inside a %url type. Then the interesting part in the %url is put inside a String type. To pass from %url type to String type some transformation are made. For example, replace all "`%20`" by space characters. Then to show the String inside an %html document, the string is put inside an %html type. Some transformations occurs like replace "<" by "`<`". Thanks to yesod, this tedious job is done for us. "http://localhost:3000/echo/some%20text" :: URL ↓ "some text" :: String ↓ "some text <a>" :: Html Yesod is not only fast, it helps us to remain secure. It protects us from many common errors in other paradigms. Yes, I am looking at you PHP! ### Cleaning up Even this very minimal example should be enhanced. We will clean up many details: - Use a general %css (cleaner than the empty by default) - Dispatch handler code into different files - Use `Data.Text` instead of `String` - Put our "views"[^explainviewwidget] inside the `template` directory [^explainviewwidget]: By view I mean yesod widget's hamlet, lucius and julius files. #### Use a better %css It is nice to note, the default template is based on %html5 boilerplate. Let's change the default %css. Add a file named `default-layout.lucius` inside the `templates/` directory containing: body { font-family: Helvetica, sans-serif; font-size: 18px; } #main { padding: 1em; border: #CCC solid 2px; border-radius: 5px; margin: 1em; width: 37em; margin: 1em auto; background: #F2F2F2; line-height: 1.5em; color: #333; } .required { margin: 1em 0; } .optional { margin: 1em 0; } label { width: 8em; display: inline-block; } input, textarea { background: #FAFAFA} textarea { width: 27em; height: 9em;} ul { list-style: square; } a { color: #A56; } a:hover { color: #C58; } a:active { color: #C58; } a:visited { color: #943; } Personally I would prefer if such a minimal %css was put with the scaffolding tool. I am sure somebody already made such a minimal %css which give the impression the browser handle correctly %html without any style applied to it. But I digress. #### Separate Handlers Generally you don't want to have all your code inside a unique file. This is why we will separate our handlers. In a first time create a new file `Handler/Echo.hs` containing: module Handler.Echo where import Import getEchoR :: String -> Handler RepHtml getEchoR theText = do defaultLayout $ do [whamlet|

#{theText}|] Do not forget to remove the getEchoR function inside `Handler/Home.hs`. We must declare this new file into`yosog.cabal`. Just after `Handler.Home`, add:
    Handler.Echo
We must also declare this new Handler module inside `Application.hs`. Just after the "`import Handler.Home`", add: import Handler.Echo This is it. ps: I am sure not so far in the future we could simply write `yesod add-handler Echo` to declare it and create a new handler file. #### `Data.Text` It is a good practice to use `Data.Text` instead of `String`. To declare it, add this import directive to `Foundation.hs` (just after the last one): import Data.Text We have to modify `config/routes` and our handler accordingly. Replace `#String` by `#Text` in `config/routes`:
/echo/#Text EchoR GET
And do the same in `Handler/Echo.hs`: module Handler.Echo where import Import getEchoR :: Text -> Handler RepHtml getEchoR theText = do defaultLayout $ do [whamlet|

#{theText}|] #### Use templates Some %html (more precisely hamlet) is written directly inside our handler. We should put this part inside another file. Create the new file `templates/echo.hamlet` containing:

#{theText} and modify the handler `Handler/Echo.hs`: getEchoR :: Text -> Handler RepHtml getEchoR theText = do defaultLayout $ do $(widgetFile "echo") At this point, our web application is structured between different files. Handler are grouped, we use `Data.Text` and our views are in templates. It is the time to make a slightly more complex example. ## Mirror leftblogimage("mirror.jpg","Neo touching a mirror") Let's make another minimal application. You should see a form containing a text field and a validation button. When you enter some text (for example "Jormungad") and validate, the next page present you the content and its reverse appended to it. In our example it should return "JormungaddagnumroJ". First, add a new route:
/mirror MirrorR GET POST
This time the path `/mirror` will accept GET and POST requests. Add the corresponding new Handler file: module Handler.Mirror where import Import import qualified Data.Text as T getMirrorR :: Handler RepHtml getMirrorR = do defaultLayout $ do $(widgetFile "mirror") postMirrorR :: Handler RepHtml postMirrorR = do postedText <- runInputPost $ ireq textField "content" defaultLayout $ do $(widgetFile "posted") Don't forget to declare it inside `yosog.cabal` and `Application.hs`. We will need to use the `reverse` function provided by `Data.Text` which explain the additional import. The only new thing here is the line that get the POST parameter named "content". If you want to know more detail about it and form in general you can take look at [the yesod book](http://www.yesodweb.com/book/forms). Create the two corresponding templates:

Enter your text

You've just posted

#{postedText}#{T.reverse postedText}


Get back And that is all. This time, we won't need to clean up. We may have used another way to generate the form but we'll see this in the next section. Just try it by [clicking here](http://localhost:3000/mirror). Also you can try to enter strange values. Like before, your application is quite secure. ## A Blog We saw how to retrieve %http parameters. It is the time to save things into a database. As before add some routes inside `config/routes`:

/blog               BlogR       GET POST
/blog/#ArticleId    ArticleR    GET
This example will be very minimal: - `GET` on `/blog` should display the list of articles. - `POST` on `/blog` should create a new article - `GET` on `/blog/
` should display the content of the article. First we declare another model object. Append the following content to `config/models`:
Article
    title   Text
    content Html 
    deriving
As `Html` is not an instance of `Read`, `Show` and `Eq`, we had to add the `deriving` line. If you forget it, there will be an error. After the route and the model, we write the handler. First, declare a new Handler module. Add `import Handler.Blog` inside `Application.hs` and add it into `yosog.cabal`. Let's write the content of `Handler/Blog.hs`. We start by declaring the module and by importing some block necessary to handle Html in forms. module Handler.Blog ( getBlogR , postBlogR , getArticleR ) where import Import -- to use Html into forms import Yesod.Form.Nic (YesodNic, nicHtmlField) instance YesodNic App Remark: it is a best practice to add the YesodNic instance inside `Foundation.hs`. I put this definition here to make things easier but you should see a warning about this orphan instance. To put the include inside Foundation.hs is left as an exercice to the reader. _Hint: Do not forget to put `YesodNic` and `nicHtmlField` inside the exported objects of the module._ entryForm :: Form Article entryForm = renderDivs $ Article <$> areq textField "Title" Nothing <*> areq nicHtmlField "Content" Nothing This function defines a form for adding a new article. Don't pay attention to all the syntax. If you are curious you can take a look at Applicative Functor. You just have to remember `areq` is for required form input. Its arguments being: `areq type label default_value`. -- The view showing the list of articles getBlogR :: Handler RepHtml getBlogR = do -- Get the list of articles inside the database. articles <- runDB $ selectList [] [Desc ArticleTitle] -- We'll need the two "objects": articleWidget and enctype -- to construct the form (see templates/articles.hamlet). (articleWidget, enctype) <- generateFormPost entryForm defaultLayout $ do $(widgetFile "articles") This handler should display a list of articles. We get the list from the DB and we construct the form. Just take a look at the corresponding template:

Articles $if null articles -- Show a standard message if there is no article

There are no articles in the blog $else -- Show the list of articles