All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.semanticwb.model.FileUpload Maven / Gradle / Ivy

/*
 * SemanticWebBuilder es una plataforma para el desarrollo de portales y aplicaciones de integración,
 * colaboración y conocimiento, que gracias al uso de tecnología semántica puede generar contextos de
 * información alrededor de algún tema de interés o bien integrar información y aplicaciones de diferentes
 * fuentes, donde a la información se le asigna un significado, de forma que pueda ser interpretada y
 * procesada por personas y/o sistemas, es una creación original del Fondo de Información y Documentación
 * para la Industria INFOTEC, cuyo registro se encuentra actualmente en trámite.
 *
 * INFOTEC pone a su disposición la herramienta SemanticWebBuilder a través de su licenciamiento abierto al público (‘open source’),
 * en virtud del cual, usted podrá usarlo en las mismas condiciones con que INFOTEC lo ha diseñado y puesto a su disposición;
 * aprender de él; distribuirlo a terceros; acceder a su código fuente y modificarlo, y combinarlo o enlazarlo con otro software,
 * todo ello de conformidad con los términos y condiciones de la LICENCIA ABIERTA AL PÚBLICO que otorga INFOTEC para la utilización
 * del SemanticWebBuilder 4.0.
 *
 * INFOTEC no otorga garantía sobre SemanticWebBuilder, de ninguna especie y naturaleza, ni implícita ni explícita,
 * siendo usted completamente responsable de la utilización que le dé y asumiendo la totalidad de los riesgos que puedan derivar
 * de la misma.
 *
 * Si usted tiene cualquier duda o comentario sobre SemanticWebBuilder, INFOTEC pone a su disposición la siguiente
 * dirección electrónica:
 *  http://www.semanticwebbuilder.org
 */
package org.semanticwb.model;

//~--- non-JDK imports --------------------------------------------------------

import org.semanticwb.SWBPlatform;
import org.semanticwb.platform.SemanticObject;
import org.semanticwb.platform.SemanticProperty;

//~--- JDK imports ------------------------------------------------------------

import javax.servlet.http.HttpServletRequest;

// TODO: Auto-generated Javadoc
/**
 * Displays a fileupload form element (used when property is modeled at this form in an ontology).
 * 
 * @author jorge.jimenez
 */
public class FileUpload extends org.semanticwb.model.base.FileUploadBase {
    
    /**
     * Instantiates a new file upload.
     * 
     * @param base the base
     */
    public FileUpload(org.semanticwb.platform.SemanticObject base) {
        super(base);
    }

    /* (non-Javadoc)
     * @see org.semanticwb.model.base.FormElementBase#renderElement(javax.servlet.http.HttpServletRequest, org.semanticwb.platform.SemanticObject, org.semanticwb.platform.SemanticProperty, java.lang.String, java.lang.String, java.lang.String)
     */
    /**
     * Render element.
     * 
     * @param request the request
     * @param obj the obj
     * @param prop the prop
     * @param type the type
     * @param mode the mode
     * @param lang the lang
     * @return the string
     */
    @Override
    public String renderElement(HttpServletRequest request, SemanticObject obj, SemanticProperty prop, String propName, String type,
                                String mode, String lang) {
        if (obj == null) {
            obj = new SemanticObject();
        }

        String ret = "";

        if (type.endsWith("iphone")) {
            ret = renderIphone(request, obj, prop, propName, type, mode, lang);
        } else {
            ret = renderXHTML(request, obj, prop, propName, type, mode, lang);
        }

        return ret;
    }

    /**
     * Render iphone.
     * 
     * @param request the request
     * @param obj the obj
     * @param prop the prop
     * @param type the type
     * @param mode the mode
     * @param lang the lang
     * @return the string
     */
    public String renderIphone(HttpServletRequest request, SemanticObject obj, SemanticProperty prop, String propName, String type,
                               String mode, String lang) {
        return "";
    }

    /**
     * Render xhtml.
     * 
     * @param request the request
     * @param obj the obj
     * @param prop the prop
     * @param type the type
     * @param mode the mode
     * @param lang the lang
     * @return the string
     */
    public String renderXHTML(HttpServletRequest request, SemanticObject obj, SemanticProperty prop, String propName, String type,
                              String mode, String lang) {


        // boolean DOJO=false;
        // if(type.equals("dojo"))DOJO=true;
        String         ret      = "";
        String         name     = propName;
        String         label    = prop.getDisplayName(lang);
        SemanticObject sobj     = prop.getDisplayProperty();
        boolean        required = prop.isRequired();
        String         pmsg     = null;
        String         imsg     = null;


        if (sobj != null) {
            DisplayProperty dobj = new DisplayProperty(sobj);

            pmsg = dobj.getDisplayPromptMessage(lang);
            imsg = dobj.getDisplayInvalidMessage(lang);
        }

        if (required && imsg == null) {
            imsg = label + " es requerido.";

            if (lang.equals("en")) {
                imsg = label + " is required.";
            }
        }

        if (pmsg == null) {
            pmsg = "Captura " + label + ".";

            if (lang.equals("en")) {
                pmsg = "Enter " + label + ".";
            }
        }

        String value = obj.getProperty(prop);

        if (value == null) {
            value = "";
        }

      
        if (mode.equals("edit") || mode.equals("create")) {
            String attchMsg = "";
            String ext= "";
            if(getFileFilter()!=null) ext=getFileFilter();
            if(ext.trim().length()==0 && request.getAttribute("extensions")!=null)  ext=(String)request.getAttribute("extensions");
            if(ext.trim().length()==0)  ext= "jpg|jpeg|gif|png";


            if ((name != null) && (request.getAttribute("attachCount_" + name) != null)) {
                attchMsg = lang.equals("en")?"Existing files":"Archivo(s) existentes:";
                attchMsg=attchMsg+"
"; int count = Integer.parseInt((String) request.getAttribute("attachCount_" + name)); for (int i = 1; i <= count; i++) { String fileName = (String) request.getAttribute("attach_" + name + "_" + i); int pos = fileName.lastIndexOf("/"); if (pos > -1) { fileName = fileName.substring(pos + 1); } String target = ""; if (request.getAttribute("attachTarget_" + name + "_" + i) != null) { target = (String) request.getAttribute("attachTarget_" + name + "_" + i); } if (request.getAttribute("attachRemovePath_" + name + "_" + i) != null) { attchMsg += "X "; } attchMsg += i + ")" + fileName + ""; attchMsg += "
"; } } String formName = (String) request.getAttribute("formName"); String fileNotEmpty = lang.equals("en")?"File field must not be empty":"El campo archivo no debe estar vacio"; String extAllowed=lang.equals("en")?"Allowed extensions":"Extensiones permitidas"; // Página ejemplo de implementación:http://blog.tremend.ro/2007/03/01/ajax-file-upload-monitoring-monitor-your-file-upload-with-dwr-and-commons-fileupload/ // Fecha de implemetación:26/Febrero/2009 // TODO:Haecer que este Bloque solo sea puesto una vez, independientemente de cuantos fileuploads tiene mi forma ret = "\n" + "\n" + "\n" + "\n" + "\n"; // TODO:Haecer que esta linea solo sea puesta una vez, independientemente de cuantos fileuploads tiene mi forma // ret += "
" + // // attchMsg + "
" // + "
\n" // + "
\n" // + "
\n" // + "
\n" + "
\n" + "
\n"; ret += "
" + // ""+ attchMsg + "
" + "
\n" + "
\n" + "
\n" + "
\n" + "
\n" + "
\n"; ret += "\n"; } else if (mode.equals("view")) { ret = "" + value + ""; } return ret; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy