LoginPasswordHandler.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:3k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3. Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
  4. Matthias Butz <matze@odinms.de>
  5. Jan Christian Meyer <vimes@odinms.de>
  6. This program is free software: you can redistribute it and/or modify
  7. it under the terms of the GNU Affero General Public License version 3
  8. as published by the Free Software Foundation. You may not use, modify
  9. or distribute this program under any other version of the
  10. GNU Affero General Public License.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU Affero General Public License for more details.
  15. You should have received a copy of the GNU Affero General Public License
  16. along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17.  */
  18. package net.sf.odinms.net.login.handler;
  19. import net.sf.odinms.client.MapleCharacter;
  20. import net.sf.odinms.client.MapleClient;
  21. import net.sf.odinms.net.MaplePacketHandler;
  22. import net.sf.odinms.net.login.LoginWorker;
  23. import net.sf.odinms.tools.MaplePacketCreator;
  24. import net.sf.odinms.tools.data.input.SeekableLittleEndianAccessor;
  25. import net.sf.odinms.tools.KoreanDateUtil;
  26. import java.util.Calendar;
  27. import net.sf.odinms.net.login.LoginServer;
  28. public class LoginPasswordHandler implements MaplePacketHandler {
  29.     // private static Logger log = LoggerFactory.getLogger(LoginPasswordHandler.class);
  30.     @Override
  31.     public boolean validateState(MapleClient c) {
  32.         return !c.isLoggedIn();
  33.     }
  34.     @Override
  35. public void handlePacket(SeekableLittleEndianAccessor slea, MapleClient c) {
  36. String login = slea.readAsciiString(slea.readShort());
  37. String pwd = slea.readAsciiString(slea.readShort());
  38. c.setAccountName(login);
  39. int loginok = 0;
  40. boolean ipBan = c.hasBannedIP();
  41. boolean macBan = c.hasBannedMac();
  42. loginok = c.login(login, pwd, ipBan || macBan);
  43. Calendar tempbannedTill = c.getTempBanCalendar();
  44. if (loginok == 0 && (ipBan || macBan)) {
  45. loginok = 3;
  46. if (macBan) {
  47. // this is only an ipban o.O" - maybe we should refactor this a bit so it's more readable
  48. String[] ipSplit = c.getSession().getRemoteAddress().toString().split(":");
  49. MapleCharacter.ban(ipSplit[0], "Enforcing account ban, account " + login, false);
  50. }
  51. }
  52. if (loginok != 0) {
  53. c.getSession().write(MaplePacketCreator.getLoginFailed(loginok));
  54. return;
  55. } else if (tempbannedTill.getTimeInMillis() != 0) {
  56. long tempban = KoreanDateUtil.getTempBanTimestamp(tempbannedTill.getTimeInMillis());
  57. byte reason = c.getBanReason();
  58. c.getSession().write(MaplePacketCreator.getTempBan(tempban, reason));
  59. return;
  60. }
  61. if (c.isGm()) {
  62. LoginWorker.getInstance().registerGMClient(c);
  63. } else {
  64. LoginWorker.getInstance().registerClient(c);
  65. }
  66. }
  67. }