123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- /*
- * 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/>.
- */
- package com.l2jserver.communityserver.model;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.util.Map;
- import java.util.logging.Logger;
- import javolution.util.FastMap;
- import com.l2jserver.communityserver.L2DatabaseFactory;
- import com.l2jserver.communityserver.model.Topic.ConstructorType;
- public class Forum
- {
- //type
- public static final int ROOT = 0;
- public static final int NORMAL = 1;
- public static final int CLAN = 2;
- public static final int PLAYER = 3;
-
- private static Logger _log = Logger.getLogger(Forum.class.getName());
- private Map<Integer, Topic> _topic;
- private int _forumId;
- private final int _sqlDPId;
- private String _forumName;
- private int _forumType;
- private int _ownerID;
- private boolean _loaded = false;
-
- /**
- * @param i
- */
- public Forum(final int sqlDPId, int Forumid)
- {
- _sqlDPId = sqlDPId;
- _forumId = Forumid;
- _topic = new FastMap<Integer, Topic>();
- }
-
- /**
- * @param name
- * @param parent
- * @param type
- * @param perm
- */
- public Forum(final int sqlDPId, int Forumid, String name, int type, int OwnerID)
- {
- _sqlDPId = sqlDPId;
- _forumName = name;
- _forumId = Forumid;
- _forumType = type;
- _ownerID = OwnerID;
- _topic = new FastMap<Integer, Topic>();
- _loaded = true;
- insertindb();
- if (type == Forum.PLAYER)
- {
- _topic.put(Topic.INBOX, new Topic(ConstructorType.CREATE, _sqlDPId, Topic.INBOX, Forumid, name, OwnerID, 0));
- _topic.put(Topic.OUTBOX, new Topic(ConstructorType.CREATE, _sqlDPId, Topic.OUTBOX, Forumid, name, OwnerID, 0));
- _topic.put(Topic.ARCHIVE, new Topic(ConstructorType.CREATE, _sqlDPId, Topic.ARCHIVE, Forumid, name, OwnerID, 0));
- _topic.put(Topic.TEMP_ARCHIVE, new Topic(ConstructorType.CREATE, _sqlDPId, Topic.TEMP_ARCHIVE, Forumid, name, OwnerID, 0));
- _topic.put(Topic.MEMO, new Topic(ConstructorType.CREATE, _sqlDPId, Topic.MEMO, Forumid, name, OwnerID, 0));
- }
- else if (type == Forum.CLAN)
- {
- _topic.put(Topic.ANNOUNCE, new Topic(ConstructorType.CREATE, _sqlDPId, Topic.ANNOUNCE, Forumid, name, OwnerID, 0));
- _topic.put(Topic.BULLETIN, new Topic(ConstructorType.CREATE, _sqlDPId, Topic.BULLETIN, Forumid, name, OwnerID, 0));
- }
- }
-
- /**
- *
- */
- private void load()
- {
- java.sql.Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement("SELECT * FROM forums WHERE serverId=? AND forum_id=?");
- statement.setInt(1, _sqlDPId);
- statement.setInt(2, _forumId);
- ResultSet result = statement.executeQuery();
-
- if (result.next())
- {
- _forumName = result.getString("forum_name");
- _forumType = Integer.parseInt(result.getString("forum_type"));
- _ownerID = Integer.parseInt(result.getString("forum_owner_id"));
- }
- result.close();
- statement.close();
- }
- catch (Exception e)
- {
- _log.warning("data error on Forum " + _forumId + " : " + e);
- e.printStackTrace();
- }
- finally
- {
- try
- {
- con.close();
- }
- catch (Exception e)
- {
- }
- }
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement("SELECT * FROM topics WHERE serverId=? AND topic_forum_id=? ORDER BY topic_id DESC");
- statement.setInt(1, _sqlDPId);
- statement.setInt(2, _forumId);
- ResultSet result = statement.executeQuery();
- while (result.next())
- {
- Topic t = new Topic(Topic.ConstructorType.RESTORE, _sqlDPId, Integer.parseInt(result.getString("topic_id")), Integer.parseInt(result.getString("topic_forum_id")), result.getString("topic_name"), Integer.parseInt(result.getString("topic_ownerid")), Integer.parseInt(result.getString("topic_permissions")));
- _topic.put(t.getID(), t);
- }
- result.close();
- statement.close();
- }
- catch (Exception e)
- {
- _log.warning("data error on Forum " + _forumId + " : " + e);
- e.printStackTrace();
- }
- finally
- {
- try
- {
- con.close();
- }
- catch (Exception e)
- {
- }
- }
- }
-
- public int getTopicSize()
- {
- if (_loaded == false)
- {
- load();
- _loaded = true;
- }
- return _topic.size();
- }
-
- public Topic gettopic(int j)
- {
- if (_loaded == false)
- {
- load();
- _loaded = true;
- }
- return _topic.get(j);
- }
-
- public void addtopic(Topic t)
- {
- if (_loaded == false)
- {
- load();
- _loaded = true;
- }
- _topic.put(t.getID(), t);
- }
-
- /**
- * @return
- */
- public int getID()
- {
- return _forumId;
- }
-
- public int getOwner()
- {
- return _ownerID;
- }
-
- public String getName()
- {
- if (_loaded == false)
- {
- load();
- _loaded = true;
- }
- return _forumName;
- }
-
- public int getType()
- {
- if (_loaded == false)
- {
- load();
- _loaded = true;
- }
- return _forumType;
- }
-
- /**
- * @param id
- */
- public void rmTopicByID(int id)
- {
- _topic.remove(id);
-
- }
-
- public final int getSqlDPId()
- {
- return _sqlDPId;
- }
-
- /**
- *
- */
- public void insertindb()
- {
- java.sql.Connection con = null;
- try
- {
- // TODO: needs to be changed
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement("INSERT INTO forums (serverId,forum_id,forum_name,forum_type,forum_owner_id) values (?,?,?,?,?)");
- statement.setInt(1, _sqlDPId);
- statement.setInt(2, _forumId);
- statement.setString(3, _forumName);
- statement.setInt(4, _forumType);
- statement.setInt(5, _ownerID);
- statement.execute();
- statement.close();
-
- }
- catch (Exception e)
- {
- _log.warning("error while saving new Forum to db " + e);
- }
- finally
- {
- try
- {
- con.close();
- }
- catch (Exception e)
- {
- }
- }
- }
-
- /**
- *
- */
- public void vload()
- {
- if (_loaded == false)
- {
- load();
- _loaded = true;
- }
- }
- }
|