2016-12-11 19:30:54 +01:00
|
|
|
// Copyright 2015, 2016 Parity Technologies (UK) Ltd.
|
2016-11-30 21:39:06 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-12-05 11:47:13 +01:00
|
|
|
import { bytesToHex, hex2Ascii } from '~/api/util/format';
|
2016-11-30 21:39:06 +01:00
|
|
|
|
|
|
|
import ABI from './abi/certifier.json';
|
|
|
|
|
2016-12-08 13:07:27 +01:00
|
|
|
const ZERO20 = '0x0000000000000000000000000000000000000000';
|
|
|
|
const ZERO32 = '0x0000000000000000000000000000000000000000000000000000000000000000';
|
2016-11-30 21:39:06 +01:00
|
|
|
|
|
|
|
export default class BadgeReg {
|
|
|
|
constructor (api, registry) {
|
|
|
|
this._api = api;
|
|
|
|
this._registry = registry;
|
|
|
|
|
|
|
|
registry.getContract('badgereg');
|
2016-12-08 13:07:27 +01:00
|
|
|
this.certifiers = []; // by id
|
2016-11-30 21:39:06 +01:00
|
|
|
this.contracts = {}; // by name
|
|
|
|
}
|
|
|
|
|
2016-12-15 13:48:24 +01:00
|
|
|
certifierCount () {
|
2016-12-23 16:43:13 +01:00
|
|
|
return this._registry
|
|
|
|
.getContract('badgereg')
|
2016-12-08 13:07:27 +01:00
|
|
|
.then((badgeReg) => {
|
|
|
|
return badgeReg.instance.badgeCount.call({}, [])
|
|
|
|
.then((count) => count.valueOf());
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
fetchCertifier (id) {
|
|
|
|
if (this.certifiers[id]) {
|
|
|
|
return Promise.resolve(this.certifiers[id]);
|
2016-11-30 21:39:06 +01:00
|
|
|
}
|
2016-12-23 16:43:13 +01:00
|
|
|
|
|
|
|
return this._registry
|
|
|
|
.getContract('badgereg')
|
2016-11-30 21:39:06 +01:00
|
|
|
.then((badgeReg) => {
|
2016-12-08 13:07:27 +01:00
|
|
|
return badgeReg.instance.badge.call({}, [ id ]);
|
|
|
|
})
|
|
|
|
.then(([ address, name ]) => {
|
2016-12-15 13:48:24 +01:00
|
|
|
if (address === ZERO20) {
|
|
|
|
throw new Error(`Certifier ${id} does not exist.`);
|
|
|
|
}
|
|
|
|
|
2016-12-08 13:07:27 +01:00
|
|
|
name = bytesToHex(name);
|
2016-12-15 13:48:24 +01:00
|
|
|
name = name === ZERO32
|
|
|
|
? null
|
|
|
|
: hex2Ascii(name);
|
2016-12-23 16:43:13 +01:00
|
|
|
|
2016-12-08 13:07:27 +01:00
|
|
|
return this.fetchMeta(id)
|
|
|
|
.then(({ title, icon }) => {
|
2016-12-09 13:35:10 +01:00
|
|
|
const data = { address, id, name, title, icon };
|
2016-12-08 13:07:27 +01:00
|
|
|
this.certifiers[id] = data;
|
|
|
|
return data;
|
|
|
|
});
|
2016-11-30 21:39:06 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-12-08 12:54:13 +01:00
|
|
|
fetchMeta (id) {
|
2016-12-23 16:43:13 +01:00
|
|
|
return this._registry
|
|
|
|
.getContract('badgereg')
|
2016-12-08 12:54:13 +01:00
|
|
|
.then((badgeReg) => {
|
|
|
|
return Promise.all([
|
|
|
|
badgeReg.instance.meta.call({}, [id, 'TITLE']),
|
|
|
|
badgeReg.instance.meta.call({}, [id, 'IMG'])
|
|
|
|
]);
|
|
|
|
})
|
|
|
|
.then(([ title, icon ]) => {
|
|
|
|
title = bytesToHex(title);
|
2016-12-08 13:07:27 +01:00
|
|
|
title = title === ZERO32 ? null : hex2Ascii(title);
|
2016-12-23 16:43:13 +01:00
|
|
|
|
|
|
|
if (bytesToHex(icon) === ZERO32) {
|
|
|
|
icon = null;
|
|
|
|
}
|
|
|
|
|
2016-12-08 12:54:13 +01:00
|
|
|
return { title, icon };
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-11-30 21:39:06 +01:00
|
|
|
checkIfCertified (certifier, address) {
|
|
|
|
if (!this.contracts[certifier]) {
|
|
|
|
this.contracts[certifier] = this._api.newContract(ABI, certifier);
|
|
|
|
}
|
2016-12-23 16:43:13 +01:00
|
|
|
|
2016-11-30 21:39:06 +01:00
|
|
|
const contract = this.contracts[certifier];
|
|
|
|
|
|
|
|
return contract.instance.certified.call({}, [address]);
|
|
|
|
}
|
|
|
|
}
|