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');
|
|
|
|
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);
|
|
|
|
},
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
|