| | |
| | | final String objectId = WicketUtils.getObject(params);
|
| | | final String blobPath = WicketUtils.getPath(params);
|
| | |
|
| | | final String notFound = MessageFormat.format("Raw page failed to find {0} in {1} @ {2}",
|
| | | blobPath, repositoryName, objectId);
|
| | |
|
| | | String[] encodings = getEncodings();
|
| | | GitBlitWebSession session = GitBlitWebSession.get();
|
| | | UserModel user = session.getUser();
|
| | |
| | | // objectid referenced raw view
|
| | | byte [] binary = JGitUtils.getByteContent(r, objectId);
|
| | | if (binary == null) {
|
| | | logger.error(notFound);
|
| | | throw new AbortWithWebErrorCodeException(HttpServletResponse.SC_NOT_FOUND, notFound);
|
| | | final String objectNotFound = MessageFormat.format("Raw page failed to find object {0} in {1}",
|
| | | objectId, repositoryName);
|
| | | logger.error(objectNotFound);
|
| | | throw new AbortWithWebErrorCodeException(HttpServletResponse.SC_NOT_FOUND, objectNotFound);
|
| | | }
|
| | | contentType = "application/octet-stream";
|
| | | response.setContentType(contentType);
|
| | |
| | | } else {
|
| | | // standard raw blob view
|
| | | RevCommit commit = JGitUtils.getCommit(r, objectId);
|
| | | if (commit == null) {
|
| | | final String commitNotFound = MessageFormat.format("Raw page failed to find commit {0} in {1}",
|
| | | objectId, repositoryName);
|
| | | logger.error(commitNotFound);
|
| | | throw new AbortWithWebErrorCodeException(HttpServletResponse.SC_NOT_FOUND, commitNotFound);
|
| | | }
|
| | |
|
| | | String filename = blobPath;
|
| | | if (blobPath.indexOf('/') > -1) {
|
| | |
| | | map.put(ext.toLowerCase(), 3);
|
| | | }
|
| | |
|
| | | final String blobNotFound = MessageFormat.format("Raw page failed to find blob {0} in {1} @ {2}",
|
| | | blobPath, repositoryName, objectId);
|
| | |
|
| | | if (extension != null) {
|
| | | int type = 0;
|
| | | if (map.containsKey(extension)) {
|
| | |
| | | // image blobs
|
| | | byte[] image = JGitUtils.getByteContent(r, commit.getTree(), blobPath, true);
|
| | | if (image == null) {
|
| | | logger.error(notFound);
|
| | | throw new AbortWithWebErrorCodeException(HttpServletResponse.SC_NOT_FOUND, notFound);
|
| | | logger.error(blobNotFound);
|
| | | throw new AbortWithWebErrorCodeException(HttpServletResponse.SC_NOT_FOUND, blobNotFound);
|
| | | }
|
| | | contentType = "image/" + extension.toLowerCase();
|
| | | response.setContentType(contentType);
|
| | |
| | | // binary blobs (download)
|
| | | byte[] binary = JGitUtils.getByteContent(r, commit.getTree(), blobPath, true);
|
| | | if (binary == null) {
|
| | | logger.error(notFound);
|
| | | throw new AbortWithWebErrorCodeException(HttpServletResponse.SC_NOT_FOUND, notFound);
|
| | | logger.error(blobNotFound);
|
| | | throw new AbortWithWebErrorCodeException(HttpServletResponse.SC_NOT_FOUND, blobNotFound);
|
| | | }
|
| | | contentType = "application/octet-stream";
|
| | | response.setContentLength(binary.length);
|
| | |
| | | String content = JGitUtils.getStringContent(r, commit.getTree(),
|
| | | blobPath, encodings);
|
| | | if (content == null) {
|
| | | logger.error(notFound);
|
| | | throw new AbortWithWebErrorCodeException(HttpServletResponse.SC_NOT_FOUND, notFound);
|
| | | logger.error(blobNotFound);
|
| | | throw new AbortWithWebErrorCodeException(HttpServletResponse.SC_NOT_FOUND, blobNotFound);
|
| | | }
|
| | | contentType = "text/plain; charset=UTF-8";
|
| | | response.setContentType(contentType);
|
| | |
| | | String content = JGitUtils.getStringContent(r, commit.getTree(), blobPath,
|
| | | encodings);
|
| | | if (content == null) {
|
| | | logger.error(notFound);
|
| | | throw new AbortWithWebErrorCodeException(HttpServletResponse.SC_NOT_FOUND, notFound);
|
| | | logger.error(blobNotFound);
|
| | | throw new AbortWithWebErrorCodeException(HttpServletResponse.SC_NOT_FOUND, blobNotFound);
|
| | | }
|
| | | contentType = "text/plain; charset=UTF-8";
|
| | | response.setContentType(contentType);
|