summaryrefslogtreecommitdiffstats
path: root/index.py
blob: 367b5a52f6cebb103c6696c36308d81b9cef619b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python

from web import template, form, application, ctx
from socket import gethostbyaddr

urls = (
    '/', 'index',
    '/neu.*', 'new',
    '/new', 'new',
    '/help/spam.*', 'spam',
)

render = template.render('templates/', base='layout');

create_form = form.Form(
    form.Textbox('name',
                 form.notnull,
                 description = 'Name of your list'),
    form.Textbox('email',
                 form.notnull,
                 form.regexp('.*fu-berlin\.de', 'E-mail address should end with fu-berlin.de'),
                 description = 'Your E-mail address'),
    )

class index:
    def GET(self):
        return render.index()

class spam:
    def GET(self):
        return render.spam()

class new:
    def GET(self):
        form = create_form()
        user = {'ip': ctx.ip, 'host': gethostbyaddr(ctx.ip)[0]}
        return render.new(form, user)

    def POST(self):
        form  = create_form()
        user = {'ip': ctx.ip, 'host': gethostbyaddr(ctx.ip)[0]}
        if not form.validates():
            return render.new(form, user)
        else:
            return "Done."


if __name__ == "__main__":
    app = application(urls, globals(), autoreload=False)
    app.run()