org.semanticwb.resource.office.sem.OfficeResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SWBOffice Show documentation
Show all versions of SWBOffice Show documentation
MS Office plugin implementation for SemanticWebBuilder
The newest version!
/*
* 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.resource.office.sem;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.UUID;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
import javax.servlet.http.*;
import org.semanticwb.Logger;
import org.semanticwb.SWBPortal;
import org.semanticwb.SWBUtils;
import org.semanticwb.model.GenericObject;
import org.semanticwb.model.User;
import org.semanticwb.office.comunication.OfficeDocument;
import org.semanticwb.platform.SemanticObject;
import org.semanticwb.platform.SemanticProperty;
import org.semanticwb.portal.api.*;
// TODO: Auto-generated Javadoc
/**
* The Class OfficeResource.
*/
public class OfficeResource extends org.semanticwb.resource.office.sem.base.OfficeResourceBase
{
/** The Constant document. */
protected static final OfficeDocument document=new OfficeDocument();
/**
* Instantiates a new office resource.
*/
public OfficeResource()
{
super();
}
/**
* Instantiates a new office resource.
*
* @param obj the obj
*/
public OfficeResource(SemanticObject obj)
{
super(obj);
}
/** The log. */
private static Logger log = SWBUtils.getLogger(OfficeResource.class);
/**
* Do view.
*
* @param request the request
* @param response the response
* @param paramRequest the param request
* @throws SWBResourceException the sWB resource exception
* @throws IOException Signals that an I/O exception has occurred.
*/
@Override
public void doView(HttpServletRequest request, HttpServletResponse response, SWBParamRequest paramRequest) throws SWBResourceException, IOException
{
}
/**
* Validate view property values.
*
* @param valuesToValidate the values to validate
* @throws Exception the exception
*/
public void validateViewPropertyValues(HashMap valuesToValidate) throws Exception
{
}
/**
* Clean.
*
* @param dir the dir
*/
public static void clean(String dir)
{
File fdir = new File(SWBPortal.getWorkPath() + dir);
if (fdir.exists())
{
for (File file : fdir.listFiles())
{
if (file.isDirectory())
{
clean(file.getAbsolutePath());
}
else
{
file.delete();
}
}
fdir.delete();
}
}
/**
* Clean.
*
* @param dir the dir
*/
private void clean(File dir)
{
if (dir.exists() && dir.listFiles() != null)
{
for (File file : dir.listFiles())
{
if (file.isDirectory())
{
clean(file);
}
else
{
file.delete();
}
}
}
}
/**
* Clean.
*/
public void clean()
{
try
{
if (SWBPortal.getWorkPath() != null && getResourceBase() != null && getResourceBase().getWorkPath() != null)
{
File dir = new File(SWBPortal.getWorkPath() + getResourceBase().getWorkPath());
clean(dir);
}
}
catch (Exception e)
{
log.error(e);
}
}
/**
* Update file cache.
*
* @param user the user
*/
protected void updateFileCache(User user)
{
try
{
if(document==null)
{
log.error("updateFileCache:document nulo");
}
if(user==null)
{
log.error("updateFileCache:user nulo");
}
if(user.getLogin()==null)
{
log.error("updateFileCache:user.getLogin() nulo");
}
document.setUser(user.getLogin());
document.setPassword(user.getLogin());
String fileHTML=document.getContentFile(this.getRepositoryName(), this.getContent(), this.getVersionToShow(),user);
this.getResourceBase().setAttribute( "v3", null);
this.getResourceBase().setAttribute( OfficeDocument.FILE_HTML, fileHTML);
//this.getResourceBase().setAttribute( OfficeDocument.FILE_HTML, null);
this.getResourceBase().updateAttributesToDB();
SWBPortal.getResourceMgr().getResourceCacheMgr().removeResource(this.getResourceBase());
}
catch(Exception ex)
{
log.error(ex);
}
}
protected void updateFileCache(User user,SemanticObject obj)
{
try
{
document.setUser(user.getLogin());
document.setPassword(user.getLogin());
String rep=obj.getProperty(swboffice_repositoryName);
String content=obj.getProperty(swboffice_content);
String version=obj.getProperty(swboffice_versionToShow);
System.out.println("uri: "+obj.getURI());
System.out.println("rep: "+rep);
System.out.println("content: "+content);
System.out.println("version: "+version);
String fileHTML=document.getContentFile(rep, content,version,user);
this.getResourceBase().setAttribute( OfficeDocument.FILE_HTML, fileHTML);
this.getResourceBase().updateAttributesToDB();
SWBPortal.getResourceMgr().getResourceCacheMgr().removeResource(this.getResourceBase());
}
catch(Exception ex)
{
log.error(ex);
}
}
/**
* Load content.
*
* @param in the in
* @param user the user
*/
public void loadContent(InputStream in,User user)
{
clean();
File zipFile = null;
try
{
if (in != null)
{
String name = UUID.randomUUID().toString() + ".zip";
SWBPortal.writeFileToWorkPath(getResourceBase().getWorkPath() + "/" + name, in, user);
zipFile = new File(SWBPortal.getWorkPath() + getResourceBase().getWorkPath() + "/" + name);
ZipFile zip = new ZipFile(zipFile);
Enumeration entries = zip.entries();
while (entries.hasMoreElements())
{
ZipEntry entry = (ZipEntry) entries.nextElement();
if (!entry.isDirectory())
{
InputStream inEntry = zip.getInputStream(entry);
String file = entry.getName();
if (inEntry != null)
{
int pos = file.lastIndexOf("/");
if (pos != -1)
{
file = file.substring(pos + 1);
}
SWBPortal.writeFileToWorkPath(getResourceBase().getWorkPath() + "/" + file, inEntry, user);
}
else
{
log.error("No se puede sacar archivo de zip, para publicación de office entrada: " + entry.getName() + " tamaño: " + entry.getSize() + " archivo zip: " + zipFile.getAbsolutePath());
}
}
}
zip.close();
}
}
catch (Exception e)
{
log.error(e);
}
finally
{
if (zipFile != null && zipFile.exists())
{
zipFile.delete();
}
}
updateFileCache(user);
}
/**
* Load content preview.
*
* @param in the in
* @param dir the dir
* @param type the type
* @param user the user
*/
public static void loadContentPreview(InputStream in, String dir, String type,User user)
{
File zipFile = null;
try
{
if (in != null)
{
String name = UUID.randomUUID().toString() + ".zip";
SWBPortal.writeFileToWorkPath(dir + "/" + name, in, user);
zipFile = new File(SWBPortal.getWorkPath() + dir + "/" + name);
ZipFile zip = new ZipFile(zipFile);
Enumeration entries = zip.entries();
while (entries.hasMoreElements())
{
ZipEntry entry = (ZipEntry) entries.nextElement();
if (!entry.isDirectory())
{
InputStream inEntry = zip.getInputStream(entry);
String file = entry.getName();
if (!(type.toLowerCase().equals("excel") || type.toLowerCase().equals("ppt")))
{
int pos = file.lastIndexOf("/");
if (pos != -1)
{
file = file.substring(pos + 1);
}
}
SWBPortal.writeFileToWorkPath(dir + "/" + file, inEntry, user);
}
}
zip.close();
}
}
catch (Exception e)
{
log.error(e);
}
finally
{
if (zipFile != null && zipFile.exists())
{
zipFile.delete();
}
}
}
/**
* Gets the office resource.
*
* @param id the id
* @param model the model
* @return the office resource
*/
public static org.semanticwb.resource.office.sem.OfficeResource getOfficeResource(String id, org.semanticwb.model.SWBModel model)
{
return (org.semanticwb.resource.office.sem.OfficeResource)SWBPortal.getResourceMgr().getResource(model.getId(),id);
/*GenericObject obj = model.getSemanticObject().getModel().getGenericObject(model.getSemanticObject().getModel().getObjectUri(id, sclass), sclass);
if (obj == null)
{
obj = model.getSemanticObject().getModel().getGenericObject(model.getSemanticObject().getModel().getObjectUri(id, WordResource.sclass), WordResource.sclass);
if (obj == null)
{
obj = model.getSemanticObject().getModel().getGenericObject(model.getSemanticObject().getModel().getObjectUri(id, ExcelResource.sclass), ExcelResource.sclass);
if (obj == null)
{
obj = model.getSemanticObject().getModel().getGenericObject(model.getSemanticObject().getModel().getObjectUri(id, PPTResource.sclass), PPTResource.sclass);
}
}
}
return (org.semanticwb.resource.office.sem.OfficeResource) obj;*/
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy