-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.py
219 lines (196 loc) · 5.7 KB
/
app.py
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
# coding=utf-8
from flask import Flask, session, render_template, request
from ldap_auth import check_credentials
from vmware import last_inserted_datastore_space, report_datastore_space, get_datastore_usage
import json
#---- Configuración de la aplicación -------------------------------------------
# Alias base de la aplicación Flask
FLASK_ALIAS = "/datastores"
# Nombre del sitio/organización
FLASK_SITE = "Linuxito.com"
# Clave de cifrado de cookies
# Something from /dev/urandom
#FreeBSD: cat /dev/urandom | env LANG=C tr -dc '[:alnum:]' | head -c 32 ; echo
#Linux: cat /dev/urandom | LANG=C tr -dc '[:alnum:]' | head -c 32 ; echo
FLASK_SECRET = "****"
#-------------------------------------------------------------------------------
application = Flask(__name__,static_url_path="%s/static" % FLASK_ALIAS)
application.secret_key = FLASK_SECRET
@application.before_request
def session_management():
# Make the session persistent until it is cleared
session.permanent = True
@application.route("%s/login.html" % FLASK_ALIAS)
def login_html():
return render_template("login.html", site=FLASK_SITE)
@application.route("%s/login" % FLASK_ALIAS, methods=['POST'])
def login():
# Recover POST data
try:
_user = request.form['user']
_pass = request.form['pass']
except:
# Wrong username or password
response = {}
response['cn'] = 'unknown'
response['msg'] = 'Usuario o contraseña incorrectos'
return json.dumps(response)
# Check credentials
response = check_credentials(_user,_pass)
# Set username (session wide)
session["user"] = json.loads(response)["cn"]
session["auth"] = 1
return response
@application.route("%s/logout" % FLASK_ALIAS)
def logout():
# Unset username
session.clear()
session["user"] = "unknown"
session["auth"] = 0
return index()
@application.route("%s/" % FLASK_ALIAS)
@application.route("%s/dashboard" % FLASK_ALIAS)
def index():
# Recover username from session
try:
user = session["user"]
auth = session["auth"]
except:
user = "unknown"
auth = 0
if auth == 0:
return login_html()
else:
return render_template("index.html", user=user, site=FLASK_SITE)
@application.route("%s/list_datastore_space" % FLASK_ALIAS)
def vmware_list():
# Check session
try:
auth = session["auth"]
except:
print("You shall not pass")
auth = 0
if auth == 0:
return "You shall not pass"
else:
return json.dumps(last_inserted_datastore_space())
@application.route("%s/datastore_report" % FLASK_ALIAS, methods=['GET', 'POST'])
def vmware_report_template():
# Check session
try:
auth = session["auth"]
user = session["user"]
except:
print("You shall not pass")
auth = 0
if auth == 0:
return "You shall not pass"
else:
# Recover GET/POST data
ds = "test"
if request.method == 'POST':
try:
# try to recover POST data
ds = request.form['ds']
except:
print("Missing ds param")
return "POST error"
else:
try:
# try to recover GET data instead
ds = request.args.get('ds', '')
except:
print("Missing ds param")
return "GET error"
# Return the report for ds
return render_template("report.html", ds=ds, user=user, site=FLASK_SITE)
@application.route("%s/report_datastore_space" % FLASK_ALIAS, methods=['GET', 'POST'])
def vmware_report_json():
# Check session
try:
auth = session["auth"]
except:
print("You shall not pass")
auth = 0
if auth == 0:
return "You shall not pass"
else:
# Recover GET/POST data
ds = "test"
if request.method == 'POST':
try:
# try to recover POST data
ds = request.form['ds']
except:
print("Missing ds param")
return "POST error"
else:
try:
# try to recover GET data instead
ds = request.args.get('ds', '')
except:
print("Missing ds param")
return "GET error"
# Return the report for ds
return report_datastore_space(ds)
@application.route("%s/datastore_detail" % FLASK_ALIAS, methods=['GET', 'POST'])
def vmware_detail_template():
# Check session
try:
auth = session["auth"]
user = session["user"]
except:
print("You shall not pass")
auth = 0
if auth == 0:
return "You shall not pass"
else:
# Recover GET/POST data
ds = "test"
if request.method == 'POST':
try:
# try to recover POST data
ds = request.form['ds']
except:
print("Missing ds param")
return "POST error"
else:
try:
# try to recover GET data instead
ds = request.args.get('ds', '')
except:
print("Missing ds param")
return "GET error"
# Return the report for ds
return render_template("detail.html", ds=ds, user=user, site=FLASK_SITE)
@application.route("%s/show_datastore_detail" % FLASK_ALIAS, methods=['GET', 'POST'])
def vmware_detail_json():
# Check session
try:
auth = session["auth"]
except:
print("You shall not pass")
auth = 0
if auth == 0:
return "You shall not pass"
else:
# Recover GET/POST data
ds = "test"
if request.method == 'POST':
try:
# try to recover POST data
ds = request.form['ds']
except:
print("Missing ds param")
return "POST error"
else:
try:
# try to recover GET data instead
ds = request.args.get('ds', '')
except:
print("Missing ds param")
return "GET error"
# Return the report for ds
return get_datastore_usage(ds)
if __name__ == "__main__":
application.run()