@@ -55,6 +55,7 @@ def index(self, locker=None, sudo=False, **kwargs):
55
55
56
56
olocker = locker
57
57
hosts = None
58
+ pools = None
58
59
user = auth .current_user ()
59
60
https = auth .is_https ()
60
61
# Find or create the associated user info object.
@@ -82,7 +83,6 @@ def index(self, locker=None, sudo=False, **kwargs):
82
83
hosts = vhosts .list_vhosts (locker )
83
84
hosts .sort (key = lambda k : k [0 ])
84
85
pools = vhosts .list_pools ()
85
- hosts = [(host ,aliases ,path ,pools .get (ip ,ip )) for host ,aliases ,path ,ip in hosts ]
86
86
except auth .AuthError as e :
87
87
flash (e .message )
88
88
# User has been deauthorized from this locker
@@ -100,7 +100,7 @@ def index(self, locker=None, sudo=False, **kwargs):
100
100
user_info .lockers .sort ()
101
101
DBSession .add (user_info )
102
102
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 )
104
104
105
105
@expose ("scriptspony.templates.edit" )
106
106
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
120
120
else :
121
121
flash ("Host '%s' reconfigured." % hostname )
122
122
redirect ("/index/" + locker )
123
- _ , aliases , pool = vhosts .get_vhost_info (locker , hostname )
124
123
else :
125
124
if alias :
126
125
if token != auth .token ():
@@ -133,15 +132,23 @@ def edit(self, locker, hostname, pool=None, path=None, token=None, alias="", **k
133
132
else :
134
133
flash ("Alias '%s' added to hostname '%s'." % (alias , hostname ))
135
134
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 )
141
140
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 })
143
150
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 ,
145
152
)
146
153
147
154
@expose ("scriptspony.templates.delete" )
@@ -159,14 +166,12 @@ def delete(self, locker, hostname, confirm=False, token=None, **kwargs):
159
166
else :
160
167
flash ("Host '%s' deleted." % hostname )
161
168
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" ])
170
175
171
176
@expose ("scriptspony.templates.new" )
172
177
def new (
0 commit comments