app: Use https links for css and image
[bpt/portal.git] / users.mlt
CommitLineData
208e2cbc
AC
1<% Group.requireGroupNum 0;
2
3@header [("title", ["Member management"])];
4
5ref showNormal = true;
6
7if $"cmd" = "Create" then
8 if not (Init.validUsername ($"name")) then %>
b6dd1aaf 9 <h3>Invalid username</h3>
208e2cbc
AC
10 <% else switch Init.userNameToId ($"name") of
11 SOME _ => %>
b6dd1aaf 12 <h3>Username already in use</h3>
208e2cbc 13<% | NONE =>
f3f3ad24 14 val ap = Web.stoi ($"app");
208e2cbc
AC
15 val bal =
16 (case $"bal" of
17 "" => Balance.addBalance ($"name")
18 | s => Web.stoi s);
19
aaa50197 20 val id = Init.addUser ($"name", $"rname", bal, ap, 1);
98a5f121
AC
21 Group.addToGroups (id, map Web.stoi (Web.getMultiParam "grp"));
22
23 if $"amount" <> "" then
24 val amount = Web.stor ($"amount");
25 val trn = Money.addTransaction ($"descr", amount, Init.dateString ());
26 Money.addCharge {trn = trn, usr = id, amount = amount};
27 Money.applyCharges trn
28 end;
29
30 if $"subscribe" = "on" then
e84acecc 31 if not (Pref.subscribe ("hcoop-announce", $"name" ^ Init.emailSuffix)) then
b6dd1aaf 32 %><h3>Error subscribing to hcoop-announce</h3><%
98a5f121 33 end
688bf30c
AC
34 end;
35
36 if $"nomail" = "" then
37 App.welcome ap
38 end
39
40 %><h3>Member added</h3>
208e2cbc
AC
41<% end
42 end
43elseif $"mod" <> "" then
44 showNormal := false;
45 val user = Init.lookupUser (Web.stoi ($"mod")) %>
b6dd1aaf 46<h3>Modify member record</h3>
208e2cbc 47
a4ccdb5e 48<form action="users" method="post">
208e2cbc 49<input type="hidden" name="id" value="<% $"mod" %>">
b6dd1aaf
AC
50<table class="blanks">
51<tr> <td>Name:</td> <td><input name="name" value="<% #name user %>"></td> </tr>
52<tr> <td>Real name:</td> <td><input name="rname" value="<% #rname user %>"></td> </tr>
53<tr> <td>Funded by:</td> <td><select name="bal">
208e2cbc
AC
54<% foreach bal in Balance.listBalances () do %>
55 <option value="<% #id bal %>"<% if #bal user = #id bal then %> selected <% end %>><% Web.html (#name bal) %></option>
56<% end %>
57</select></td></tr>
58<tr> <td><input type="submit" name="cmd" value="Save"></td> </tr>
59</table>
60</form>
61
62<% elseif $"cmd" = "Save" then
63 val user = Init.lookupUser (Web.stoi ($"id"));
64 Init.modUser {user with name = $"name", bal = Web.stoi ($"bal")} %>
b6dd1aaf 65 <h3>Member record saved.</h3>
208e2cbc
AC
66
67<% elseif $"del" <> "" then
68 showNormal := false;
69 val user = Init.lookupUser (Web.stoi ($"del")) %>
b6dd1aaf 70 <h3>Are you sure you want to delete member <a href="user?id=<% #id user %>"><% #name user %></a>?</h3>
208e2cbc
AC
71 <a href="users?del2=<% $"del" %>">Yes, delete <% #name user %>!</a>
72
73<% elseif $"del2" <> "" then
74 val user = Init.lookupUser (Web.stoi ($"del2"));
75 Init.deleteUser (Web.stoi ($"del2")) %>
b6dd1aaf 76 <h3><% #name user %> deleted!</h3>
208e2cbc 77
f3f3ad24
AC
78<% elseif $"cmd" = "grandfather" then
79 Init.grandfatherUsers()
b6dd1aaf 80 %><h3>Grandfathered</h3>
f3f3ad24 81
9095d20e
AC
82<% elseif $"cmd" = "addform" then
83 showNormal := false %>
b6dd1aaf 84<h3>New member</h3>
208e2cbc 85
a4ccdb5e 86<form action="users" method="post">
b6dd1aaf
AC
87<table class="blanks">
88<tr> <td>Name:</td> <td><input name="name"></td> </tr>
89<tr> <td>Real name:</td> <td><input name="rname"></td> </tr>
90<tr> <td>Funded by:</td> <td><select name="bal">
208e2cbc
AC
91 <option value="">A new balance</option>
92<% foreach bal in Balance.listBalances () do %>
93 <option value="<% #id bal %>"><% Web.html (#name bal) %></option>
94<% end %>
95</select></td></tr>
b6dd1aaf
AC
96<tr> <td>Initial transaction amount:</td> <td><input name="amount"></td> </tr>
97<tr> <td>Initial transaction description:</td> <td><input name="descr"></td> </tr>
98<tr> <td><input type="checkbox" name="subscribe" checked></td> <td>Subscribe to hcoop-announce</td> </tr>
99<tr> <td>Groups:</td> <td><select name="grp" size="5" multiple>
208e2cbc 100<% foreach group in Group.listGroups () do %>
9bda1e7f 101 <option value="<% #id group %>"<% if #name group = "paying" then %> selected<% end %>><% Web.html (#name group) %></option>
208e2cbc
AC
102<% end %>
103</select></td></tr>
104<tr> <td><input type="submit" name="cmd" value="Create"></td> </tr>
105</table>
106</form>
107
60754922
AC
108<% elseif $"cmd" = "unmigrated" then
109 showNormal := false;
0dd4d4cb 110 ref negative = 0;
60754922
AC
111 val users = Init.unmigratedUsers () %>
112
113<h3>Unmigrated members (<% length users %>)</h3>
114
115<table>
116<% foreach user in users do %>
0dd4d4cb 117 <tr> <td><a href="user?id=<% #id user %>"><% Web.html (#name user) %></a></td>
60754922 118<% val bal = Balance.lookupBalance (#bal user);
0dd4d4cb
AC
119if Balance.isNegative bal then
120 negative := negative + 1
121end %>
122<td><% #amount bal %></td><td>
123<%if #name bal <> #name user then %>
124 <i><% Web.html (#name bal) %></i>
60754922 125<% end %>
0dd4d4cb 126</td> </tr>
60754922
AC
127<% end %>
128</table>
129
0dd4d4cb
AC
130<p><% negative %> have negative balances.</p>
131
59eb5381
AC
132<% elseif $"cmd" = "diff" then
133 showNormal := false;
134
135 val against = (case $"against" of
136 "" => Init.usersInAfs ()
137 | x => String.tokens Char.isSpace x);
138
139 val diff = Init.usersDiff (Init.listUsernames (), against) %>
140
141<h3>User diff</h3>
142
143<h4>Only on the portal:</h4>
144<ul>
145<% foreach user in #onlyInFirst diff do %>
146 <li> <a href="user?id=<% valOf (Init.userNameToId user) %>"><% Web.html user %></a></li>
147<% end %>
148</ul>
149
150<h4>Only in AFS:</h4>
151<ul>
152<% foreach user in #onlyInSecond diff do %>
153 <li> <% Web.html user %></li>
154<% end %>
155</ul>
156
9095d20e
AC
157<% end %>
158
159<% if showNormal then %>
160
161<a href="users?cmd=addform">Add a user manually</a><br>
162
b6dd1aaf 163<h3>Manage current members</h3>
208e2cbc
AC
164
165<table>
166<% foreach user in Init.listUsers () do %>
167 <tr> <td><a href="user?id=<% #id user %>"><% Web.html (#name user) %></a></td> <td>
168<% val bal = Balance.lookupBalance (#bal user);
169if #name bal <> #name user then %>
170<i><% Web.html (#name bal) %></i>
171<% end %>
172 </td><td><a href="users?mod=<% #id user %>">[Modify]</a> <a href="users?del=<% #id user %>">[Delete]</a></td> </tr>
173<% end %>
174</table>
175
f3f3ad24 176<br><a href="users?cmd=grandfather">Grandfather old users to have applications</a><br>
60754922 177<a href="users?cmd=unmigrated">Who hasn't migrated yet?</a><br>
59eb5381 178<a href="users?cmd=diff">How does the set of users in AFS compare with the set of active portal users?</a><br>
f3f3ad24 179
208e2cbc
AC
180<% end %>
181
182<% @footer [] %>