|
@@ -11,9 +11,9 @@ pub enum PrimaryFilter {
|
|
/// By revision ID
|
|
/// By revision ID
|
|
Revision(Vec<RevId>),
|
|
Revision(Vec<RevId>),
|
|
/// By accounts
|
|
/// By accounts
|
|
- Spends(Vec<AccountId>),
|
|
|
|
|
|
+ From(Vec<AccountId>),
|
|
/// By accounts
|
|
/// By accounts
|
|
- Receives(Vec<AccountId>),
|
|
|
|
|
|
+ To(Vec<AccountId>),
|
|
/// By transaction type
|
|
/// By transaction type
|
|
Type(Vec<Type>),
|
|
Type(Vec<Type>),
|
|
/// By transaction status
|
|
/// By transaction status
|
|
@@ -36,9 +36,9 @@ pub enum FilterableValue {
|
|
/// Revision ID
|
|
/// Revision ID
|
|
Revision(RevId),
|
|
Revision(RevId),
|
|
/// Account
|
|
/// Account
|
|
- Spends(AccountId),
|
|
|
|
|
|
+ From(AccountId),
|
|
/// Account
|
|
/// Account
|
|
- Receives(AccountId),
|
|
|
|
|
|
+ To(AccountId),
|
|
/// Status
|
|
/// Status
|
|
Status(Status),
|
|
Status(Status),
|
|
/// Transaction type
|
|
/// Transaction type
|
|
@@ -57,13 +57,10 @@ impl From<PrimaryFilter> for Vec<FilterableValue> {
|
|
.into_iter()
|
|
.into_iter()
|
|
.map(FilterableValue::Revision)
|
|
.map(FilterableValue::Revision)
|
|
.collect(),
|
|
.collect(),
|
|
- PrimaryFilter::Spends(accounts) => {
|
|
|
|
- accounts.into_iter().map(FilterableValue::Spends).collect()
|
|
|
|
|
|
+ PrimaryFilter::From(accounts) => {
|
|
|
|
+ accounts.into_iter().map(FilterableValue::From).collect()
|
|
}
|
|
}
|
|
- PrimaryFilter::Receives(accounts) => accounts
|
|
|
|
- .into_iter()
|
|
|
|
- .map(FilterableValue::Receives)
|
|
|
|
- .collect(),
|
|
|
|
|
|
+ PrimaryFilter::To(accounts) => accounts.into_iter().map(FilterableValue::To).collect(),
|
|
PrimaryFilter::Status(statuses) => {
|
|
PrimaryFilter::Status(statuses) => {
|
|
statuses.into_iter().map(FilterableValue::Status).collect()
|
|
statuses.into_iter().map(FilterableValue::Status).collect()
|
|
}
|
|
}
|
|
@@ -88,10 +85,10 @@ pub struct Filter {
|
|
pub revisions: Vec<RevId>,
|
|
pub revisions: Vec<RevId>,
|
|
/// List of accounts spending funds to query their transactions
|
|
/// List of accounts spending funds to query their transactions
|
|
#[serde(skip_serializing_if = "Vec::is_empty", default)]
|
|
#[serde(skip_serializing_if = "Vec::is_empty", default)]
|
|
- pub spends: Vec<AccountId>,
|
|
|
|
|
|
+ pub from: Vec<AccountId>,
|
|
/// List of accounts receiving funds to query their transactions
|
|
/// List of accounts receiving funds to query their transactions
|
|
#[serde(skip_serializing_if = "Vec::is_empty", default)]
|
|
#[serde(skip_serializing_if = "Vec::is_empty", default)]
|
|
- pub receives: Vec<AccountId>,
|
|
|
|
|
|
+ pub to: Vec<AccountId>,
|
|
/// List of transaction types-kind
|
|
/// List of transaction types-kind
|
|
#[serde(rename = "type", skip_serializing_if = "Vec::is_empty", default)]
|
|
#[serde(rename = "type", skip_serializing_if = "Vec::is_empty", default)]
|
|
pub typ: Vec<Type>,
|
|
pub typ: Vec<Type>,
|
|
@@ -131,10 +128,10 @@ impl Filter {
|
|
PrimaryFilter::Revision(std::mem::take(&mut self.revisions))
|
|
PrimaryFilter::Revision(std::mem::take(&mut self.revisions))
|
|
} else if !self.ids.is_empty() {
|
|
} else if !self.ids.is_empty() {
|
|
PrimaryFilter::TxId(std::mem::take(&mut self.ids))
|
|
PrimaryFilter::TxId(std::mem::take(&mut self.ids))
|
|
- } else if !self.spends.is_empty() {
|
|
|
|
- PrimaryFilter::Spends(std::mem::take(&mut self.spends))
|
|
|
|
- } else if !self.receives.is_empty() {
|
|
|
|
- PrimaryFilter::Receives(std::mem::take(&mut self.receives))
|
|
|
|
|
|
+ } else if !self.from.is_empty() {
|
|
|
|
+ PrimaryFilter::From(std::mem::take(&mut self.from))
|
|
|
|
+ } else if !self.to.is_empty() {
|
|
|
|
+ PrimaryFilter::To(std::mem::take(&mut self.to))
|
|
} else if !self.typ.is_empty() {
|
|
} else if !self.typ.is_empty() {
|
|
PrimaryFilter::Type(std::mem::take(&mut self.typ))
|
|
PrimaryFilter::Type(std::mem::take(&mut self.typ))
|
|
} else if !self.tags.is_empty() {
|
|
} else if !self.tags.is_empty() {
|
|
@@ -152,8 +149,8 @@ impl Filter {
|
|
pub fn prepare(mut self) -> Self {
|
|
pub fn prepare(mut self) -> Self {
|
|
self.ids.sort();
|
|
self.ids.sort();
|
|
self.revisions.sort();
|
|
self.revisions.sort();
|
|
- self.spends.sort();
|
|
|
|
- self.receives.sort();
|
|
|
|
|
|
+ self.from.sort();
|
|
|
|
+ self.to.sort();
|
|
self.typ.sort();
|
|
self.typ.sort();
|
|
self.status.sort();
|
|
self.status.sort();
|
|
self.tags.sort();
|
|
self.tags.sort();
|
|
@@ -196,10 +193,10 @@ impl Filter {
|
|
|
|
|
|
let accounts = base.accounts();
|
|
let accounts = base.accounts();
|
|
|
|
|
|
- if !self.spends.is_empty() {
|
|
|
|
|
|
+ if !self.from.is_empty() {
|
|
let mut found = false;
|
|
let mut found = false;
|
|
for account in accounts.spends.iter() {
|
|
for account in accounts.spends.iter() {
|
|
- if self.spends.binary_search(account).is_ok() {
|
|
|
|
|
|
+ if self.from.binary_search(account).is_ok() {
|
|
found = true;
|
|
found = true;
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
@@ -209,10 +206,10 @@ impl Filter {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- if !self.receives.is_empty() {
|
|
|
|
|
|
+ if !self.to.is_empty() {
|
|
let mut found = false;
|
|
let mut found = false;
|
|
for account in accounts.receives.iter() {
|
|
for account in accounts.receives.iter() {
|
|
- if self.receives.binary_search(account).is_ok() {
|
|
|
|
|
|
+ if self.to.binary_search(account).is_ok() {
|
|
found = true;
|
|
found = true;
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
@@ -246,13 +243,13 @@ impl Filter {
|
|
|
|
|
|
/// Adds a spending account to the filter
|
|
/// Adds a spending account to the filter
|
|
pub fn spends(mut self, account: AccountId) -> Self {
|
|
pub fn spends(mut self, account: AccountId) -> Self {
|
|
- self.spends.push(account);
|
|
|
|
|
|
+ self.from.push(account);
|
|
self
|
|
self
|
|
}
|
|
}
|
|
|
|
|
|
/// Adds a receiving account to the filter
|
|
/// Adds a receiving account to the filter
|
|
pub fn receives(mut self, account: AccountId) -> Self {
|
|
pub fn receives(mut self, account: AccountId) -> Self {
|
|
- self.receives.push(account);
|
|
|
|
|
|
+ self.to.push(account);
|
|
self
|
|
self
|
|
}
|
|
}
|
|
|
|
|
|
@@ -299,7 +296,7 @@ impl From<RevId> for Filter {
|
|
impl From<AccountId> for Filter {
|
|
impl From<AccountId> for Filter {
|
|
fn from(value: AccountId) -> Self {
|
|
fn from(value: AccountId) -> Self {
|
|
Filter {
|
|
Filter {
|
|
- spends: vec![value],
|
|
|
|
|
|
+ from: vec![value],
|
|
..Default::default()
|
|
..Default::default()
|
|
}
|
|
}
|
|
}
|
|
}
|