com.conecta.sat.utils.BuildDesactivarSoftPDF.java Source code

Java tutorial

Introduction

Here is the source code for com.conecta.sat.utils.BuildDesactivarSoftPDF.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.conecta.sat.utils;

import com.conecta.sat.exceptions.Excepciones;
import com.conecta.sat.utils.dto.AsignaSoftPDF;
import com.conecta.sat.utils.dto.ImportTokensPDF;
import com.lowagie.text.Chunk;
import com.lowagie.text.Document;
import com.lowagie.text.Element;
import com.lowagie.text.Font;
import com.lowagie.text.FontFactory;
import com.lowagie.text.Image;
import com.lowagie.text.Paragraph;
import com.lowagie.text.Phrase;
import com.lowagie.text.pdf.PdfPCell;
import com.lowagie.text.pdf.PdfPTable;
import com.lowagie.text.pdf.PdfWriter;
import com.lowagie.text.pdf.draw.LineSeparator;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
import java.util.Map;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.view.document.AbstractPdfView;

/**
 *
 * @author LuisOseguera
 */
public class BuildDesactivarSoftPDF extends AbstractPdfView {

    String logoPath;
    String fontName;
    float[] columnas = {};
    float fontSize = 8;
    int widthLogo;
    int heightLogo;

    public String getLogoPath() {
        return logoPath;
    }

    public void setLogoPath(String logoPath) {
        this.logoPath = logoPath;
    }

    public String getFontName() {
        return fontName;
    }

    public void setFontName(String fontName) {
        this.fontName = fontName;
    }

    public float[] getColumnas() {
        return columnas;
    }

    public void setColumnas(float[] columnas) {
        this.columnas = columnas;
    }

    public float getFontSize() {
        return fontSize;
    }

    public void setFontSize(float fontSize) {
        this.fontSize = fontSize;
    }

    public int getWidthLogo() {
        return widthLogo;
    }

    public void setWidthLogo(int widthLogo) {
        this.widthLogo = widthLogo;
    }

    public int getHeightLogo() {
        return heightLogo;
    }

    public void setHeightLogo(int heightLogo) {
        this.heightLogo = heightLogo;
    }

