Skip to content

Commit 4180fe8

Browse files
author
Catherine Hong
committed
Added options to change vhost pools in Pony
1 parent e1a7522 commit 4180fe8

File tree

4 files changed

+46
-37
lines changed

4 files changed

+46
-37
lines changed

scriptspony/controllers/root.py

+23-18
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ def index(self, locker=None, sudo=False, **kwargs):
5555

5656
olocker = locker
5757
hosts = None
58+
pools = None
5859
user = auth.current_user()
5960
https = auth.is_https()
6061
# Find or create the associated user info object.
@@ -82,7 +83,6 @@ def index(self, locker=None, sudo=False, **kwargs):
8283
hosts = vhosts.list_vhosts(locker)
8384
hosts.sort(key=lambda k: k[0])
8485
pools = vhosts.list_pools()
85-
hosts = [(host,aliases,path,pools.get(ip,ip)) for host,aliases,path,ip in hosts]
8686
except auth.AuthError as e:
8787
flash(e.message)
8888
# User has been deauthorized from this locker
@@ -100,7 +100,7 @@ def index(self, locker=None, sudo=False, **kwargs):
100100
user_info.lockers.sort()
101101
DBSession.add(user_info)
102102
flash('You can administer the "%s" locker.' % locker)
103-
return dict(hosts=hosts, locker=locker, user_info=user_info, https=https)
103+
return dict(hosts=hosts, locker=locker, user_info=user_info, https=https, pools=pools)
104104

