001: /* Copyright (c) JForum Team
002: * All rights reserved.
003: *
004: * Redistribution and use in source and binary forms,
005: * with or without modification, are permitted provided
006: * that the following conditions are met:
007: *
008: * 1) Redistributions of source code must retain the above
009: * copyright notice, this list of conditions and the
010: * following disclaimer.
011: * 2) Redistributions in binary form must reproduce the
012: * above copyright notice, this list of conditions and
013: * the following disclaimer in the documentation and/or
014: * other materials provided with the distribution.
015: * 3) Neither the name of "Rafael Steil" nor
016: * the names of its contributors may be used to endorse
017: * or promote products derived from this software without
018: * specific prior written permission.
019: *
020: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
021: * HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
022: * EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
023: * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
024: * MERCHANTABILITY AND FITNESS FOR A PARTICULAR
025: * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
026: * THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
027: * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
028: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES
029: * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
030: * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
031: * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
032: * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
033: * IN CONTRACT, STRICT LIABILITY, OR TORT
034: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
035: * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
036: * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
037: *
038: * The JForum Project
039: * http://www.jforum.net
040: */
041: package net.jforum.dao.generic;
042:
043: import java.sql.PreparedStatement;
044: import java.sql.ResultSet;
045: import java.sql.SQLException;
046: import java.sql.Timestamp;
047: import java.text.SimpleDateFormat;
048: import java.util.ArrayList;
049: import java.util.Date;
050: import java.util.List;
051:
052: import net.jforum.JForumExecutionContext;
053: import net.jforum.dao.DataAccessDriver;
054: import net.jforum.dao.SummaryDAO;
055: import net.jforum.entities.Post;
056: import net.jforum.exceptions.DatabaseException;
057: import net.jforum.util.DbUtils;
058: import net.jforum.util.preferences.ConfigKeys;
059: import net.jforum.util.preferences.SystemGlobals;
060:
061: /**
062: * @author Franklin Samir (franklin (at) portaljava [dot] com)
063: * @version $Id: GenericSummaryDAO.java,v 1.11 2006/08/23 02:13:41 rafaelsteil Exp $
064: */
065: public class GenericSummaryDAO extends AutoKeys implements SummaryDAO {
066: /**
067: * @see net.jforum.dao.SummaryDAO#selectById(Date, Date)
068: */
069: public List selectLastPosts(Date firstDate, Date lastDate) {
070: String query = SystemGlobals.getSql("SummaryDAO.selectPosts");
071: PreparedStatement p = null;
072: ResultSet rs = null;
073: try {
074: p = JForumExecutionContext.getConnection()
075: .prepareStatement(query);
076: p.setTimestamp(1, new Timestamp(firstDate.getTime()));
077: p.setTimestamp(2, new Timestamp(lastDate.getTime()));
078:
079: List posts = new ArrayList();
080: rs = p.executeQuery();
081:
082: while (rs.next()) {
083: posts.add(this .fillPost(rs));
084: }
085:
086: return posts;
087: } catch (SQLException e) {
088: throw new DatabaseException(e);
089: } finally {
090: DbUtils.close(rs, p);
091: }
092: }
093:
094: private Post fillPost(ResultSet rs) throws SQLException {
095: Post post = new Post();
096:
097: post.setId(rs.getInt("post_id"));
098: post.setTopicId(rs.getInt("topic_id"));
099: post.setForumId(rs.getInt("forum_id"));
100: post.setUserId(rs.getInt("user_id"));
101: Timestamp postTime = rs.getTimestamp("post_time");
102: post.setTime(postTime);
103: post.setSubject(rs.getString("post_subject"));
104: post.setText(rs.getString("post_text"));
105: post.setPostUsername(rs.getString("username"));
106:
107: SimpleDateFormat df = new SimpleDateFormat(SystemGlobals
108: .getValue(ConfigKeys.DATE_TIME_FORMAT));
109: post.setFormatedTime(df.format(postTime));
110:
111: post.setKarma(DataAccessDriver.getInstance().newKarmaDAO()
112: .getPostKarma(post.getId()));
113:
114: return post;
115: }
116:
117: public List listRecipients() {
118: String query = SystemGlobals
119: .getSql("SummaryDAO.selectAllRecipients");
120: PreparedStatement p = null;
121: ResultSet rs = null;
122: try {
123: p = JForumExecutionContext.getConnection()
124: .prepareStatement(query);
125:
126: List recipients = new ArrayList();
127: rs = p.executeQuery();
128:
129: String mail = null;
130: while (rs.next()) {
131: mail = rs.getString("user_email");
132: if (mail != null && !mail.trim().equals("")) {
133: recipients.add(mail);
134: }
135: }
136:
137: return recipients;
138: } catch (SQLException e) {
139: throw new DatabaseException(e);
140: } finally {
141: DbUtils.close(rs, p);
142: }
143: }
144: }
|