/* Copyright (C) 2003-2006 Know Gate S.L. All rights reserved. C/Oña, 107 1º2 28050 Madrid (Spain) Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. The end-user documentation included with the redistribution, if any, must include the following acknowledgment: "This product includes software parts from hipergate (http://www.hipergate.org/)." Alternately, this acknowledgment may appear in the software itself, if and wherever such third-party acknowledgments normally appear. 3. The name hipergate must not be used to endorse or promote products derived from this software without prior written permission. Products derived from this software may not be called hipergate, nor may hipergate appear in their name, without prior written permission. This library 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. You should have received a copy of hipergate License with this code; if not, visit http://www.hipergate.org or mail to info@hipergate.org */ package com.knowgate.http.portlets; import java.io.File; import java.io.IOException; import java.io.ByteArrayOutputStream; import java.io.ByteArrayInputStream; import java.util.Date; import java.util.Properties; import java.util.Enumeration; import java.sql.SQLException; import javax.xml.transform.TransformerException; import javax.xml.transform.TransformerConfigurationException; import javax.portlet.*; import com.knowgate.debug.DebugFile; import com.knowgate.jdc.JDCConnection; import com.knowgate.dataobjs.*; import com.knowgate.dataxslt.StylesheetCache; import com.knowgate.misc.Gadgets; import com.knowgate.dfs.FileSystem; import com.knowgate.forums.NewsGroup; /** * Recent Posts Tabbed Dialog Portlet * @author Sergio Montoro Ten * @version 1.0 */ public class PostsForGroup extends GenericPortlet { public PostsForGroup() { } public PostsForGroup(HipergatePortletConfig oConfig) throws javax.portlet.PortletException { init(oConfig); } // --------------------------------------------------------------------------- public String render(RenderRequest req, String sEncoding) throws PortletException, IOException, IllegalStateException { ByteArrayInputStream oInStream; ByteArrayOutputStream oOutStream; if (DebugFile.trace) { DebugFile.writeln("Begin PostsForGroup.render()"); DebugFile.incIdent(); } final int iMaxRecent = 10; FileSystem oFS = new FileSystem(FileSystem.OS_PUREJAVA); String sOutput; String sDomainId = req.getProperty("domain"); String sWorkAreaId = req.getProperty("workarea"); String sUserId = req.getProperty("user"); String sNewsGrp = req.getProperty("newsgrp"); String sZone = req.getProperty("zone"); String sLang = req.getProperty("language"); String sTemplatePath = req.getProperty("template"); String sStorage = req.getProperty("storage"); String sFileDir = "file://" + sStorage + "domains" + File.separator + sDomainId + File.separator + "workareas" + File.separator + sWorkAreaId + File.separator + "cache" + File.separator + sUserId; String sCachedFile = "recentpoststab_" + req.getWindowState().toString() + ".xhtm"; // New for v4.0 String sOrderBy = req.getProperty("orderby"); if (null==sOrderBy) sOrderBy = DB.dt_published; if (sOrderBy.length()==0) sOrderBy = DB.dt_published; if (DebugFile.trace) { DebugFile.writeln ("template=" + sTemplatePath); DebugFile.writeln ("cache dir=" + sFileDir); DebugFile.writeln ("modified=" + req.getAttribute("modified")); DebugFile.writeln ("encoding=" + sEncoding); } Date oDtModified = (Date) req.getAttribute("modified"); if (null!=oDtModified) { try { File oCached = new File(sFileDir.substring(7)+File.separator+sCachedFile); if (!oCached.exists()) { oFS.mkdirs(sFileDir); } else if (oCached.lastModified()>oDtModified.getTime()) { sOutput = new String(oFS.readfile(sFileDir+File.separator+sCachedFile, sEncoding==null ? "ISO8859_1" : sEncoding)); if (DebugFile.trace) { DebugFile.writeln("cache hit " + sFileDir+File.separator+sCachedFile); DebugFile.decIdent(); DebugFile.writeln("End RecentPosts.render()"); } return sOutput; } } catch (Exception xcpt) { DebugFile.writeln(xcpt.getClass().getName() + " " + xcpt.getMessage()); } } String sXML = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><?xml-stylesheet type=\"text/xsl\"?>"; int iPosts = 0; if (req.getWindowState().equals(WindowState.MINIMIZED)) { sXML += "<posts/>"; } else { DBBind oDBB = (DBBind) getPortletContext().getAttribute("GlobalDBBind"); JDCConnection oCon = null; try { oCon = oDBB.getConnection("PostsForGroup"); NewsGroup oGrp = new NewsGroup(sNewsGrp); DBSubset oPosts = oGrp.getTopLevelMessages(oCon, iMaxRecent, sOrderBy); iPosts = oPosts.getRowCount(); oCon.close("PostsForGroup"); oCon = null; Date dtPub; int iDtPubColPos = oPosts.getColumnPosition(DB.dt_published); for (int p=0; p<iPosts; p++) { dtPub = oPosts.getDate(iDtPubColPos,p); oPosts.setElementAt(Gadgets.leftPad(String.valueOf(dtPub.getMonth()+1),'0',2)+"-"+Gadgets.leftPad(String.valueOf(dtPub.getDate()),'0',2)+" "+Gadgets.leftPad(String.valueOf(dtPub.getHours()),'0',2)+":"+Gadgets.leftPad(String.valueOf(dtPub.getMinutes()),'0',2), 5,p); } sXML += "<posts>\n"+oPosts.toXML("","newsmsg")+"</posts>"; } catch (SQLException e) { sXML += "<posts/>"; try { if (null != oCon) if (!oCon.isClosed()) oCon.close("PostsForGroup"); } catch (SQLException ignore) { } } } try { if (DebugFile.trace) DebugFile.writeln("new ByteArrayInputStream(" + String.valueOf(sXML.length()) + ")"); if (sEncoding==null) oInStream = new ByteArrayInputStream(sXML.getBytes()); else oInStream = new ByteArrayInputStream(sXML.getBytes(sEncoding)); oOutStream = new ByteArrayOutputStream(4000); Properties oProps = new Properties(); Enumeration oKeys = req.getPropertyNames(); while (oKeys.hasMoreElements()) { String sKey = (String) oKeys.nextElement(); oProps.setProperty(sKey, req.getProperty(sKey)); } // wend if (req.getWindowState().equals(WindowState.MINIMIZED)) oProps.setProperty("windowstate", "MINIMIZED"); else oProps.setProperty("windowstate", "NORMAL"); StylesheetCache.transform (sTemplatePath, oInStream, oOutStream, oProps); if (sEncoding==null) sOutput = oOutStream.toString(); else sOutput = oOutStream.toString("UTF-8"); oOutStream.close(); oInStream.close(); oInStream = null; oFS.writefilestr (sFileDir+File.separator+sCachedFile, sOutput, sEncoding==null ? "ISO8859_1" : sEncoding); } catch (TransformerConfigurationException tce) { if (DebugFile.trace) { DebugFile.writeln("TransformerConfigurationException " + tce.getMessageAndLocation()); try { DebugFile.write("--------------------------------------------------------------------------------\n"); DebugFile.write(FileSystem.readfile(sTemplatePath)); DebugFile.write("\n--------------------------------------------------------------------------------\n"); DebugFile.write(sXML); DebugFile.write("\n--------------------------------------------------------------------------------\n"); } catch (java.io.IOException ignore) { } catch (com.enterprisedt.net.ftp.FTPException ignore) { } DebugFile.decIdent(); } throw new PortletException("TransformerConfigurationException " + tce.getMessage(), tce); } catch (TransformerException tex) { if (DebugFile.trace) { DebugFile.writeln("TransformerException " + tex.getMessageAndLocation()); try { DebugFile.write("--------------------------------------------------------------------------------\n"); DebugFile.write(FileSystem.readfile(sTemplatePath)); DebugFile.write("\n--------------------------------------------------------------------------------\n"); DebugFile.write(sXML); DebugFile.write("\n--------------------------------------------------------------------------------\n"); } catch (java.io.IOException ignore) { } catch (com.enterprisedt.net.ftp.FTPException ignore) { } DebugFile.decIdent(); } throw new PortletException("TransformerException " + tex.getMessage(), tex); } if (DebugFile.trace) { DebugFile.decIdent(); DebugFile.writeln("End PostsForGroup.render()"); } return sOutput; } // render // -------------------------------------------------------------------------- public void render(RenderRequest req, RenderResponse res) throws PortletException, IOException, IllegalStateException { res.getWriter().write(render(req,res.getCharacterEncoding())); } }