-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
146 lines (129 loc) · 4.17 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#!/usr/bin/env node
'use strict';
/**
* Convert2ots
* @module Index
* @author EternityWall
* @license LPGL3
*/
// Dependencies
const fs = require('fs');
const OpenTimestamps = require('javascript-opentimestamps');
// Comment : const request = require('request-promise');
const program = require('commander');
// OpenTimestamps shortcuts
// const Timestamp = OpenTimestamps.Timestamp;
const Ops = OpenTimestamps.Ops;
// Const Utils = OpenTimestamps.Utils;
// Const Notary = OpenTimestamps.Notary;
const Context = OpenTimestamps.Context;
const DetachedTimestampFile = OpenTimestamps.DetachedTimestampFile;
// Local dependecies
const ConvertOTS = require('./libconvert.js');
const Tools = require('./tools.js');
// Parse parameters
program
.version(require('./package.json').version)
.description('Convert bitcoin timestamp proof ( like Chainpoint v2 ) to OpenTimestamps proof.')
.option('-c, --chainpoint <file>', 'Chainpoint proof')
.option('-o, --output <file>', 'Output OTS proof')
.option('-n, --nobitcoin', 'Use lite-verification with insight block explorer instead local Bitcoin node')
.parse(process.argv);
const chainpointFile = program.chainpoint;
const otsFile = program.output;
if (chainpointFile === undefined || otsFile === undefined) {
program.help();
process.exit(1);
}
// Read file
let chainpoint;
try {
chainpoint = JSON.parse(fs.readFileSync(chainpointFile, 'utf8'));
} catch (err) {
console.log('Read file error');
process.exit(1);
}
// Check chainpoint file
if (chainpoint['@context'] !== 'https://w3id.org/chainpoint/v2') {
console.error('Support only chainpoint v2');
process.exit(1);
}
if (chainpoint.type !== 'ChainpointSHA256v2') {
console.error('Support only ChainpointSHA256v2');
process.exit(1);
}
if (chainpoint.anchors === undefined) {
console.error('Support only timestamps with attestations');
process.exit(1);
}
// Output information
console.log('File type: ' + chainpoint.type);
console.log('Target hash: ' + chainpoint.targetHash);
// Check valid chainpoint merkle
const merkleRoot = ConvertOTS.calculateMerkleRoot(chainpoint.targetHash, chainpoint.proof);
if (merkleRoot !== chainpoint.merkleRoot) {
console.error('Invalid merkle root');
process.exit(1);
}
// Migrate proof
let timestamp;
try {
timestamp = ConvertOTS.migrationMerkle(chainpoint.targetHash, chainpoint.proof);
// Console.log(timestamp.strTree(0, 1));
} catch (err) {
console.log('Building error');
process.exit(1);
}
// Migrate attestation
try {
ConvertOTS.migrationAttestations(chainpoint.anchors, timestamp);
// Console.log(timestamp.strTree(0, 1));
} catch (err) {
console.log('Attestation error');
process.exit(1);
}
// Resolve unknown attestations
const promises = [];
const stampsAttestations = timestamp.directlyVerified();
stampsAttestations.forEach(subStamp => {
subStamp.attestations.forEach(attestation => {
// Console.log('Find op_return: ' + Tools.bytesToHex(attestation.payload));
const txHash = Tools.bytesToHex(attestation.payload);
promises.push(ConvertOTS.resolveAttestation(txHash, subStamp, program.nobitcoin));
});
});
Promise.all(promises.map(Tools.hardFail))
.then(() => {
// Print attestations
const attestations = timestamp.getAttestations();
attestations.forEach(attestation => {
console.log('OTS attestation: ' + attestation.toString());
});
// Store to file
saveTimestamp(otsFile, timestamp);
})
.catch(err => {
console.log('Resolve attestation error: ' + err);
process.exit(1);
});
// Save ots file
function saveTimestamp(filename, timestamp) {
const detached = new DetachedTimestampFile(new Ops.OpSHA256(), timestamp);
const ctx = new Context.StreamSerialization();
detached.serialize(ctx);
saveOts(filename, ctx.getOutput());
}
function saveOts(otsFilename, buffer) {
fs.exists(otsFilename, fileExist => {
if (fileExist) {
console.log('The timestamp proof \'' + otsFilename + '\' already exists');
} else {
fs.writeFile(otsFilename, buffer, 'binary', err => {
if (err) {
return console.log(err);
}
console.log('The timestamp proof \'' + otsFilename + '\' has been created!');
});
}
});
}