perkeep/server/go/camlistored/ui/blobinfo.js

98 lines
3.2 KiB
JavaScript
Raw Normal View History

2011-05-30 23:41:56 +00:00
/*
Copyright 2011 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Gets the |p| query parameter, assuming that it looks like a blobref.
function getBlobParam() {
var blobRef = getQueryParam('b');
return (blobRef && isPlausibleBlobRef(blobRef)) ? blobRef : null;
}
function blobInfoUpdate(bmap) {
var blobpre = document.getElementById('blobpre');
2011-05-31 17:20:28 +00:00
var bd = document.getElementById("blobdownload")
bd.innerHTML = "";
2011-05-30 23:41:56 +00:00
var blobref = getBlobParam();
if (!blobref) {
alert("no blobref?");
return;
}
var binfo = bmap[blobref];
if (!binfo) {
blobpre.innerHTML = "(not found)";
return;
}
blobpre.innerHTML = JSON.stringify(binfo, null, 2);
if (binfo.camliType) {
camliGetBlobContents(
blobref,
{
success: function(data) {
document.getElementById("blobdata").innerHTML = linkifyBlobRefs(data);
2011-05-31 17:20:28 +00:00
if (binfo.camliType == "file") {
try {
finfo = JSON.parse(data);
bd.innerHTML = "<a href=''></a>";
var fileName = finfo.fileName || blobref;
bd.firstChild.href = "./download/" + blobref + "/" + fileName;
bd.firstChild.innerText = fileName;
bd.innerHTML = "Download: " + bd.innerHTML;
} catch (x) {
}
}
2011-05-30 23:41:56 +00:00
},
fail: alert
});
} else {
2011-05-31 01:10:07 +00:00
document.getElementById("blobdata").innerHTML = "Unknown/binary data; <a href='" + camliBlobURL(blobref) + "'>download</a>";
2011-05-30 23:41:56 +00:00
}
if (binfo.camliType && binfo.camliType == "permanode") {
var claims = document.getElementById("claimsdiv");
claims.style.visibility = "";
camliGetPermanodeClaims(
blobref,
{
success: function(data) {
document.getElementById("claims").innerHTML = linkifyBlobRefs(JSON.stringify(data, null, 2));
},
fail: function(msg) {
alert(msg);
}
});
}
2011-05-30 23:41:56 +00:00
}
function blobInfoOnLoad() {
var blobref = getBlobParam();
if (!blobref) {
return
}
var blobpre = document.getElementById('blobpre');
blobpre.innerText = "(loading)";
camliDescribeBlob(
blobref,
{
success: blobInfoUpdate,
fail: function(msg) {
alert("Error describing blob " + blobref + ": " + msg);
}
}
);
}
window.addEventListener("load", blobInfoOnLoad);