site/js/alts.js (55 lines of code) (raw):

/* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ // Callback that sets up the user menu in JS, provided // valid account JSON is supplied function setupUserAlts(json) { if (typeof json.login != undefined && json.login) { login = json.login if (login.credentials) { setupUser(json.login) } } renderAlts(json) } // Func for rendering the list of notifications function renderAlts(json) { if (json.login && json.login.credentials) { var obj = document.getElementById('alts') var main = json.login.credentials.email.replace(/<>"'/g, "") obj.innerHTML = main + " - primary address<br/>" for (var i in json.login.alternates) { var alt = json.login.alternates[i] alt = alt.replace(/<>"'/g, "") obj.innerHTML += alt + " - [<a href='javascript:void(0);' onclick='delAlt(\"" + alt + "\");'>Remove</a>]<br/>" } } else { var obj = document.getElementById('alts') obj.innerHTML = "You need to be logged in to manage alternate addresses." } } // onLoad function, fetches the needed JSON and renders the notif list // invoked by onload in merge.html function listAlts() { GetAsync("/api/preferences.lua", null, setupUserAlts) } function processNewAlt(json) { if (json.requested) { if (json.requested == 1) { alert("An association request has been sent to the specified email address." + " Please check your inbox! Depending on grey-listing etc, it may take up to 15 minutes before your confirmation email arrives.") } else { alert(json.requested) } } else { if (json.error) { alert(json.error) } else { alert("Unexpected response from server" + JSON.stringify(json)) } } } function newAlt(addr) { if (addr.match(/^([^\s@]+@[^\s@]+)$/) && addr.length > 6) { GetAsync("/api/preferences.lua?associate=" + addr, null, processNewAlt) } else { alert("Please enter a valid email address!") } return false; } function delAlt(addr) { GetAsync("/api/preferences.lua?removealt=" + addr, null, function() { location.href = location.href; }) return false; }