2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2016-08-11 18:31:28 +02:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2016-08-11 18:31:28 +02:00
|
|
|
// 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.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2016-08-11 18:31:28 +02:00
|
|
|
// 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
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-08-11 18:31:28 +02:00
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
//! Account Metadata
|
2016-08-11 18:31:28 +02:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
use std::{collections::HashMap, time::Instant};
|
2019-02-07 14:34:24 +01:00
|
|
|
|
|
|
|
use ethkey::{Address, Password};
|
2020-08-05 06:08:03 +02:00
|
|
|
use serde_derive::{Deserialize, Serialize};
|
2019-02-07 14:34:24 +01:00
|
|
|
use serde_json;
|
|
|
|
|
|
|
|
/// Type of unlock.
|
|
|
|
#[derive(Clone, PartialEq)]
|
|
|
|
pub enum Unlock {
|
2020-08-05 06:08:03 +02:00
|
|
|
/// If account is unlocked temporarily, it should be locked after first usage.
|
|
|
|
OneTime,
|
|
|
|
/// Account unlocked permanently can always sign message.
|
|
|
|
/// Use with caution.
|
|
|
|
Perm,
|
|
|
|
/// Account unlocked with a timeout
|
|
|
|
Timed(Instant),
|
2019-02-07 14:34:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Data associated with account.
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct AccountData {
|
2020-08-05 06:08:03 +02:00
|
|
|
pub unlock: Unlock,
|
|
|
|
pub password: Password,
|
2019-02-07 14:34:24 +01:00
|
|
|
}
|
2016-08-11 18:31:28 +02:00
|
|
|
|
|
|
|
/// Collected account metadata
|
2017-01-30 10:59:46 +01:00
|
|
|
#[derive(Default, Clone, Debug, PartialEq, Serialize, Deserialize)]
|
2016-08-11 18:31:28 +02:00
|
|
|
pub struct AccountMeta {
|
2020-08-05 06:08:03 +02:00
|
|
|
/// The name of the account.
|
|
|
|
pub name: String,
|
|
|
|
/// The rest of the metadata of the account.
|
|
|
|
pub meta: String,
|
|
|
|
/// The 128-bit Uuid of the account, if it has one (brain-wallets don't).
|
|
|
|
pub uuid: Option<String>,
|
2016-08-11 18:31:28 +02:00
|
|
|
}
|
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
impl AccountMeta {
|
2020-08-05 06:08:03 +02:00
|
|
|
/// Read a hash map of Address -> AccountMeta
|
|
|
|
pub fn read<R>(reader: R) -> Result<HashMap<Address, Self>, serde_json::Error>
|
|
|
|
where
|
|
|
|
R: ::std::io::Read,
|
|
|
|
{
|
|
|
|
serde_json::from_reader(reader)
|
|
|
|
}
|
2019-02-07 14:34:24 +01:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
/// Write a hash map of Address -> AccountMeta
|
|
|
|
pub fn write<W>(m: &HashMap<Address, Self>, writer: &mut W) -> Result<(), serde_json::Error>
|
|
|
|
where
|
|
|
|
W: ::std::io::Write,
|
|
|
|
{
|
|
|
|
serde_json::to_writer(writer, m)
|
|
|
|
}
|
2019-02-07 14:34:24 +01:00
|
|
|
}
|