Join script should rule out retired usernames
[bpt/portal.git] / apps.mlt
CommitLineData
6f91863c
AC
1<% @header [("title", ["Membership applications"])];
2
3val you = Init.getUserId ();
f3a41f3b 4val board = Group.reallyInGroupName "board";
6f91863c
AC
5val root = Group.inGroupNum 0;
6
7ref showNormal = true;
8
93b8d0fa
AC
9if $"show" <> "" then
10 showNormal := false;
11 val usr = Web.stoi ($"show");
12 val user = Init.lookupUser usr;
13 val appl = App.lookupApp (#app user) %>
14
15 <table class="blanks">
6b8b767b 16 <tr> <td>Received:</td> <td><% #applied appl %> (<% Util.diffFromNow (#applied appl) %> ago)</td> </tr>
93b8d0fa
AC
17 <tr> <td>Approved by:</td> <td><%
18 ref first = true;
19 ref found = false;
20 val votes = App.votes (#id appl);
21 foreach (id, name) in votes do
22 if first then
23 first := false
24 else
25 %>, <%
26 end
27 %><a href="user?id=<% id %>"><% name %></a><%
28 if id = you then
29 found := true
30 %> <a href="apps?unvote=<% #id appl %>">[Unvote]</a><%
31 end
32 end %> <% if (iff board then not found else false) then %><a href="apps?vote=<% #id appl %>">[Vote]</a><% end %></td> </tr>
33 <tr> <td>Username:</td> <td><% #name appl %></td> </tr>
34 <tr> <td>Real name:</td> <td><% Web.html (#rname appl) %></td> </tr>
81200ec2 35 <tr> <td>E-mail:</td> <td><a href="mailto:<% #email appl %>"><% #email appl %></a></td> </tr>
93b8d0fa
AC
36 <tr> <td>Forward e-mail?</td> <td><% if #forward appl then %>yes<% else %>no<% end %></td> </tr>
37 <tr> <td>Proposed uses:</td> <td><% Web.htmlNl (#uses appl) %></td> </tr>
38 <tr> <td>Other information:</td> <td><% Web.htmlNl (#other appl) %></td> </tr>
39 </table>
40<% elseif $"vote" <> "" then
6f91863c
AC
41 Group.requireGroupName "board";
42 App.vote (you, Web.stoi ($"vote"))
b6dd1aaf 43 %><h3>Vote registered</h3><%
6f91863c
AC
44elseif $"unvote" <> "" then
45 Group.requireGroupName "board";
46 App.unvote (you, Web.stoi ($"unvote"))
b6dd1aaf 47 %><h3>Unvote registered</h3><%
6f91863c
AC
48elseif $"deny" <> "" then
49 showNormal := false;
50 val appl = App.lookupApp (Web.stoi ($"deny"))
b6dd1aaf 51 %><h3>Deny application for <% #name appl %></h3>
6f91863c
AC
52 <form action="apps" method="post">
53 <input type="hidden" name="deny2" value="<% $"deny" %>">
54 <b>Reason</b>:<br>
55 <textarea name="msg" rows="5" cols="80" wrap="soft"></textarea><br>
56 <input type="submit" value="Submit">
57 </form><%
58elseif $"deny2" <> "" then
59 Group.requireGroupName "board";
60 if not (App.deny (Web.stoi ($"deny2"), $"msg")) then
b6dd1aaf 61 %><h3>Error denying application</h3><%
6f91863c 62 else
b6dd1aaf 63 %><h3>Application denied</h3><%
6f91863c
AC
64 end
65elseif $"approve" <> "" then
66 showNormal := false;
67 val appl = App.lookupApp (Web.stoi ($"approve"))
b6dd1aaf 68 %><h3>Approve application for <% #name appl %></h3>
6f91863c
AC
69 <form action="apps" method="post">
70 <input type="hidden" name="approve2" value="<% $"approve" %>">
746fe7b2 71 <b>Message</b> (will be added at the end of <tt>~hcoop/portal/welcome.txt</tt>, so you might want to include some introductory text):<br>
6f91863c
AC
72 <textarea name="msg" rows="5" cols="80" wrap="soft"></textarea><br>
73 <input type="submit" value="Submit">
74 </form><%
75elseif $"approve2" <> "" then
76 Group.requireGroupName "board";
77 if not (App.approve (Web.stoi ($"approve2"), $"msg")) then
b6dd1aaf 78 %><h3>Error approving application</h3><%
6f91863c 79 else
b6dd1aaf 80 %><h3>Application approved</h3><%
6f91863c 81 end
98a5f121
AC
82elseif $"cmd" = "approved" then
83 showNormal := false
84
b6dd1aaf 85 %><h3>Pending applications</h3><%
98a5f121 86
96bd398e 87 foreach appl in App.listApps [App.ACCEPTED, App.BEING_ADDED] do %>
98a5f121 88 <br><hr><br>
b6dd1aaf 89 <table class="blanks">
6b8b767b 90 <tr> <td>Received:</td> <td><% #applied appl %> (<% Util.diffFromNow (#applied appl) %> ago)</td> </tr>
b6dd1aaf 91 <tr> <td>Approved by:</td> <td><%
98a5f121
AC
92 ref first = true;
93 ref found = false;
94 foreach (id, name) in App.votes (#id appl) do
95 if first then
96 first := false
97 else
98 %>, <%
99 end
100 %><a href="user?id=<% id %>"><% name %></a><%
101 end %> </td> </tr>
b6dd1aaf
AC
102 <tr> <td>Username:</td> <td><% #name appl %></td> </tr>
103 <tr> <td>Real name:</td> <td><% Web.html (#rname appl) %></td> </tr>
104 <tr> <td>E-mail address:</td> <td><a href="mailto:<% #email appl %>"><% #email appl %></a></td> </tr>
d5f8418b
AC
105 <% switch #paypal appl of
106 SOME s => %><tr> <td>PayPal:</td> <td><a href="mailto:<% s %>"><% s %></a></td> </tr>
107 <% end;
108 switch #checkout appl of
109 SOME s => %><tr> <td>Google Checkout:</td> <td><a href="mailto:<% s %>"><% s %></a></td> </tr>
110 <% end %>
b6dd1aaf
AC
111 <tr> <td>Forward e-mail?</td> <td><% if #forward appl then %>yes<% else %>no<% end %></td> </tr>
112 <tr> <td>Proposed uses:</td> <td><% Web.htmlNl (#uses appl) %></td> </tr>
113 <tr> <td>Other information:</td> <td><% Web.htmlNl (#other appl) %></td> </tr>
96bd398e 114 <% if #status appl = App.BEING_ADDED then %><tr> <td colspan="2" align="left"><font color="red"><b>WARNING: Someone already followed the add link for this application. Maybe he forgot to finish.</b></font></td></tr><% end %>
98a5f121
AC
115 </table>
116
117 <% if root then %>
118 <a href="apps?add=<% #id appl %>">Add this member.</a><br>
119 <% end
120 end
121elseif $"add" <> "" then
122 Group.requireGroupNum 0;
123 showNormal := false;
124 val id = Web.stoi ($"add");
125 val appl = App.lookupApp id;
96bd398e 126 App.preAdd id %>
98a5f121 127
688bf30c 128First, run this on deleuze:
7be17e39 129<blockquote><tt>new-user <% #name appl %> "<% #rname appl %>"<% if #forward appl then %> "<% #email appl %>"<% end %></tt></blockquote>
a4ccdb5e
AC
130
131<form action="users" method="post">
f3f3ad24 132<input type="hidden" name="app" value="<% #id appl %>">
b6dd1aaf
AC
133<table class="blanks">
134<tr> <td>Name:</td> <td><input name="name" value="<% Web.html (#name appl) %>"></td> </tr>
135<tr> <td>Real name:</td> <td><input name="rname" value="<% Web.html (#rname appl) %>"></td> </tr>
136<tr> <td>Funded by:</td> <td><select name="bal">
98a5f121
AC
137 <option value="">A new balance</option>
138<% foreach bal in Balance.listBalances () do %>
139 <option value="<% #id bal %>"><% Web.html (#name bal) %></option>
140<% end %>
141</select></td></tr>
b6dd1aaf 142<tr> <td>Initial transaction amount:</td> <td><input name="amount"></td> </tr>
d5f8418b 143<tr> <td>Initial transaction description:</td> <td><input name="descr"></td> </tr>
848cdc06 144<!--tr> <td><input type="checkbox" name="subscribe" checked></td> <td>Subscribe to hcoop-announce</td> </tr-->
b6dd1aaf 145<tr> <td>Groups:</td> <td><select name="grp" size="5" multiple>
98a5f121
AC
146<% foreach group in Group.listGroups () do %>
147 <option value="<% #id group %>"<% if #name group = "paying" then %> selected<% end %>><% Web.html (#name group) %></option>
148<% end %>
149</select></td></tr>
150<tr> <td><input type="submit" name="cmd" value="Create"></td> </tr>
151</table>
152</form>
153
154<a href="apps?abort=<% #id appl %>">Abort adding this member</a>
155
156<% elseif $"abort" <> "" then
157 App.abortAdd (Web.stoi ($"abort"))
b6dd1aaf 158 %><h3>Aborted</h3><%
98a5f121 159
6f91863c
AC
160end %>
161
162<% if showNormal then %>
b6dd1aaf 163<h3>Pending applications</h3>
6f91863c 164
96bd398e 165<% foreach appl in App.listApps [App.PENDING] do %>
6f91863c 166 <br><hr><br>
b6dd1aaf 167 <table class="blanks">
6b8b767b 168 <tr> <td>Received:</td> <td><% #applied appl %> (<% Util.diffFromNow (#applied appl) %> ago)</td></tr>
b6dd1aaf 169 <tr> <td>Approved by:</td> <td><%
6f91863c
AC
170 ref first = true;
171 ref found = false;
b8051818
AC
172 val votes = App.votes (#id appl);
173 foreach (id, name) in votes do
6f91863c
AC
174 if first then
175 first := false
176 else
177 %>, <%
178 end
179 %><a href="user?id=<% id %>"><% name %></a><%
180 if id = you then
181 found := true
182 %> <a href="apps?unvote=<% #id appl %>">[Unvote]</a><%
183 end
184 end %> <% if (iff board then not found else false) then %><a href="apps?vote=<% #id appl %>">[Vote]</a><% end %></td> </tr>
b6dd1aaf
AC
185 <tr> <td>Username:</td> <td><% #name appl %></td> </tr>
186 <tr> <td>Real name:</td> <td><% Web.html (#rname appl) %></td> </tr>
187 <tr> <td>E-mail address:</td> <td><a href="mailto:<% #email appl %>"><% #email appl %></a></td> </tr>
d5f8418b
AC
188 <% switch #paypal appl of
189 SOME s => %><tr> <td>PayPal:</td> <td><a href="mailto:<% s %>"><% s %></a></td> </tr>
190 <% end;
191 switch #checkout appl of
192 SOME s => %><tr> <td>Google Checkout:</td> <td><a href="mailto:<% s %>"><% s %></a></td> </tr>
193 <% end %>
b6dd1aaf
AC
194 <tr> <td>Forward e-mail?</td> <td><% if #forward appl then %>yes<% else %>no<% end %></td> </tr>
195 <tr> <td>Proposed uses:</td> <td><% Web.htmlNl (#uses appl) %></td> </tr>
196 <tr> <td>Other information:</td> <td><% Web.htmlNl (#other appl) %></td> </tr>
6f91863c
AC
197 </table>
198
199 <% if board then %>
11668142 200 <% if length votes >= 3 then %><a href="apps?approve=<% #id appl %>">Approve this member.</a><br><% end %>
6f91863c
AC
201 <a href="apps?deny=<% #id appl %>">Deny this application.</a>
202 <% end %>
6b8b767b 203<% end
6f91863c
AC
204end %>
205
7be17e39 206<% @footer[] %>