diff options
author | James Moger <james.moger@gitblit.com> | 2014-02-28 12:14:48 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2014-02-28 12:14:48 -0500 |
commit | 182b87a291caff897b0d8a86a0a8013f6b7d6d99 (patch) | |
tree | 3549281b6bde5a350a7a9c669ab7cff77ac406ac /src/main | |
parent | e8d111b13197e8f9174cfabcc820cdf36b58048f (diff) | |
download | gitblit-182b87a291caff897b0d8a86a0a8013f6b7d6d99.tar.gz gitblit-182b87a291caff897b0d8a86a0a8013f6b7d6d99.zip |
Improve logging granularity of raw page missing commit, object, or blob
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/com/gitblit/wicket/pages/RawPage.java | 34 |
1 files changed, 21 insertions, 13 deletions
diff --git a/src/main/java/com/gitblit/wicket/pages/RawPage.java b/src/main/java/com/gitblit/wicket/pages/RawPage.java index 7b4eb045..c4357478 100644 --- a/src/main/java/com/gitblit/wicket/pages/RawPage.java +++ b/src/main/java/com/gitblit/wicket/pages/RawPage.java @@ -70,9 +70,6 @@ public class RawPage extends SessionPage { 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();
@@ -96,8 +93,10 @@ public class RawPage extends SessionPage { // 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);
@@ -110,6 +109,12 @@ public class RawPage extends SessionPage { } 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) {
@@ -130,6 +135,9 @@ public class RawPage extends SessionPage { 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)) {
@@ -140,8 +148,8 @@ public class RawPage extends SessionPage { // 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);
@@ -156,8 +164,8 @@ public class RawPage extends SessionPage { // 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);
@@ -193,8 +201,8 @@ public class RawPage extends SessionPage { 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);
@@ -210,8 +218,8 @@ public class RawPage extends SessionPage { 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);
|