85 lines
2.3 KiB
JavaScript
85 lines
2.3 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 * as actions from './signerActions';
|
||
|
|
||
|
export default class SignerMiddleware {
|
||
|
constructor (api) {
|
||
|
this._api = api;
|
||
|
}
|
||
|
|
||
|
toMiddleware () {
|
||
|
return (store) => (next) => (action) => {
|
||
|
let delegate;
|
||
|
|
||
|
switch (action.type) {
|
||
|
case 'signerStartConfirmRequest':
|
||
|
delegate = this.onConfirmStart;
|
||
|
break;
|
||
|
|
||
|
case 'signerStartRejectRequest':
|
||
|
delegate = this.onRejectStart;
|
||
|
break;
|
||
|
|
||
|
default:
|
||
|
next(action);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (!delegate) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
next(action);
|
||
|
delegate(store, action);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
onConfirmStart = (store, action) => {
|
||
|
const { id, password } = action.payload;
|
||
|
|
||
|
this._api.personal
|
||
|
.confirmRequest(id, {}, password)
|
||
|
.then((txHash) => {
|
||
|
console.log('confirmRequest', id, txHash);
|
||
|
if (!txHash) {
|
||
|
store.dispatch(actions.errorConfirmRequest({ id, err: 'Unable to confirm.' }));
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
store.dispatch(actions.successConfirmRequest({ id, txHash }));
|
||
|
})
|
||
|
.catch((error) => {
|
||
|
console.error('confirmRequest', id, error);
|
||
|
store.dispatch(actions.errorConfirmRequest({ id, err: error.message }));
|
||
|
});
|
||
|
}
|
||
|
|
||
|
onRejectStart = (store, action) => {
|
||
|
const id = action.payload;
|
||
|
|
||
|
this._api.personal
|
||
|
.rejectRequest(id)
|
||
|
.then(() => {
|
||
|
store.dispatch(actions.successRejectRequest({ id }));
|
||
|
})
|
||
|
.catch((error) => {
|
||
|
console.error('rejectRequest', id, error);
|
||
|
store.dispatch(actions.errorRejectRequest({ id, err: error.message }));
|
||
|
});
|
||
|
}
|
||
|
}
|