/******************************************************************************* * Copyright (c) 2013, 2014 Lectorius, Inc. * Authors: * Vijay Pandurangan (vijayp@mitro.co) * Evan Jones (ej@mitro.co) * Adam Hilss (ahilss@mitro.co) * * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * You can contact the authors at inbound@mitro.co. *******************************************************************************/ package co.mitro.core.util; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.nio.charset.StandardCharsets; import java.sql.SQLException; import co.mitro.core.server.Main; import co.mitro.core.server.Manager; import co.mitro.core.server.ManagerFactory; import co.mitro.core.server.data.DBIdentity; import co.mitro.core.server.data.DBUserName; import co.mitro.core.servlets.Util; public class AddAliasMain { public static void main(String[] args) throws IOException, SQLException { Main.exitIfAssertionsDisabled(); BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in, StandardCharsets.UTF_8)); System.out.print("Enter primary account > "); String primaryAccount = stdin.readLine(); System.out.print("Enter alias > "); String aliasEmail = stdin.readLine(); if (!Util.isEmailAddress(aliasEmail)) { System.err.println(aliasEmail + " is not a valid email address"); System.exit(-1); } try (Manager mgr = ManagerFactory.getInstance().newManager()) { DBIdentity identity = DBIdentity.getIdentityForUserName(mgr, primaryAccount); if (identity == null) { System.err.println("Could not find account for " + primaryAccount); System.exit(-1); } System.out.println("Found account: " + identity.toString()); System.out.printf("Really link new alias %s to %s?\n", aliasEmail, identity.getName()); if (stdin.readLine().toLowerCase().charAt(0) != 'y') { System.out.println("Not adding alias"); return; } DBUserName.addAlias(aliasEmail, mgr, identity); mgr.commitTransaction(); System.out.println("Done."); } } }