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
51
52
53
54
55
56
57
58
59
60
|
#!/usr/bin/env python
# tui - Tor web UI
# by Arturo Filasto' <hellais@torproject.org>
#
import sys, time, os
from daemon import Daemon
import web
from tui import config
import tui.controllers
from tui.utils import session
from tui.view import render
# This is the main structure of URLs
urls = (
'/', 'tui.controllers.main.index',
# '/config/(tor|router)', 'tui.controllers.main.config',
'/network', 'tui.controllers.network.main',
'/network/firewall', 'tui.controllers.network.firewall',
'/network/wireless', 'tui.controllers.network.wireless',
'/network/wired', 'tui.controllers.network.wired',
'/network/status', 'tui.controllers.network.status',
'/tor', 'tui.controllers.tor.status',
'/tor/config', 'tui.controllers.tor.torrc',
'/logout', 'tui.controllers.main.logout'
)
# '/wizard/([0-9a-f]{1,2})?', 'tui.controllers.wizard.step',
# '/status', 'tui.controllers.status')
app = web.application(urls, globals())
# add session management to the app
session.add_session_to_app(app)
app.internalerror = web.debugerror
class TorWebDaemon(Daemon):
def run(self):
app.run()
DEBUG = False
if __name__ == "__main__":
if DEBUG:
app.run()
service = TorWebDaemon('/tmp/tui.pid')
if len(sys.argv) == 2:
if 'start' == sys.argv[1]:
sys.argv[1] = '8080'
service.start()
elif 'stop' == sys.argv[1]:
service.stop()
elif 'restart' == sys.argv[1]:
service.restart()
else:
print "Unknown command"
sys.exit(2)
sys.exit(0)
else:
print "starting daemon..."
service.start()
|