use of org.olat.core.gui.media.FileMediaResource in project OpenOLAT by OpenOLAT.
the class ResourcesMapper method handle.
@Override
public MediaResource handle(String relPath, HttpServletRequest request) {
String filename = null;
MediaResource resource = null;
try {
File root = new File(assessmentObjectUri.getPath());
String href = request.getParameter("href");
if (StringHelper.containsNonWhitespace(href)) {
filename = href;
} else if (StringHelper.containsNonWhitespace(relPath)) {
filename = relPath;
if (filename.startsWith("/")) {
filename = filename.substring(1, filename.length());
}
}
File file = new File(root.getParentFile(), filename);
if (file.exists()) {
if (file.getName().endsWith(".xml")) {
resource = new ForbiddenMediaResource();
} else if (FileUtils.isInSubDirectory(root.getParentFile(), file)) {
resource = new FileMediaResource(file, true);
} else {
resource = new ForbiddenMediaResource();
}
} else if (filename.endsWith("/raw/_noversion_/images/transparent.gif")) {
String realPath = request.getServletContext().getRealPath("/static/images/transparent.gif");
resource = new FileMediaResource(new File(realPath), true);
} else {
String submissionName = null;
File storage = null;
if (filename.startsWith("submissions/")) {
String submission = filename.substring("submissions/".length());
int candidateSessionIndex = submission.indexOf('/');
if (candidateSessionIndex > 0) {
submissionName = submission.substring(candidateSessionIndex + 1);
if (submissionDirectory != null) {
storage = submissionDirectory;
} else if (submissionDirectoryMaps != null) {
String sessionKey = submission.substring(0, candidateSessionIndex);
if (StringHelper.isLong(sessionKey)) {
try {
storage = submissionDirectoryMaps.get(new Long(sessionKey));
} catch (Exception e) {
log.error("", e);
}
}
}
}
}
if (storage != null && StringHelper.containsNonWhitespace(submissionName)) {
File submissionFile = new File(storage, submissionName);
if (submissionFile.exists()) {
resource = new FileMediaResource(submissionFile, true);
} else {
resource = new NotFoundMediaResource();
}
} else {
resource = new NotFoundMediaResource();
}
}
} catch (Exception e) {
log.error("", e);
resource = new NotFoundMediaResource();
}
return resource;
}
use of org.olat.core.gui.media.FileMediaResource in project OpenOLAT by OpenOLAT.
the class StaticServlet method doGet.
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
final String pathInfo = request.getPathInfo();
if (pathInfo == null) {
// huh? What's this, send not found, don't know what to do here
response.sendError(HttpServletResponse.SC_NOT_FOUND);
} else if (pathInfo.indexOf(NOVERSION) != -1) {
// no version provided - only remove mapper
String staticRelPath = pathInfo.substring(NOVERSION.length() + 1, pathInfo.length());
String normalizedRelPath = ServletUtil.normalizePath(staticRelPath);
if (normalizedRelPath == null) {
response.sendError(HttpServletResponse.SC_NOT_FOUND);
} else if (normalizedRelPath.endsWith("transparent.gif")) {
deliverStatic(request, response, pathInfo, normalizedRelPath, true);
} else {
deliverStatic(request, response, pathInfo, normalizedRelPath, false);
}
} else if (pathInfo.startsWith(STATIC_DIR_NAME)) {
String staticRelPath = pathInfo.substring(STATIC_DIR_NAME.length() + 1, pathInfo.length());
// customizing
CustomStaticFolderManager folderManager = CoreSpringFactory.getImpl(CustomStaticFolderManager.class);
File file = new File(folderManager.getRootFile(), staticRelPath);
if (file.exists()) {
if (file.isDirectory()) {
response.sendError(HttpServletResponse.SC_FORBIDDEN);
} else {
MediaResource resource = new FileMediaResource(file);
ServletUtil.serveResource(request, response, resource);
}
} else {
response.sendError(HttpServletResponse.SC_NOT_FOUND);
}
} else {
// version provided - remove it
int start = pathInfo.indexOf("/", 2);
int end = pathInfo.length();
if (start <= end) {
String staticRelPath = pathInfo.substring(start, end);
String normalizedRelPath = ServletUtil.normalizePath(staticRelPath);
if (normalizedRelPath == null) {
response.sendError(HttpServletResponse.SC_NOT_FOUND);
} else {
boolean expiration = !Settings.isDebuging();
deliverStatic(request, response, pathInfo, normalizedRelPath, expiration);
}
} else {
response.sendError(HttpServletResponse.SC_NOT_FOUND);
}
}
}
use of org.olat.core.gui.media.FileMediaResource in project openolat by klemens.
the class DisplayPortraitManager method getPortrait.
/**
* @param identity
* @return imageResource portrait
*/
public MediaResource getPortrait(File uploadDir, String portraitName) {
FileMediaResource imageResource = null;
File imgFile = new File(uploadDir, portraitName);
if (imgFile.exists()) {
imageResource = new FileMediaResource(imgFile);
imageResource.setCacheControlDuration(ServletUtil.CACHE_ONE_DAY);
}
return imageResource;
}
use of org.olat.core.gui.media.FileMediaResource in project openolat by klemens.
the class DisplayPortraitManager method getPortraitResource.
/**
* Get the portrait media resource by identity name (username)
* @param identity
* @return imageResource portrait
*/
private MediaResource getPortraitResource(String username, String portraitName) {
MediaResource imageResource = null;
File imgFile = getPortraitFile(username, portraitName);
if (imgFile != null && imgFile.exists()) {
imageResource = new FileMediaResource(imgFile);
}
return imageResource;
}
use of org.olat.core.gui.media.FileMediaResource in project openolat by klemens.
the class GTAAssignedTaskController method event.
@Override
protected void event(UserRequest ureq, Component source, Event event) {
if (downloadLink == source) {
if (taskFile.getName().endsWith(".html")) {
doPreview(ureq);
} else {
MediaResource mdr = new FileMediaResource(taskFile, true);
ureq.getDispatchResult().setResultingMediaResource(mdr);
}
} else if (downloadButton == source) {
MediaResource mdr;
if (taskFile.getName().endsWith(".html")) {
File taskDir = gtaManager.getTasksDirectory(courseEnv, gtaNode);
mdr = new HTMLZippedMediaResource(taskFile.getName(), taskDir);
} else {
mdr = new FileMediaResource(taskFile, true);
}
ureq.getDispatchResult().setResultingMediaResource(mdr);
}
}
Aggregations