org.semanticwb.portal.resources.VideoPublisher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SWBPortal Show documentation
Show all versions of SWBPortal Show documentation
SemanticWebBuilder Portal API components and utilities
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.portal.resources;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.semanticwb.Logger;
import org.semanticwb.SWBPlatform;
import org.semanticwb.SWBPortal;
import org.semanticwb.SWBUtils;
import org.semanticwb.model.Resource;
import org.semanticwb.portal.api.SWBActionResponse;
import org.semanticwb.portal.api.SWBParamRequest;
import org.semanticwb.portal.api.GenericAdmResource;
import org.semanticwb.portal.api.SWBResourceException;
// TODO: Auto-generated Javadoc
/**
* The Class VideoPublisher.
*/
public class VideoPublisher extends GenericAdmResource {
/** The log. */
private static Logger log = SWBUtils.getLogger(VideoPublisher.class);
/* (non-Javadoc)
* @see org.semanticwb.portal.api.GenericAdmResource#doView(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, SWBParamRequest)
*/
@Override
public void doView(HttpServletRequest request, HttpServletResponse response, SWBParamRequest paramsRequest) throws SWBResourceException, IOException {
Resource base = getResourceBase();
PrintWriter out = response.getWriter();
String youtube = base.getAttribute("code");
String google = base.getAttribute("google");
int width;
try {
width = Integer.parseInt(base.getAttribute("width", "320"));
} catch (NumberFormatException nfe) {
width = 320;
}
int height;
try {
height = Integer.parseInt(base.getAttribute("height", "240"));
} catch (NumberFormatException nfe) {
height = 240;
}
if (youtube != null && !youtube.trim().equals("")) {
out.println(youtube);
} else if (google != null && !google.trim().equals("")) {
String bgcolor = base.getAttribute("bgcolor") == null ? "#ffffff" : base.getAttribute("bgcolor");
out.println("");
} else {
final String webWorkPath = SWBPortal.getWebWorkPath() + base.getWorkPath() + "/";
String clsid, codebase;
String filename = webWorkPath + base.getAttribute("video");
String subtitles = base.getAttribute("xml");
String img = base.getAttribute("preview") == null ? null : webWorkPath + base.getAttribute("preview");
String standby = base.getAttribute("standby", "Loading Microsoft Windows Media Player components...");
String automatic = base.getAttribute("automatic", "0");
String controls = base.getAttribute("controls", "0");
String loop = base.getAttribute("loop", "0");
String bgcolor = base.getAttribute("bgcolor") == null ? "" : " style=\"background-color:" + base.getAttribute("bgcolor") + "\" ";
if (filename.endsWith(".flv")) {
//String viewer = base.getAttribute("viewer", "#000000").replaceFirst("#", "");
// String gradient = base.getAttribute("gradient", "#696969").replaceFirst("#", "");
// String panel = base.getAttribute("panel", "#696969").replaceFirst("#", "");
// String control = base.getAttribute("control", "#ffd700").replaceFirst("#", "");
// String over = base.getAttribute("over", "#ff4500").replaceFirst("#", "");
// String slider = base.getAttribute("slider", "#ffd700").replaceFirst("#", "");
boolean srt = Boolean.parseBoolean(base.getAttribute("srt", "false"));
boolean showswitchsubtitles = Boolean.parseBoolean(base.getAttribute("showswitchsubtitles", "false"));
boolean showstop = Boolean.parseBoolean(base.getAttribute("showstop", "false"));
boolean showtime = Boolean.parseBoolean(base.getAttribute("showtime", "false"));
boolean showvolume = Boolean.parseBoolean(base.getAttribute("showvolume", "false"));
boolean showfullscreen = Boolean.parseBoolean(base.getAttribute("showfullscreen", "false"));
boolean shortcut = Boolean.parseBoolean(base.getAttribute("shortcut", "false"));
boolean showiconplay = Boolean.parseBoolean(base.getAttribute("showiconplay", "false"));
String srtsize = base.getAttribute("srtsize", "11").replaceFirst("#", "");
String srtcolor = base.getAttribute("srtcolor", "#000000").replaceFirst("#", "");
String srtbgcolor = base.getAttribute("srtbgcolor", "#d3d3d3").replaceFirst("#", "");
String playercolor = base.getAttribute("playercolor", "#696969").replaceFirst("#", "");
String loadingcolor = base.getAttribute("loadingcolor", "#ff0000").replaceFirst("#", "");
String bgcolorflv = base.getAttribute("bgcolor", "#696969").replaceFirst("#", "");
String bgcolor1 = base.getAttribute("bgcolor1", "#696969").replaceFirst("#", "");
String bgcolor2 = base.getAttribute("bgcolor2", "#696969").replaceFirst("#", "");
String buttoncolor = base.getAttribute("buttoncolor", "#ffd700").replaceFirst("#", "");
String buttonovercolor = base.getAttribute("buttonovercolor", "#ff4500").replaceFirst("#", "");
String slidercolor1 = base.getAttribute("slidercolor1", "#ffd700").replaceFirst("#", "");
String slidercolor2 = base.getAttribute("slidercolor2", "#d3d3d3").replaceFirst("#", "");
String sliderovercolor = base.getAttribute("sliderovercolor", "#0000ff").replaceFirst("#", "");
String iconplaycolor = base.getAttribute("iconplaycolor", "#808080").replaceFirst("#", "");
String iconplaybgcolor = base.getAttribute("iconplaybgcolor", "#d3d3d3").replaceFirst("#", "");
String volumen = base.getAttribute("volumen", "#ff0000").replaceFirst("#", "");
String playeralpha = base.getAttribute("playeralpha", "#ff0000").replaceFirst("#", "");
String showplayer = base.getAttribute("showplayer");
String showloading = base.getAttribute("showloading");
String showmouse = base.getAttribute("showmouse");
out.println("");
} else if (filename.endsWith(".swf")) {
clsid = "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000";
codebase = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0";
out.println("");
} else if (filename.endsWith(".avi")) {
clsid = "clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95";
codebase = "http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701";
out.println("");
} else if (filename.endsWith(".wmv")) {
clsid = "clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95";
codebase = "http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701";
out.println("");
} else if (filename.endsWith(".mov")) {
// clsid = "clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B";
// codebase = "http://www.apple.com/qtactivex/qtplugin.cab";
// out.println("");
//
String viewer = base.getAttribute("viewer", "#000000").replaceFirst("#", "");
String gradient = base.getAttribute("gradient", "#696969").replaceFirst("#", "");
String panel = base.getAttribute("panel", "#696969").replaceFirst("#", "");
String control = base.getAttribute("control", "#ffd700").replaceFirst("#", "");
String over = base.getAttribute("over", "#ff4500").replaceFirst("#", "");
String slider = base.getAttribute("slider", "#ffd700").replaceFirst("#", "");
out.println("");
} else if (filename.endsWith(".rm")) {
clsid = "clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA";
codebase = "";
out.println("");
out.println("");
} else if (filename.endsWith(".mpg")) {
clsid = "clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95";
codebase = "http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701";
out.println("");
} else if (filename.endsWith(".mp2")) {
out.print("Formato no soportado.");
} else if (filename.endsWith(".mp4")) {
// clsid = "clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B";
// codebase = "http://www.apple.com/qtactivex/qtplugin.cab";
// out.println("");
String viewer = base.getAttribute("viewer", "#000000").replaceFirst("#", "");
String gradient = base.getAttribute("gradient", "#696969").replaceFirst("#", "");
String panel = base.getAttribute("panel", "#696969").replaceFirst("#", "");
String control = base.getAttribute("control", "#ffd700").replaceFirst("#", "");
String over = base.getAttribute("over", "#ff4500").replaceFirst("#", "");
String slider = base.getAttribute("slider", "#ffd700").replaceFirst("#", "");
out.println("");
} else {
out.print("Formato no soportado.");
}
}
out.flush();
out.close();
}
/* (non-Javadoc)
* @see org.semanticwb.portal.api.GenericResource#processAction(HttpServletRequest, SWBActionResponse)
*/
@Override
public void processAction(HttpServletRequest request, SWBActionResponse response) throws SWBResourceException, IOException {
Resource base = getResourceBase();
final String code = request.getParameter("video_code");
base.setAttribute("code", code);
base.setAttribute("preview", getPreview(code));
try {
base.updateAttributesToDB();
} catch (Exception e) {
log.error(e);
}
}
/**
* Gets the preview.
*
* @param code the code
* @return the preview
*/
private String getPreview(final String code) {
String ret = null;
//****************** is YouTube ***********************************
final String pre = "http://www.youtube.com/v/";
final String post = "\">";
int s = code.indexOf(pre);
if (s >= 0) {
int f = code.indexOf(post, s);
if (f > s) {
ret = code.substring(s + pre.length(), f);
int a = ret.indexOf('&');
if (a > 0) {
ret = ret.substring(0, a);
}
}
}
if (ret != null) {
ret = "http://i.ytimg.com/vi/" + ret + "/default.jpg";
}
return ret;
}
}