d5bab545b186498d75845a7e3ad66fe3f0705bc3
[nit.git] / contrib / benitlux / src / benitlux_web.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2014 Alexis Laferrière <alexis.laf@xymus.net>
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 # Web server for Benitlux
18 module benitlux_web
19
20 import benitlux_model
21 import benitlux_view
22 import benitlux_controller
23 import benitlux_restful
24
25 # Listening interface
26 fun iface: String do return "localhost:8080"
27
28 # Sqlite3 database
29 var db_path = "benitlux_sherbrooke.db"
30 var db = new BenitluxDB.open(db_path)
31 var db_error = db.error
32 if db_error != null then
33 print_error db_error
34 exit 1
35 end
36
37 # Setup routes
38 var vh = new VirtualHost(iface)
39 vh.routes.add new Route("/rest/", new BenitluxRESTAction(db))
40 vh.routes.add new Route("/push/", new BenitluxPushAction(db))
41 vh.routes.add new Route(null, new BenitluxSubscriptionAction(db))
42
43 var factory = new HttpFactory.and_libevent
44 factory.config.virtual_hosts.add vh
45
46 print "Launching server on http://{iface}/"
47 factory.run
48
49 db.close