105105
@expose("scriptspony.templates.edit")
106106
def edit(self, locker, hostname, pool=None, path=None, token=None, alias="", **kwargs):
@@ -120,7 +120,6 @@ def edit(self, locker, hostname, pool=None, path=None, token=None, alias="", **k
120120
else:
121121
flash("Host '%s' reconfigured." % hostname)
122122
redirect("/index/" + locker)
123-
_, aliases, pool = vhosts.get_vhost_info(locker, hostname)
124123
else:
125124
if alias:
126125
if token != auth.token():
@@ -133,15 +132,23 @@ def edit(self, locker, hostname, pool=None, path=None, token=None, alias="", **k
133132
else:
134133
flash("Alias '%s' added to hostname '%s'." % (alias, hostname))
135134
redirect("/index/" + locker)
136-
try:
137-
path, aliases, pool = vhosts.get_vhost_info(locker, hostname)
138-
except vhosts.UserError as e:
139-
flash(e.message)
140-
redirect("/index/" + locker)
135+
try:
136+
info = vhosts.get_vhost_info(locker, hostname)
137+
except vhosts.UserError as e:
138+
flash(e.message)
139+
redirect("/index/" + locker)
141140
pools = vhosts.list_pools()
142-
pool = pools.get(pool, pool)
141+
pool_choices = []
142+
pool_choices.append({"name": 'Default', "value": 'DEFAULT', "selected": info['poolIPv4'] is None})
143+
for ip, pool in pools.items():
144+
# TODO: Only show selectable pools
145+
if pool["scriptsVhostPoolUserSelectable"] == "TRUE":
146+
pool_choices.append({"name": pool["description"], "value": ip, "selected": info['poolIPv4'] == ip})
147+
if not any(choice["selected"] for choice in pool_choices):
148+
name = pools.get(info['poolIPv4'], {"description": info['poolIPv4']})["description"]
149+
pool_choices.insert(0, {"name": "Unchanged (%s)" % (name,), "value": "", "selected": True})
143150
return dict(
144-
locker=locker, hostname=hostname, pool=pool, pools=pools, path=path, aliases=aliases, alias=alias
151+
locker=locker, hostname=hostname, path=info["path"], aliases=info["aliases"], alias=alias, pool_choices=pool_choices,
145152
)
146153

147154
@expose("scriptspony.templates.delete")
@@ -159,14 +166,12 @@ def delete(self, locker, hostname, confirm=False, token=None, **kwargs):
159166
else:
160167
flash("Host '%s' deleted." % hostname)
161168
redirect("/index/" + locker)
162-
_, aliases, _ = vhosts.get_vhost_info(locker, hostname)
163-
else:
164-
try:
165-
path, aliases, _ = vhosts.get_vhost_info(locker, hostname)
166-
except vhosts.UserError as e:
167-
flash(e.message)
168-
redirect("/index/" + locker)
169-
return dict(locker=locker, hostname=hostname, path=path, aliases=aliases)
169+
try:
170+
info = vhosts.get_vhost_info(locker, hostname)
171+
except vhosts.UserError as e:
172+
flash(e.message)
173+
redirect("/index/" + locker)
174+
return dict(locker=locker, hostname=hostname, path=info["path"], aliases=info["aliases"])
170175

171176
@expose("scriptspony.templates.new")
172177
def new(

scriptspony/templates/edit.mak

+10-10
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ from scripts.auth import token
1010
<ul>
1111
<li>Hostname: ${hostname}</li>
1212
<li>Locker: ${locker}</li>
13-
%if hostname not in [locker + '.scripts.mit.edu']:
13+
%if hostname not in [locker + '.scripts.mit.edu']:
1414
<li>Path: /mit/${locker}/web_scripts/<input type="text" name="path" value="${path}" /></li>
15-
%endif
16-
<li>Server Pool: ${pool["description"]} <select name="pool">
17-
<option value="unchanged">Unchanged</option>
18-
<option value="default">Default</option>
19-
%for ip, info in pools.items():
20-
%if info["scriptsVhostPoolUserSelectable"] == "TRUE":
21-
<option value="${ip}">${info["description"]}</option>
22-
%endif
23-
%endfor
15+
%endif
16+
<li>Server Pool: <select name="pool">
17+
%for choice in pool_choices:
18+
<option value="${choice["value"]}"
19+
%if choice["selected"]:
20+
selected
21+
%endif
22+
>${choice["name"]}</option>
23+
%endfor
2424
</select></li>
2525
</ul>
2626
<button class="btn"><span class="fa fa-save"></span>Save Changes</button>

scriptspony/templates/index.mak

+6-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ from scripts import auth
1010
<p>
1111
<table border="1">
1212
<tr><th>Hostname</th><th>Path</th><th>Fedora Pool</th><th>Edit</th></tr>
13-
%for host,aliases,path,pool in hosts:
13+
%for host,aliases,path,ip in hosts:
1414
<tr>
1515
<td>
1616
<a href="http://${host}">${host}</a>
@@ -22,7 +22,11 @@ from scripts import auth
2222
<small>/mit/${locker}/web_scripts/</small>${path}
2323
</td>
2424
<td>
25-
${pool["description"]}
25+
%if pools.get(ip):
26+
${pools.get(ip)["description"]}
27+
%else:
28+
${ip}
29+
%endif
2630
</td>
2731
<td class="nbr">
2832
<a href="${tg.url('/edit/'+locker+'/'+host)}" class="btn sm-btn" aria-label="Edit"><span class="fa fa-pencil" aria-hidden="true"></span></a>

scriptspony/vhosts.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def get_path(locker, hostname):
9898
"""Return a the path for the given hostname.
9999
100100
The directory is relative to web_scripts or Scripts/*/"""
101-
return get_vhost_info(locker, hostname)[0]
101+
return get_vhost_info(locker, hostname)["path"]
102102

103103

104104
@team_sensitive
@@ -113,14 +113,14 @@ def get_vhost_info(locker, hostname):
113113
"(&(objectClass=scriptsVhost)(scriptsVhostAccount=uid=%s,ou=People,dc=scripts,dc=mit,dc=edu)(scriptsVhostName=%s))",
114114
[locker, hostname],
115115
),
116-
["scriptsVhostDirectory", "scriptsVhostAlias", "scriptsVhostPoolIPv4"],
117116
)
118117
try:
119-
return (
120-
res[0][1]["scriptsVhostDirectory"][0],
121-
res[0][1].get("scriptsVhostAlias", []),
122-
res[0][1]["scriptsVhostPoolIPv4"][0]
123-
)
118+
attrs = res[0][1]
119+
return {
120+
"path": attrs["scriptsVhostDirectory"][0],
121+
"aliases": attrs.get("scriptsVhostAlias", []),
122+
"poolIPv4": attrs.get("scriptsVhostPoolIPv4", [None])[0],
123+
}
124124
except IndexError:
125125
raise UserError(
126126
"The hostname '%s' does not exist for the '%s' locker." % (hostname, locker)

0 commit comments

Comments
 (0)