aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2022-11-22 11:16:11 -0800
committerBryan Newbold <bnewbold@robocracy.org>2022-11-22 11:16:11 -0800
commit4fd86c1b2191aaaabc2b8a6ec5fc1078d75a28b5 (patch)
tree94dd9d011c775349908072a07fe88f22c2965d7b
parent08837e7d340887560d74ee4ca09176baf1977317 (diff)
downloadadenosine-4fd86c1b2191aaaabc2b8a6ec5fc1078d75a28b5.tar.gz
adenosine-4fd86c1b2191aaaabc2b8a6ec5fc1078d75a28b5.zip
pds: human-readable CIDs etc in commit node in web UI
-rw-r--r--adenosine-pds/src/repo.rs17
-rw-r--r--adenosine-pds/templates/at_repo.html2
2 files changed, 18 insertions, 1 deletions
diff --git a/adenosine-pds/src/repo.rs b/adenosine-pds/src/repo.rs
index 9f5fca0..fd75432 100644
--- a/adenosine-pds/src/repo.rs
+++ b/adenosine-pds/src/repo.rs
@@ -11,6 +11,7 @@ use libipld::multihash::Code;
use libipld::prelude::Codec;
use libipld::store::DefaultParams;
use libipld::{Block, Cid, Ipld};
+use serde_json::{json, Value};
use std::borrow::Cow;
use std::collections::BTreeMap;
use std::collections::HashSet;
@@ -28,6 +29,22 @@ pub struct RepoCommit {
pub mst_cid: Cid,
}
+impl RepoCommit {
+ /// Returns a JSON object version of this struct, with CIDs and signatures in expected format
+ /// (aka, CID as a string, not an array of bytes).
+ pub fn to_pretty_json(&self) -> Value {
+ json!({
+ "sig": data_encoding::HEXUPPER.encode(&self.sig),
+ "commit_cid": self.commit_cid.to_string(),
+ "root_cid": self.root_cid.to_string(),
+ "did": self.did.to_string(),
+ "prev": self.prev.map(|v| v.to_string()),
+ "meta_cid": self.meta_cid.to_string(),
+ "mst_cid": self.mst_cid.to_string(),
+ })
+ }
+}
+
pub struct RepoStore {
db: BlockStore<libipld::DefaultParams>,
}
diff --git a/adenosine-pds/templates/at_repo.html b/adenosine-pds/templates/at_repo.html
index 31296db..cc45930 100644
--- a/adenosine-pds/templates/at_repo.html
+++ b/adenosine-pds/templates/at_repo.html
@@ -15,6 +15,6 @@
<pre><code>{{ describe|json }}</code></pre>
<h4>commit node</h4>
-<pre><code>{{ commit|json }}</code></pre>
+<pre><code>{{ commit.to_pretty_json()|json }}</code></pre>
{% endblock %}