Skip to content

Commit

Permalink
Merge pull request #358 from oceanprotocol/feature/remove_ddo_proof
Browse files Browse the repository at this point in the history
remove ddo prof
  • Loading branch information
kremalicious authored Oct 13, 2020
2 parents b24a5b3 + b35e029 commit 6ad8505
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 35 deletions.
39 changes: 11 additions & 28 deletions src/ddo/DDO.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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')
}
}
}
8 changes: 1 addition & 7 deletions src/ocean/Assets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ export enum CreateProgressStep {
DataTokenCreated,
EncryptingFiles,
FilesEncrypted,
GeneratingProof,
ProofGenerated,
StoringDdo,
DdoStored
}
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 6ad8505

Please sign in to comment.