Store NFT monitor state in database
This commit is contained in:
parent
a300a822ec
commit
b5365099a4
4 changed files with 31 additions and 14 deletions
|
@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Store NFT monitor state in database.
|
||||||
|
|
||||||
## [1.16.0] - 2023-03-08
|
## [1.16.0] - 2023-03-08
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -14,18 +14,27 @@ use mitra_config::EthereumConfig;
|
||||||
|
|
||||||
use crate::database::{get_database_client, DatabaseError, DbPool};
|
use crate::database::{get_database_client, DatabaseError, DbPool};
|
||||||
use crate::ipfs::utils::parse_ipfs_url;
|
use crate::ipfs::utils::parse_ipfs_url;
|
||||||
use crate::models::posts::queries::{
|
use crate::models::{
|
||||||
|
posts::queries::{
|
||||||
get_post_by_ipfs_cid,
|
get_post_by_ipfs_cid,
|
||||||
get_token_waitlist,
|
get_token_waitlist,
|
||||||
set_post_token_id,
|
set_post_token_id,
|
||||||
set_post_token_tx_id,
|
set_post_token_tx_id,
|
||||||
|
},
|
||||||
|
properties::queries::{
|
||||||
|
get_internal_property,
|
||||||
|
set_internal_property,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
use super::errors::EthereumError;
|
use super::errors::EthereumError;
|
||||||
use super::signatures::{sign_contract_call, CallArgs, SignatureData};
|
use super::signatures::{sign_contract_call, CallArgs, SignatureData};
|
||||||
use super::sync::SyncState;
|
use super::sync::SyncState;
|
||||||
use super::utils::parse_address;
|
use super::utils::parse_address;
|
||||||
|
|
||||||
|
const TOKEN_WAITLIST_MAP_PROPERTY_NAME: &str = "token_waitlist_map";
|
||||||
|
|
||||||
const TOKEN_WAIT_TIME: i64 = 10; // in minutes
|
const TOKEN_WAIT_TIME: i64 = 10; // in minutes
|
||||||
|
const TOKEN_WAIT_RESET_TIME: i64 = 12 * 60; // in minutes
|
||||||
|
|
||||||
/// Finds posts awaiting tokenization
|
/// Finds posts awaiting tokenization
|
||||||
/// and looks for corresponding Mint events
|
/// and looks for corresponding Mint events
|
||||||
|
@ -34,11 +43,18 @@ pub async fn process_nft_events(
|
||||||
contract: &Contract<Http>,
|
contract: &Contract<Http>,
|
||||||
sync_state: &mut SyncState,
|
sync_state: &mut SyncState,
|
||||||
db_pool: &DbPool,
|
db_pool: &DbPool,
|
||||||
token_waitlist_map: &mut HashMap<Uuid, DateTime<Utc>>,
|
|
||||||
) -> Result<(), EthereumError> {
|
) -> Result<(), EthereumError> {
|
||||||
let db_client = &**get_database_client(db_pool).await?;
|
let db_client = &**get_database_client(db_pool).await?;
|
||||||
|
|
||||||
// Create/update token waitlist map
|
// Create/update token waitlist map
|
||||||
|
let mut token_waitlist_map: HashMap<Uuid, DateTime<Utc>> =
|
||||||
|
get_internal_property(db_client, TOKEN_WAITLIST_MAP_PROPERTY_NAME)
|
||||||
|
.await?.unwrap_or_default();
|
||||||
|
token_waitlist_map.retain(|_, waiting_since| {
|
||||||
|
// Re-add token to waitlist if waiting for too long
|
||||||
|
let duration = Utc::now() - *waiting_since;
|
||||||
|
duration.num_minutes() < TOKEN_WAIT_RESET_TIME
|
||||||
|
});
|
||||||
let token_waitlist = get_token_waitlist(db_client).await?;
|
let token_waitlist = get_token_waitlist(db_client).await?;
|
||||||
for post_id in token_waitlist {
|
for post_id in token_waitlist {
|
||||||
if !token_waitlist_map.contains_key(&post_id) {
|
if !token_waitlist_map.contains_key(&post_id) {
|
||||||
|
@ -121,6 +137,11 @@ pub async fn process_nft_events(
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
set_internal_property(
|
||||||
|
db_client,
|
||||||
|
TOKEN_WAITLIST_MAP_PROPERTY_NAME,
|
||||||
|
&token_waitlist_map,
|
||||||
|
).await?;
|
||||||
sync_state.update(&contract.address(), to_block)?;
|
sync_state.update(&contract.address(), to_block)?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
use std::collections::HashMap;
|
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
use anyhow::Error;
|
use anyhow::Error;
|
||||||
use chrono::{DateTime, Utc};
|
|
||||||
use uuid::Uuid;
|
|
||||||
|
|
||||||
use mitra_config::Config;
|
use mitra_config::Config;
|
||||||
use mitra_utils::datetime::days_before_now;
|
use mitra_utils::datetime::days_before_now;
|
||||||
|
@ -34,7 +31,6 @@ use crate::models::{
|
||||||
pub async fn nft_monitor(
|
pub async fn nft_monitor(
|
||||||
maybe_blockchain: Option<&mut Blockchain>,
|
maybe_blockchain: Option<&mut Blockchain>,
|
||||||
db_pool: &DbPool,
|
db_pool: &DbPool,
|
||||||
token_waitlist_map: &mut HashMap<Uuid, DateTime<Utc>>,
|
|
||||||
) -> Result<(), Error> {
|
) -> Result<(), Error> {
|
||||||
let blockchain = match maybe_blockchain {
|
let blockchain = match maybe_blockchain {
|
||||||
Some(blockchain) => blockchain,
|
Some(blockchain) => blockchain,
|
||||||
|
@ -49,7 +45,6 @@ pub async fn nft_monitor(
|
||||||
collectible,
|
collectible,
|
||||||
&mut blockchain.sync_state,
|
&mut blockchain.sync_state,
|
||||||
db_pool,
|
db_pool,
|
||||||
token_waitlist_map,
|
|
||||||
).await?;
|
).await?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,6 @@ use std::collections::HashMap;
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
use chrono::{DateTime, Utc};
|
use chrono::{DateTime, Utc};
|
||||||
use uuid::Uuid;
|
|
||||||
|
|
||||||
use mitra_config::Config;
|
use mitra_config::Config;
|
||||||
|
|
||||||
|
@ -70,7 +69,6 @@ pub fn run(
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut interval = tokio::time::interval(Duration::from_secs(5));
|
let mut interval = tokio::time::interval(Duration::from_secs(5));
|
||||||
let mut token_waitlist_map: HashMap<Uuid, DateTime<Utc>> = HashMap::new();
|
|
||||||
loop {
|
loop {
|
||||||
interval.tick().await;
|
interval.tick().await;
|
||||||
|
|
||||||
|
@ -83,7 +81,6 @@ pub fn run(
|
||||||
nft_monitor(
|
nft_monitor(
|
||||||
maybe_blockchain.as_mut(),
|
maybe_blockchain.as_mut(),
|
||||||
&db_pool,
|
&db_pool,
|
||||||
&mut token_waitlist_map,
|
|
||||||
).await
|
).await
|
||||||
},
|
},
|
||||||
PeriodicTask::EthereumSubscriptionMonitor => {
|
PeriodicTask::EthereumSubscriptionMonitor => {
|
||||||
|
|
Loading…
Reference in a new issue