Fetch Txids with memo containing search term

- The logic for fetching transaction ids with memos containing search term prepared
This commit is contained in:
Lukas Korba 2025-01-28 13:41:49 +01:00
parent 6cce0856f6
commit f145f8ece1
4 changed files with 16 additions and 27 deletions

View File

@ -46,33 +46,22 @@ class TransactionSQLDAO: TransactionRepository {
func isInitialized() async throws -> Bool {
true
}
// SELECT t2.txid, t2.memo
// FROM v_transactions t1
// JOIN v_tx_outputs t2 ON t1.txid = t2.txid
// WHERE t1.memo_count > 0
// AND t2.memo LIKE '%on ffi%';
@DBActor
func fetchFilteredMemos(searchTerm: String) async throws -> [(String, String)] {
// Compose the query
func fetchTxidsWithMemoContaining(searchTerm: String) async throws -> [Data] {
let query = transactionsView
.join(txOutputsView, on: transactionsView[UserMetadata.txid] == txOutputsView[UserMetadata.txid]) // Join on txid
.filter(transactionsView[UserMetadata.memoCount] > 0) // Filter memo_count > 0
.filter(txOutputsView[UserMetadata.memo].like("%\(searchTerm)%")) // Filter memo containing search term
// Execute the query and collect results
var results: [(String, String)] = []
for row in try connection().prepare(query) {
let txidBlob = row[transactionsView[UserMetadata.txid]]
let txid = Data(blob: txidBlob).hexEncodedString()
let memo = row[txOutputsView[UserMetadata.memo]]
print("__LD \(txid) \(memo)")
results.append((txid, memo))
}
.join(txOutputsView, on: transactionsView[UserMetadata.txid] == txOutputsView[UserMetadata.txid])
.filter(transactionsView[UserMetadata.memoCount] > 0)
.filter(txOutputsView[UserMetadata.memo].like("%\(searchTerm)%"))
return results
var txids: [Data] = []
for row in try connection().prepare(query) {
let txidBlob = try row.get(txOutputsView[UserMetadata.txid])
let txid = Data(blob: txidBlob)
txids.append(txid)
}
return txids
}
@DBActor

View File

@ -12,7 +12,7 @@ protocol TransactionRepository {
func countAll() async throws -> Int
func countUnmined() async throws -> Int
func isInitialized() async throws -> Bool
func fetchFilteredMemos(searchTerm: String) async throws -> [(String, String)]
func fetchTxidsWithMemoContaining(searchTerm: String) async throws -> [Data]
func find(rawID: Data) async throws -> ZcashTransaction.Overview
func find(offset: Int, limit: Int, kind: TransactionKind) async throws -> [ZcashTransaction.Overview]
func find(in range: CompactBlockRange, limit: Int, kind: TransactionKind) async throws -> [ZcashTransaction.Overview]

View File

@ -339,7 +339,7 @@ public protocol Synchronizer: AnyObject {
keySource: String?
) async throws -> AccountUUID
func queryMemosFor(searchTerm: String) async throws -> [(String, String)]
func fetchTxidsWithMemoContaining(searchTerm: String) async throws -> [Data]
/// Rescans the known blocks with the current keys.
///

View File

@ -435,8 +435,8 @@ public class SDKSynchronizer: Synchronizer {
return submitTransactions(transactions)
}
public func queryMemosFor(searchTerm: String) async throws -> [(String, String)] {
try await transactionRepository.fetchFilteredMemos(searchTerm: searchTerm)
public func fetchTxidsWithMemoContaining(searchTerm: String) async throws -> [Data] {
try await transactionRepository.fetchTxidsWithMemoContaining(searchTerm: searchTerm)
}
public func allReceivedTransactions() async throws -> [ZcashTransaction.Overview] {