/* * Copyright (C) 2004-2014 L2J DataPack * * This file is part of L2J DataPack. * * L2J DataPack 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. * * L2J DataPack 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 . */ package handlers.voicedcommandhandlers; import java.util.StringTokenizer; import java.util.logging.Level; import com.l2jserver.gameserver.LoginServerThread; import com.l2jserver.gameserver.cache.HtmCache; import com.l2jserver.gameserver.handler.IVoicedCommandHandler; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage; /** * @author Nik */ public class ChangePassword implements IVoicedCommandHandler { private static final String[] _voicedCommands = { "changepassword" }; @Override public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target) { if (target != null) { final StringTokenizer st = new StringTokenizer(target); try { String curpass = null, newpass = null, repeatnewpass = null; if (st.hasMoreTokens()) { curpass = st.nextToken(); } if (st.hasMoreTokens()) { newpass = st.nextToken(); } if (st.hasMoreTokens()) { repeatnewpass = st.nextToken(); } if (!((curpass == null) || (newpass == null) || (repeatnewpass == null))) { if (!newpass.equals(repeatnewpass)) { activeChar.sendMessage("The new password doesn't match with the repeated one!"); return false; } if (newpass.length() < 3) { activeChar.sendMessage("The new password is shorter than 3 chars! Please try with a longer one."); return false; } if (newpass.length() > 30) { activeChar.sendMessage("The new password is longer than 30 chars! Please try with a shorter one."); return false; } LoginServerThread.getInstance().sendChangePassword(activeChar.getAccountName(), activeChar.getName(), curpass, newpass); } else { activeChar.sendMessage("Invalid password data! You have to fill all boxes."); return false; } } catch (Exception e) { activeChar.sendMessage("A problem occured while changing password!"); _log.log(Level.WARNING, "", e); } } else { // showHTML(activeChar); String html = HtmCache.getInstance().getHtm("en", "data/html/mods/ChangePassword.htm"); if (html == null) { html = "

404: File Not Found
"; } activeChar.sendPacket(new NpcHtmlMessage(html)); return true; } return true; } @Override public String[] getVoicedCommandList() { return _voicedCommands; } }