1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
| /**
* Titre : <p>
* Description : <p>
* Copyright : Copyright (c) <p>
* Société : <p>
* @author
* @version 1.0
*/
package servlet.commun.compilDocsPdf;
import javax.servlet.http.*;
import javax.servlet.*;
import java.net.*;
import java.io.*;
import java.util.*;
import java.sql.*;
import com.etymon.pj.Pdf;
import com.etymon.pj.exception.PjException;
import classes.commun.utils.*;
import classes.commun.doc.*;
import classes.commun.pdf.PdfFromFlux;
import servlet.commun.base.ServletBase;
import classes.commun.connection.PoolManager;
//import classes.commun.droits.User;
//import classes.commun.droits.SerialUser;
import classes.commun.stats.Stat;
/**
* Cette servlet gère la concaténation de plusieurs documents pdf
*/
public class ServletCompilDocsPdf
extends ServletBase
{
private static PropertyFile propertyFlux = PropertyFileFactory.getPropertyFile("/flux.properties");
public static final String DOC = "1";
public static final String GRILLE = "2";
protected String getPropertyFileName()
{
return "/doc.properties";
}
public void init(ServletConfig config) throws ServletException
{
super.init(config);
}
public void doGet(HttpServletRequest request, HttpServletResponse response) throws
ServletException, IOException
{
verifUser(request, response);
ArrayList array = null;
// On fabrique le tableau des docs sélectionnes
array = makeArray(request);
Pdf pdfConcat = null;
// Pour chaque doc sélectionné
if (array != null)
{
Fichier fichier = null;
PdfFromFlux pdf = null;
for (int i = 0; i < array.size(); i++)
{
fichier = (Fichier) array.get(i);
// On récupère le doc courant sous forme Pdf
pdf = getPdf(fichier, response);
// Si le doc courant existe
if (pdf != null)
{
// On concatene le doc courant au pdf global
pdfConcat = concatPdf(pdfConcat, pdf);
}
} // For
if (pdfConcat == null)
{
pdfConcat = new Pdf();
}
// seul moyen de déterminer la taille du flux, qu'il faut ABSOLUMENT passer au client
// sinon le plugin reste bloqué pour les fichiers de petite taille (bug acrobat/MSIE)
ByteArrayOutputStream myBaos = new ByteArrayOutputStream();
pdfConcat.writeToStream(myBaos);
// On renvoie dans le flux Http le pdf concatene
String typeDocFlux = Formatter.nullToBlank(propertyFlux.getProperty("type_pdf"));
if (!"".equals(typeDocFlux))
{
response.setContentType(typeDocFlux);
response.setContentLength(myBaos.size());
}
BufferedOutputStream fluxOut = new BufferedOutputStream(response.getOutputStream());
myBaos.writeTo(fluxOut);
fluxOut.close();
}
}
/**
* Cette méthode renvoie la concaténation de pdf1 et pdf2
*/
private Pdf concatPdf(Pdf pdf1, Pdf pdf2)
{
if (pdf1 == null)
{
return pdf2;
}
else
{
Pdf pdfResult = pdf1;
try
{
pdfResult.appendPdfDocument(pdf2);
}
catch (PjException pe2)
{
pe2.printStackTrace();
}
finally
{
return pdfResult;
}
}
}
/**
* Cette méthode renvoie un pdf à partir de la demande de l'utilisateur d'un doc (Fichier doc)
*/
private PdfFromFlux getPdf(Fichier fichier, HttpServletResponse response)
{
PdfFromFlux pdf = null;
// On récupère les données du fichier
BufferedInputStream bis = fichier.getBufferedInputStream();
try
{
if (bis != null)
{
pdf = new PdfFromFlux(bis);
}
}
catch (Exception e)
{
log(e, "Pb dans la fabrication du pdf a partir du fichier " + fichier.getUrlDoc(),
LogWriter.ERROR);
}
finally
{
try
{
bis.close();
}
catch (IOException ioe)
{
log(ioe, "Pb a la fermeture du flux", LogWriter.ERROR);
}
finally
{
return pdf;
}
}
}
// renvoie une liste de docs, dans l'ordre demandé
private ArrayList analyseParamCourant(String paramCourant,
UserBean utilisateurCourant,
String idSession)
{
ArrayList result = new ArrayList();
String langueDoc = null;
String idora = null;
StringTokenizer st = new StringTokenizer(paramCourant, "|");
String tokenCourant = null;
StringTokenizer st2 = null;
HashMap mapParametres = new HashMap();
ArrayList listeDocuments = null;
HashMap mapDocuments = null;
Doc document = null;
while (st.hasMoreTokens())
{
tokenCourant = st.nextToken();
st2 = new StringTokenizer(tokenCourant, ",");
if (st2.countTokens() == 2)
{
idora = st2.nextToken();
langueDoc = st2.nextToken();
mapParametres.put(DocFactory.PARAM_IDDOC, idora);
mapDocuments = DocFactory.getMapDocs(mapParametres);
if (mapDocuments!=null)
{
listeDocuments = (ArrayList) mapDocuments.get(DocFactory.LISTE_DOCS);
if (listeDocuments != null && !listeDocuments.isEmpty())
{
document = (Doc) listeDocuments.get(0);
result.add(document);
// Log pour stat dans base web_histo_document
Stat.insertToHistoDoc(utilisateurCourant.getId().toString(), idora, langueDoc, "9", idSession);
}
}
}
}
return result;
}
/**
* Cette méthode renvoie une ArrayList de Fichier contenant l'ensemble des
* documents que l'utilisateur a choisit
*/
private ArrayList makeArray(HttpServletRequest request)
{
HttpSession session = request.getSession();
ArrayList resultat = new ArrayList();
String param = request.getParameter("exdocs");
if (param != null)
{
resultat = analyseParamCourant(param, (UserBean)SecurityManager.getSecurityUser(session), (String) session.getAttribute("stat_idconnection"));
}
return resultat;
}
/*
private HashMap execRequete(HashMap listeIdLangue, String listeId)
{
ResultSet rs = null;
String reqSql = null;
Connection myConn = null;
Statement stmt = null;
String urlDocCourant = null;
String codeStockageCourant = null;
String lienDoc = null;
String tmpFr = null;
String tmpUk = null;
String codeIdDoc = null;
Fichier fichierCourant = null;
HashMap mapDocs = new HashMap();
if ( (myConn = super.getConnection()) != null)
{
try
{
stmt = myConn.createStatement();
reqSql = super.getProperty("ReqSQL.ServletCompilDocsPdf");
reqSql = Formatter.replaceInString(reqSql, "%exiddoc%", listeId);
rs = stmt.executeQuery(reqSql);
while (rs.next())
{
codeIdDoc = rs.getString("exiddoc");
codeStockageCourant = rs.getString("excodestockage");
lienDoc = rs.getString("exliendoc");
tmpFr = rs.getString("exwebfr");
tmpUk = rs.getString("exwebuk");
if (Integer.parseInt( (String) listeIdLangue.get(codeIdDoc)) ==
Formatter.FR)
{
urlDocCourant = lienDoc + "/$FILE/" + tmpFr;
}
else
{
urlDocCourant = lienDoc + "/$FILE/" + tmpUk;
}
fichierCourant = new Fichier();
fichierCourant.setCodeStockage(codeStockageCourant);
fichierCourant.setUrlDoc(urlDocCourant);
log("ajout fichier courant" + fichierCourant.getUrlDoc(),
LogWriter.DEBUG);
mapDocs.put(codeIdDoc, fichierCourant);
} // if
} // try
catch (SQLException e)
{
log("erreur SQL. : " + reqSql, LogWriter.ERROR);
}
catch (Exception e)
{
log("erreur. " + e, LogWriter.ERROR);
}
finally
{
super.releaseDataBase(stmt);
super.freeConnection(myConn);
} // finally
} // if super.getConnection()
return mapDocs;
}
*/
} |
Partager