    @Override
    protected void buildPdfDocument(Map<String, Object> map, Document document, PdfWriter writer,
            HttpServletRequest hsr, HttpServletResponse hsr1) throws Exception {
        //        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
        System.out.println("Into BuildImportTokensPDF");
        hsr1.setContentType("application/pdf");
        DateFormat name = new SimpleDateFormat("ddMMyyyyhhmmss");
        hsr1.setHeader("Content-disposition",
                "attachment; filename=DesactivarToken" + name.format(new Date()) + ".pdf");
        AsignaSoftPDF list = (AsignaSoftPDF) map.get("list");
        String nombreUsuario = (String) map.get("nombreUsuario");

        PdfPTable table = new PdfPTable(5);
        table.setWidthPercentage(100);
        table.setSpacingBefore(10);

        Font font = FontFactory.getFont(FontFactory.HELVETICA);
        try {
            font.setFamily(fontName);
        } catch (Exception e) {
            font.setFamily("Verdana");
        }

        try {
            ServletContext servletContext = hsr.getSession().getServletContext();
            String relativeWebPath = logoPath;
            String absoluteDiskPath = servletContext.getRealPath(relativeWebPath);
            Image logo = Image.getInstance(absoluteDiskPath);
            //            Image logo = Image.getInstance("logo.png");
            System.out.println("La imagen se cargo correctamente");
            logo.scaleToFit(widthLogo, heightLogo);
            document.add(logo);
        } catch (Exception e) {
            System.err.println("ERROR" + Excepciones.getStackTrace(e));
            document.add(new Paragraph("Sin imagen " + logoPath));
        }
        font.setSize(fontSize + 3);
        Paragraph titulo = new Paragraph("Desactivacin de Token a cliente", font);
        titulo.setAlignment(Element.ALIGN_RIGHT);
        document.add(titulo);

        Chunk CONNECT = new Chunk(new LineSeparator(0.5f, 100, java.awt.Color.BLACK, Element.ALIGN_CENTER, 3.5f));
        document.add(CONNECT);

        DateFormat df = new SimpleDateFormat("dd/MM/yyyy hh:mm a");
        font.setSize(fontSize + 2);
        Paragraph fecha = new Paragraph("Cambio de Status Correcto", font);
        fecha.setAlignment(Element.ALIGN_CENTER);
        document.add(fecha);

        //        Paragraph pNombre = new Paragraph( nombreUsuario , font);
        //        pNombre.setAlignment(Element.ALIGN_RIGHT);
        //        document.add(pNombre);

        font.setSize(fontSize);
        font.setColor(java.awt.Color.white);

        // define table header cell
        PdfPCell cell = new PdfPCell();
        java.awt.Color color = java.awt.Color.LIGHT_GRAY;
        cell.setBackgroundColor(color);
        cell.setHorizontalAlignment(Element.ALIGN_CENTER);

        cell.setPadding(5);

        // write table header
        cell.setPhrase(new Phrase("Nombre empleado", font));
        table.addCell(cell);

        cell.setPhrase(new Phrase("Fecha y Hora", font));
        table.addCell(cell);

        cell.setPhrase(new Phrase("Cliente", font));
        table.addCell(cell);

        cell.setPhrase(new Phrase("Token", font));
        table.addCell(cell);

        cell.setPhrase(new Phrase("Tipo de Token", font));
        table.addCell(cell);

        //        cell.setPhrase(new Phrase("Centro Financiero", font));
        //        table.addCell(cell);
        //         
        //        cell.setPhrase(new Phrase("Tipo", font));
        //        table.addCell(cell);
        //        
        //        cell.setPhrase(new Phrase("Cliente nico", font));
        //        table.addCell(cell);
        //        
        //        cell.setPhrase(new Phrase("Fecha de ultima modificacin", font));
        //        table.addCell(cell);
        if (list.getToken().length() < 8) {
            list.setTipo("SoftToken");
        } else {
            list.setTipo("HardToken");
        }

        Font font2 = FontFactory.getFont(FontFactory.HELVETICA);
        try {
            font2.setFamily(fontName);
        } catch (Exception e) {
            font2.setFamily("Verdana");
        }
        font2.setSize(fontSize);
        font2.setColor(java.awt.Color.black);
        // write table row data
        //        for (ImportTokensPDF pdf : list) {
        //        ImportTokensPDF pdf;
        cell = new PdfPCell();
        cell.setHorizontalAlignment(Element.ALIGN_CENTER);
        cell.addElement(new Phrase(list.getNombre(), font2));
        table.addCell(cell);

        cell = new PdfPCell();
        cell.setHorizontalAlignment(Element.ALIGN_CENTER);
        cell.addElement(new Phrase(df.format(list.getFecha()), font2));
        table.addCell(cell);

        cell = new PdfPCell();
        cell.setHorizontalAlignment(Element.ALIGN_CENTER);
        cell.addElement(new Phrase(list.getCliente(), font2));
        table.addCell(cell);
        if (list.getToken().length() > 8) {
            list.setTipo("SOFTTOKEN");
        } else {
            list.setTipo("HARDTOKEN");
        }
        cell = new PdfPCell();
        cell.setHorizontalAlignment(Element.ALIGN_CENTER);
        cell.addElement(new Phrase(list.getToken(), font2));
        table.addCell(cell);

        cell = new PdfPCell();
        cell.setHorizontalAlignment(Element.ALIGN_CENTER);
        cell.addElement(new Phrase(list.getTipo(), font2));
        table.addCell(cell);

        //            cell = new PdfPCell();
        //            cell.setHorizontalAlignment( Element.ALIGN_CENTER );
        //            cell.addElement( new Phrase(pdf.getCentro(),font2) );
        //            table.addCell(cell);
        //            
        //            cell = new PdfPCell();
        //            cell.setHorizontalAlignment( Element.ALIGN_CENTER );
        //            cell.addElement( new Phrase(pdf.getTipo(),font2) );
        //            table.addCell(cell);
        //            
        //            cell = new PdfPCell();
        //            cell.setHorizontalAlignment( Element.ALIGN_CENTER );
        //            cell.addElement( new Phrase(pdf.getCliente(),font2) );
        //            table.addCell(cell);
        //            
        //            cell = new PdfPCell();
        //            cell.setHorizontalAlignment( Element.ALIGN_CENTER );
        //            cell.addElement( new Phrase(pdf.getLastUpdate(),font2) );
        //            table.addCell(cell);
        //        }

        document.add(table);
    }

}