facce994fa836ebe0774f6bae6eaa97e1c138d6d
[nit.git] / lib / popcorn / examples / routing / example_router.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2016 Alexandre Terrasa <alexandre@moz-code.org>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 import popcorn
18
19 class AppHome
20 super Handler
21
22 redef fun get(req, res) do res.send "Site Home"
23 end
24
25 class UserLogger
26 super Handler
27
28 redef fun all(req, res) do print "User logged"
29 end
30
31 class UserHomepage
32 super Handler
33
34 redef fun get(req, res) do res.send "User Home"
35 end
36
37 class UserProfile
38 super Handler
39
40 redef fun get(req, res) do res.send "User Profile"
41 end
42
43 var user_router = new Router
44 user_router.use("/*", new UserLogger)
45 user_router.use("/", new UserHomepage)
46 user_router.use("/profile", new UserProfile)
47
48 var app = new App
49 app.use("/", new AppHome)
50 app.use("/user", user_router)
51 app.listen("localhost", 3000)