1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00

Merge pull request #358 from oceanprotocol/feature/remove_ddo_proof

remove ddo prof
This commit is contained in:
Matthias Kretschmann 2020-10-13 16:30:11 +02:00 committed by GitHub
commit 6ad85057a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 35 deletions

View File

@ -117,35 +117,10 @@ export class DDO {
}
/**
* Generates proof using personal sing.
* Generates and adds a simple hash proof on publicKey
* @param {Ocean} ocean Ocean instance.
* @param {string} publicKey Public key to be used on personal sign.
* @param {string} password Password if it's required.
* @return {Promise<Proof>} Proof object.
*/
public async generateProof(
ocean: Ocean,
publicKey: string,
password?: string
): Promise<Proof> {
const checksum = this.getChecksum()
const signature = await ocean.utils.signature.signText(checksum, publicKey, password)
return {
created: new Date().toISOString().replace(/\.[0-9]{3}/, ''),
creator: publicKey,
type: 'DDOIntegritySignature',
signatureValue: signature
}
}
/**
* Generates and adds a proof using personal sing on the DDO.
* @param {Ocean} ocean Ocean instance.
* @param {string} publicKey Public key to be used on personal sign.
* @param {string} password Password if it's required.
* @return {Promise<Proof>} Proof object.
* @return {Promise<void>}
*/
public async addProof(
ocean: Ocean,
@ -155,6 +130,14 @@ export class DDO {
if (this.proof) {
throw new Error('Proof already exists')
}
this.proof = await this.generateProof(ocean, publicKey, password)
this.proof = {
created: new Date().toISOString().replace(/\.[0-9]{3}/, ''),
creator: publicKey,
type: 'AddressHash',
signatureValue: Web3Provider.getWeb3()
.utils.sha3(publicKey)
// TODO: security/detect-unsafe-regex
.replace(/^0x([a-f0-9]{64})(:!.+)?$/i, '0x$1')
}
}
}

View File

@ -18,8 +18,6 @@ export enum CreateProgressStep {
DataTokenCreated,
EncryptingFiles,
FilesEncrypted,
GeneratingProof,
ProofGenerated,
StoringDdo,
DdoStored
}
@ -188,11 +186,7 @@ export class Assets extends Instantiable {
index: indexCount++
})) as Service[]
})
this.logger.log('Generating proof')
observer.next(CreateProgressStep.GeneratingProof)
await ddo.addProof(this.ocean, publisher.getId(), publisher.getPassword())
this.logger.log('Proof generated')
observer.next(CreateProgressStep.ProofGenerated)
await ddo.addProof(this.ocean, publisher.getId())
this.logger.log('Storing DDO')
observer.next(CreateProgressStep.StoringDdo)
// const storedDdo = await this.ocean.metadatacache.storeDDO(ddo)