From: Alexandre Terrasa Date: Mon, 16 May 2016 22:50:59 +0000 (-0400) Subject: lib/popcorn: introduce mongodb example X-Git-Url: http://nitlanguage.org lib/popcorn: introduce mongodb example Signed-off-by: Alexandre Terrasa --- diff --git a/lib/popcorn/examples/mongodb/example_mongodb.nit b/lib/popcorn/examples/mongodb/example_mongodb.nit new file mode 100644 index 0000000..4f89f5b --- /dev/null +++ b/lib/popcorn/examples/mongodb/example_mongodb.nit @@ -0,0 +1,66 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2014-2015 Alexandre Terrasa +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import popcorn +import mongodb +import template + +class UserList + super Handler + + var db: MongoDb + + redef fun get(req, res) do + var users = db.collection("users").find_all(new JsonObject) + + var tpl = new Template + tpl.add """ +

Users

+ +

Add a new user

+
+ + + +
+ +

All users

+ """ + for user in users do + tpl.add """ + + + """ + end + tpl.add "
{{{user["login"] or else "null"}}}{{{user["password"] or else "null"}}}
" + res.html(tpl) + end + + redef fun post(req, res) do + var json = new JsonObject + json["login"] = req.post_args["login"] + json["password"] = req.post_args["password"] + db.collection("users").insert(json) + res.redirect("/") + end +end + +var mongo = new MongoClient("mongodb://localhost:27017/") +var db = mongo.database("mongo_example") + +var app = new App +app.use("/", new UserList(db)) +app.listen("localhost", 3000)