* Use ethcore_dappsPort when constructing URLs (#3139) * Upon connect, retrieve the available api ports * Update dapps to load from dappsPort * Update dapps summary with dappsPort * Allow proxy to use dappsPort * Replace /api/ping with HEAD / * Dynamic port for available apps * Retrieve content images with dappsPort * Fix / * Transfer token dropdown image fix * IdentityIcon loads images via contentHash * Update apps fetch to cater for dev & prod * DRY up 127.0.0.1:${dappsPort} with ${dappsUrl} * Cleaning up polluted namespaces (#3143) * Renaming ethcore_ to parity_ * Renaming files * Renaming poluted EthSigning * Tidy up the namespaces * Renaming files to match new structure * Splitting EthSigning into separate traits * jsapi move ethcore.* -> parity.* * Move jsonrpc parity definitions * Update UI API calls for parity interfaces * Move jsapi signer interfaces from personal to signer * Update UI to use signer.* where applicable * Updsate jsapi subscriptions for signer * Fix dodgy merge. * Update README. * Fix some tests. * Move parity-only personal.* to parity.* * Update UI for personal -> parity API moves * Update subscription APIs after personal -> parity move * personal. generateAuthorizationToken -> parity. generateAuthorizationToken (UI) * enode, dappsPort & signerPort (UI) * Update subscription tests (accountsInfo) * subscription update * personal -> parity * Additional error logging on method failures * move postTransaction to parity * Additional debug info with method failures * Fix personal tests. * Console wrning shows parameters, error object does not * Include parity_ signing methods. * Console log http transport info * Fix failing tests * Add RPC stubs for parity_accounts. * Allow some secure built-in dapps * Use parity_accounts in place of accountsInfo * Improve error reporting * Cleanup GHH error handling Former-commit-id: 5a094ccb9f0596d0e07abc23504b80dc099ad584
203 lines
5.7 KiB
JavaScript
203 lines
5.7 KiB
JavaScript
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
// 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/>.
|
|
|
|
import {
|
|
registry as registryAbi,
|
|
tokenreg as tokenregAbi,
|
|
githubhint as githubhintAbi
|
|
} from '../../../contracts/abi';
|
|
|
|
import { loadToken, setTokenPending, deleteToken, setTokenData } from '../Tokens/actions';
|
|
|
|
const { api } = window.parity;
|
|
|
|
export const SET_LOADING = 'SET_LOADING';
|
|
export const setLoading = (isLoading) => ({
|
|
type: SET_LOADING,
|
|
isLoading
|
|
});
|
|
|
|
export const FIND_CONTRACT = 'FIND_CONTRACT';
|
|
export const loadContract = () => (dispatch) => {
|
|
dispatch(setLoading(true));
|
|
|
|
api.parity
|
|
.registryAddress()
|
|
.then((registryAddress) => {
|
|
console.log(`registry found at ${registryAddress}`);
|
|
const registry = api.newContract(registryAbi, registryAddress).instance;
|
|
|
|
return Promise.all([
|
|
registry.getAddress.call({}, [api.util.sha3('tokenreg'), 'A']),
|
|
registry.getAddress.call({}, [api.util.sha3('githubhint'), 'A'])
|
|
]);
|
|
})
|
|
.then(([ tokenregAddress, githubhintAddress ]) => {
|
|
console.log(`tokenreg was found at ${tokenregAddress}`);
|
|
|
|
const tokenregContract = api
|
|
.newContract(tokenregAbi, tokenregAddress);
|
|
|
|
const githubhintContract = api
|
|
.newContract(githubhintAbi, githubhintAddress);
|
|
|
|
dispatch(setContractDetails({
|
|
address: tokenregAddress,
|
|
instance: tokenregContract.instance,
|
|
raw: tokenregContract
|
|
}));
|
|
|
|
dispatch(setGithubhintDetails({
|
|
address: githubhintAddress,
|
|
instance: githubhintContract.instance,
|
|
raw: githubhintContract
|
|
}));
|
|
|
|
dispatch(loadContractDetails());
|
|
dispatch(subscribeEvents());
|
|
})
|
|
.catch((error) => {
|
|
console.error('loadContract error', error);
|
|
});
|
|
};
|
|
|
|
export const LOAD_CONTRACT_DETAILS = 'LOAD_CONTRACT_DETAILS';
|
|
export const loadContractDetails = () => (dispatch, getState) => {
|
|
const state = getState();
|
|
|
|
const instance = state.status.contract.instance;
|
|
|
|
Promise
|
|
.all([
|
|
api.eth.accounts(),
|
|
instance.owner.call(),
|
|
instance.fee.call()
|
|
])
|
|
.then(([accounts, owner, fee]) => {
|
|
console.log(`owner as ${owner}, fee set at ${fee.toFormat()}`);
|
|
|
|
const isOwner = accounts.filter(a => a === owner).length > 0;
|
|
|
|
dispatch(setContractDetails({
|
|
fee,
|
|
owner,
|
|
isOwner
|
|
}));
|
|
|
|
dispatch(setLoading(false));
|
|
})
|
|
.catch((error) => {
|
|
console.error('loadContractDetails error', error);
|
|
});
|
|
};
|
|
|
|
export const SET_CONTRACT_DETAILS = 'SET_CONTRACT_DETAILS';
|
|
export const setContractDetails = (details) => ({
|
|
type: SET_CONTRACT_DETAILS,
|
|
details
|
|
});
|
|
|
|
export const SET_GITHUBHINT_CONTRACT = 'SET_GITHUBHINT_CONTRACT';
|
|
export const setGithubhintDetails = (details) => ({
|
|
type: SET_GITHUBHINT_CONTRACT,
|
|
details
|
|
});
|
|
|
|
export const subscribeEvents = () => (dispatch, getState) => {
|
|
const state = getState();
|
|
|
|
const contract = state.status.contract.raw;
|
|
const previousSubscriptionId = state.status.subscriptionId;
|
|
|
|
if (previousSubscriptionId) {
|
|
contract.unsubscribe(previousSubscriptionId);
|
|
}
|
|
|
|
contract
|
|
.subscribe(null, {
|
|
fromBlock: 'latest',
|
|
toBlock: 'pending',
|
|
limit: 50
|
|
}, (error, logs) => {
|
|
if (error) {
|
|
console.error('setupFilters', error);
|
|
return;
|
|
}
|
|
|
|
if (!logs || logs.length === 0) return;
|
|
|
|
logs.forEach(log => {
|
|
const event = log.event;
|
|
const type = log.type;
|
|
const params = log.params;
|
|
|
|
if (event === 'Registered' && type === 'pending') {
|
|
return dispatch(setTokenData(params.id.toNumber(), {
|
|
tla: '...',
|
|
base: -1,
|
|
address: params.addr.value,
|
|
name: params.name.value,
|
|
isPending: true
|
|
}));
|
|
}
|
|
|
|
if (event === 'Registered' && type === 'mined') {
|
|
return dispatch(loadToken(params.id.value.toNumber()));
|
|
}
|
|
|
|
if (event === 'Unregistered' && type === 'pending') {
|
|
return dispatch(setTokenPending(params.id.value.toNumber(), true));
|
|
}
|
|
|
|
if (event === 'Unregistered' && type === 'mined') {
|
|
return dispatch(deleteToken(params.id.value.toNumber()));
|
|
}
|
|
|
|
if (event === 'MetaChanged' && type === 'pending') {
|
|
return dispatch(setTokenData(
|
|
params.id.value.toNumber(),
|
|
{ metaPending: true, metaMined: false }
|
|
));
|
|
}
|
|
|
|
if (event === 'MetaChanged' && type === 'mined') {
|
|
setTimeout(() => {
|
|
dispatch(setTokenData(
|
|
params.id.value.toNumber(),
|
|
{ metaPending: false, metaMined: false }
|
|
));
|
|
}, 5000);
|
|
|
|
return dispatch(setTokenData(
|
|
params.id.value.toNumber(),
|
|
{ metaPending: false, metaMined: true }
|
|
));
|
|
}
|
|
|
|
console.log('new log event', log);
|
|
});
|
|
})
|
|
.then((subscriptionId) => {
|
|
dispatch(setSubscriptionId(subscriptionId));
|
|
});
|
|
};
|
|
|
|
export const SET_SUBSCRIPTION_ID = 'SET_SUBSCRIPTION_ID';
|
|
export const setSubscriptionId = subscriptionId => ({
|
|
type: SET_SUBSCRIPTION_ID,
|
|
subscriptionId
|
|
});
|