payment: note that Stripe has instituted an additional 1% fee for non-US cards
[hcoop/portal.git] / pref.mlt
index 1db9f8b..b457c3d 100644 (file)
--- a/pref.mlt
+++ b/pref.mlt
@@ -1,10 +1,17 @@
 <% val you = Init.getUserId ();
+
 val yourname = Init.getUserName ();
 val youremail = yourname ^ "@hcoop.net";
 
 @header [("title", ["Member preferences"])];
 
 if $"cmd" = "mod" then
+       val you_all = Init.getUser ();
+
+       Init.modUser {you_all with
+         paypal = (case $"paypal" of "" => NONE | s => SOME s),
+         checkout = (case $"checkout" of "" => NONE | s => SOME s)};
+
        if $"dir" = "on" then
                Pref.setDirectory you
        else
@@ -18,6 +25,13 @@ if $"cmd" = "mod" then
                %><h3>Error setting <tt>hcoop-discuss</tt> status</h3><%
        end;
 
+       if not (iff $"help" = "on" then
+                       Pref.subscribe ("hcoop-help", youremail)
+                   else
+                       Pref.unsubscribe ("hcoop-help", youremail)) then
+               %><h3>Error setting <tt>hcoop-help</tt> status</h3><%
+       end;
+
        if not (iff $"misc" = "on" then
                        Pref.subscribe ("hcoop-misc", youremail)
                    else
@@ -33,15 +47,19 @@ if $"cmd" = "mod" then
        end;
 
        %><h3>Preferences updated</h3><%
-end %>
+end;
 
-<p><h3>This page doesn't work yet.  You should visit <a href="https://members.hcoop.net/portal/pref">the corresponding page on the old portal</a> if you want to change anything.</h3></p>
+val you_all = Init.lookupUser you %>
 
 <form action="pref" method="post">
 <input type="hidden" name="cmd" value="mod">
 <table class="blanks">
+<tr> <td><a href="http://www.paypal.com/">PayPal</a> e-mail address:</td> <td><input name="paypal" size="60" value="<% switch #paypal you_all of NONE => "" | SOME s => s end %>"></td> </tr>
+<tr> <td colspan="2" style="font-weight: normal; text-align: left">(E-mail addresses you enter here should match those seen by recipients of payments that you send.)</td> </tr>
+<tr></tr>
 <tr> <td><input type="checkbox" name="dir"<% if Pref.hasDirectory you then %> checked<% end %>></td> <td>Include me in the public member directory.</td> </tr>
 <tr> <td><input type="checkbox" name="discuss"<% if Pref.subscribed ("hcoop-discuss", youremail) then %> checked<% end %>></td> <td>Include me on the <tt>hcoop-discuss</tt> mailing list. <i>(On-topic discussion and sporadically high volume)</i></td> </tr>
+<tr> <td><input type="checkbox" name="help"<% if Pref.subscribed ("hcoop-help", youremail) then %> checked<% end %>></td> <td>Include me on the <tt>hcoop-help</tt> mailing list. <i>(Members-helping-members support on how to use HCoop services)</i></td> </tr>
 <tr> <td><input type="checkbox" name="sysadmin"<% if Pref.subscribed ("hcoop-sysadmin", youremail) then %> checked<% end %>></td> <td>Include me on the <tt>hcoop-sysadmin</tt> mailing list. <i>(Discussion about technical adminstrative planning and related issues, not dealing directly with member support requests)</i></td> </tr>
 <tr> <td><input type="checkbox" name="misc"<% if Pref.subscribed ("hcoop-misc", youremail) then %> checked<% end %>></td> <td>Include me on the <tt>hcoop-misc</tt> mailing list. <i>(Off-topic)</i></td> </tr>
 <tr> <td><input type="submit" value="Save"></td> </tr>