PostBBSManager.java 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /*
  2. * Copyright (C) 2004-2015 L2J Server
  3. *
  4. * This file is part of L2J Server.
  5. *
  6. * L2J Server is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * L2J Server 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 GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. package com.l2jserver.gameserver.communitybbs.Manager;
  20. import java.text.DateFormat;
  21. import java.util.Date;
  22. import java.util.Locale;
  23. import java.util.Map;
  24. import java.util.StringTokenizer;
  25. import java.util.concurrent.ConcurrentHashMap;
  26. import com.l2jserver.gameserver.communitybbs.BB.Forum;
  27. import com.l2jserver.gameserver.communitybbs.BB.Post;
  28. import com.l2jserver.gameserver.communitybbs.BB.Post.CPost;
  29. import com.l2jserver.gameserver.communitybbs.BB.Topic;
  30. import com.l2jserver.gameserver.handler.CommunityBoardHandler;
  31. import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
  32. import com.l2jserver.util.StringUtil;
  33. public class PostBBSManager extends BaseBBSManager
  34. {
  35. private final Map<Topic, Post> _postByTopic = new ConcurrentHashMap<>();
  36. public Post getGPosttByTopic(Topic t)
  37. {
  38. Post post = _postByTopic.get(t);
  39. if (post == null)
  40. {
  41. post = new Post(t);
  42. _postByTopic.put(t, post);
  43. }
  44. return post;
  45. }
  46. public void delPostByTopic(Topic t)
  47. {
  48. _postByTopic.remove(t);
  49. }
  50. public void addPostByTopic(Post p, Topic t)
  51. {
  52. if (_postByTopic.get(t) == null)
  53. {
  54. _postByTopic.put(t, p);
  55. }
  56. }
  57. @Override
  58. public void parsecmd(String command, L2PcInstance activeChar)
  59. {
  60. if (command.startsWith("_bbsposts;read;"))
  61. {
  62. StringTokenizer st = new StringTokenizer(command, ";");
  63. st.nextToken();
  64. st.nextToken();
  65. int idf = Integer.parseInt(st.nextToken());
  66. int idp = Integer.parseInt(st.nextToken());
  67. String index = null;
  68. if (st.hasMoreTokens())
  69. {
  70. index = st.nextToken();
  71. }
  72. int ind = 0;
  73. if (index == null)
  74. {
  75. ind = 1;
  76. }
  77. else
  78. {
  79. ind = Integer.parseInt(index);
  80. }
  81. showPost((TopicBBSManager.getInstance().getTopicByID(idp)), ForumsBBSManager.getInstance().getForumByID(idf), activeChar, ind);
  82. }
  83. else if (command.startsWith("_bbsposts;edit;"))
  84. {
  85. StringTokenizer st = new StringTokenizer(command, ";");
  86. st.nextToken();
  87. st.nextToken();
  88. int idf = Integer.parseInt(st.nextToken());
  89. int idt = Integer.parseInt(st.nextToken());
  90. int idp = Integer.parseInt(st.nextToken());
  91. showEditPost((TopicBBSManager.getInstance().getTopicByID(idt)), ForumsBBSManager.getInstance().getForumByID(idf), activeChar, idp);
  92. }
  93. else
  94. {
  95. CommunityBoardHandler.separateAndSend("<html><body><br><br><center>the command: " + command + " is not implemented yet</center><br><br></body></html>", activeChar);
  96. }
  97. }
  98. private void showEditPost(Topic topic, Forum forum, L2PcInstance activeChar, int idp)
  99. {
  100. if (topic == null)
  101. {
  102. CommunityBoardHandler.separateAndSend("<html><body><br><br><center>Error: This topic does not exist!</center></body></html>", activeChar);
  103. }
  104. else
  105. {
  106. final Post p = getGPosttByTopic(topic);
  107. if ((forum == null) || (p == null))
  108. {
  109. CommunityBoardHandler.separateAndSend("<html><body><br><br><center>Error: This forum or post does not exist!</center></body></html>", activeChar);
  110. }
  111. else
  112. {
  113. showHtmlEditPost(topic, activeChar, forum, p);
  114. }
  115. }
  116. }
  117. private void showPost(Topic topic, Forum forum, L2PcInstance activeChar, int ind)
  118. {
  119. if ((forum == null) || (topic == null))
  120. {
  121. CommunityBoardHandler.separateAndSend("<html><body><br><br><center>Error: This forum is not implemented yet!</center></body></html>", activeChar);
  122. }
  123. else if (forum.getType() == Forum.MEMO)
  124. {
  125. showMemoPost(topic, activeChar, forum);
  126. }
  127. else
  128. {
  129. CommunityBoardHandler.separateAndSend("<html><body><br><br><center>The forum: " + forum.getName() + " is not implemented yet!</center></body></html>", activeChar);
  130. }
  131. }
  132. private void showHtmlEditPost(Topic topic, L2PcInstance activeChar, Forum forum, Post p)
  133. {
  134. final String html = StringUtil.concat("<html><body><br><br><table border=0 width=610><tr><td width=10></td><td width=600 align=left><a action=\"bypass _bbshome\">HOME</a>&nbsp;>&nbsp;<a action=\"bypass _bbsmemo\">", forum.getName(), " Form</a></td></tr></table><img src=\"L2UI.squareblank\" width=\"1\" height=\"10\"><center><table border=0 cellspacing=0 cellpadding=0><tr><td width=610><img src=\"sek.cbui355\" width=\"610\" height=\"1\"><br1><img src=\"sek.cbui355\" width=\"610\" height=\"1\"></td></tr></table><table fixwidth=610 border=0 cellspacing=0 cellpadding=0><tr><td><img src=\"l2ui.mini_logo\" width=5 height=20></td></tr><tr><td><img src=\"l2ui.mini_logo\" width=5 height=1></td><td align=center FIXWIDTH=60 height=29>&$413;</td><td FIXWIDTH=540>", topic.getName(), "</td><td><img src=\"l2ui.mini_logo\" width=5 height=1></td></tr></table><table fixwidth=610 border=0 cellspacing=0 cellpadding=0><tr><td><img src=\"l2ui.mini_logo\" width=5 height=10></td></tr><tr><td><img src=\"l2ui.mini_logo\" width=5 height=1></td><td align=center FIXWIDTH=60 height=29 valign=top>&$427;</td><td align=center FIXWIDTH=540><MultiEdit var =\"Content\" width=535 height=313></td><td><img src=\"l2ui.mini_logo\" width=5 height=1></td></tr><tr><td><img src=\"l2ui.mini_logo\" width=5 height=10></td></tr></table><table fixwidth=610 border=0 cellspacing=0 cellpadding=0><tr><td><img src=\"l2ui.mini_logo\" width=5 height=10></td></tr><tr><td><img src=\"l2ui.mini_logo\" width=5 height=1></td><td align=center FIXWIDTH=60 height=29>&nbsp;</td><td align=center FIXWIDTH=70><button value=\"&$140;\" action=\"Write Post ", String.valueOf(forum.getID()), ";", String.valueOf(topic.getID()), ";0 _ Content Content Content\" back=\"l2ui_ch3.smallbutton2_down\" width=65 height=20 fore=\"l2ui_ch3.smallbutton2\" ></td><td align=center FIXWIDTH=70><button value = \"&$141;\" action=\"bypass _bbsmemo\" back=\"l2ui_ch3.smallbutton2_down\" width=65 height=20 fore=\"l2ui_ch3.smallbutton2\"> </td><td align=center FIXWIDTH=400>&nbsp;</td><td><img src=\"l2ui.mini_logo\" width=5 height=1></td></tr></table></center></body></html>");
  135. send1001(html, activeChar);
  136. send1002(activeChar, p.getCPost(0).postTxt, topic.getName(), DateFormat.getInstance().format(new Date(topic.getDate())));
  137. }
  138. private void showMemoPost(Topic topic, L2PcInstance activeChar, Forum forum)
  139. {
  140. Post p = getGPosttByTopic(topic);
  141. Locale locale = Locale.getDefault();
  142. DateFormat dateFormat = DateFormat.getDateInstance(DateFormat.FULL, locale);
  143. String mes = p.getCPost(0).postTxt.replace(">", "&gt;");
  144. mes = mes.replace("<", "&lt;");
  145. final String html = StringUtil.concat("<html><body><br><br><table border=0 width=610><tr><td width=10></td><td width=600 align=left><a action=\"bypass _bbshome\">HOME</a>&nbsp;>&nbsp;<a action=\"bypass _bbsmemo\">Memo Form</a></td></tr></table><img src=\"L2UI.squareblank\" width=\"1\" height=\"10\"><center><table border=0 cellspacing=0 cellpadding=0 bgcolor=333333><tr><td height=10></td></tr><tr><td fixWIDTH=55 align=right valign=top>&$413; : &nbsp;</td><td fixWIDTH=380 valign=top>", topic.getName(), "</td><td fixwidth=5></td><td fixwidth=50></td><td fixWIDTH=120></td></tr><tr><td height=10></td></tr><tr><td align=right><font color=\"AAAAAA\" >&$417; : &nbsp;</font></td><td><font color=\"AAAAAA\">", topic.getOwnerName() + "</font></td><td></td><td><font color=\"AAAAAA\">&$418; :</font></td><td><font color=\"AAAAAA\">", dateFormat.format(p.getCPost(0).postDate), "</font></td></tr><tr><td height=10></td></tr></table><br><table border=0 cellspacing=0 cellpadding=0><tr><td fixwidth=5></td><td FIXWIDTH=600 align=left>", mes, "</td><td fixqqwidth=5></td></tr></table><br><img src=\"L2UI.squareblank\" width=\"1\" height=\"5\"><img src=\"L2UI.squaregray\" width=\"610\" height=\"1\"><img src=\"L2UI.squareblank\" width=\"1\" height=\"5\"><table border=0 cellspacing=0 cellpadding=0 FIXWIDTH=610><tr><td width=50><button value=\"&$422;\" action=\"bypass _bbsmemo\" back=\"l2ui_ch3.smallbutton2_down\" width=65 height=20 fore=\"l2ui_ch3.smallbutton2\"></td><td width=560 align=right><table border=0 cellspacing=0><tr><td FIXWIDTH=300></td><td><button value = \"&$424;\" action=\"bypass _bbsposts;edit;", String.valueOf(forum.getID()), ";", String.valueOf(topic.getID()), ";0\" back=\"l2ui_ch3.smallbutton2_down\" width=65 height=20 fore=\"l2ui_ch3.smallbutton2\" ></td>&nbsp;<td><button value = \"&$425;\" action=\"bypass _bbstopics;del;", String.valueOf(forum.getID()), ";", String.valueOf(topic.getID()), "\" back=\"l2ui_ch3.smallbutton2_down\" width=65 height=20 fore=\"l2ui_ch3.smallbutton2\" ></td>&nbsp;<td><button value = \"&$421;\" action=\"bypass _bbstopics;crea;", String.valueOf(forum.getID()), "\" back=\"l2ui_ch3.smallbutton2_down\" width=65 height=20 fore=\"l2ui_ch3.smallbutton2\" ></td>&nbsp;</tr></table></td></tr></table><br><br><br></center></body></html>");
  146. CommunityBoardHandler.separateAndSend(html, activeChar);
  147. }
  148. @Override
  149. public void parsewrite(String ar1, String ar2, String ar3, String ar4, String ar5, L2PcInstance activeChar)
  150. {
  151. StringTokenizer st = new StringTokenizer(ar1, ";");
  152. int idf = Integer.parseInt(st.nextToken());
  153. int idt = Integer.parseInt(st.nextToken());
  154. int idp = Integer.parseInt(st.nextToken());
  155. Forum f = ForumsBBSManager.getInstance().getForumByID(idf);
  156. if (f == null)
  157. {
  158. CommunityBoardHandler.separateAndSend("<html><body><br><br><center>the forum: " + idf + " does not exist !</center><br><br></body></html>", activeChar);
  159. }
  160. else
  161. {
  162. Topic t = f.getTopic(idt);
  163. if (t == null)
  164. {
  165. CommunityBoardHandler.separateAndSend("<html><body><br><br><center>the topic: " + idt + " does not exist !</center><br><br></body></html>", activeChar);
  166. }
  167. else
  168. {
  169. final Post p = getGPosttByTopic(t);
  170. if (p != null)
  171. {
  172. final CPost cp = p.getCPost(idp);
  173. if (cp == null)
  174. {
  175. CommunityBoardHandler.separateAndSend("<html><body><br><br><center>the post: " + idp + " does not exist !</center><br><br></body></html>", activeChar);
  176. }
  177. else
  178. {
  179. p.getCPost(idp).postTxt = ar4;
  180. p.updatetxt(idp);
  181. parsecmd("_bbsposts;read;" + f.getID() + ";" + t.getID(), activeChar);
  182. }
  183. }
  184. }
  185. }
  186. }
  187. public static PostBBSManager getInstance()
  188. {
  189. return SingletonHolder._instance;
  190. }
  191. private static class SingletonHolder
  192. {
  193. protected static final PostBBSManager _instance = new PostBBSManager();
  194. }
  195. }