use std::sync::Arc;
use crossbeam_channel::{self, Receiver, Sender};
use log::debug;
use mcaptcha_pow_sha256::Config;
pub use mcaptcha_pow_sha256::ConfigBuilder;
use mcaptcha_pow_sha256::PoW;
use serde::{Deserialize, Serialize};
use crate::queue::Runnable;
#[derive(Clone, Serialize, Deserialize, Debug)]
pub struct PoWConfig {
pub string: String,
pub difficulty_factor: u32,
pub salt: String,
}
impl PoWConfig {
pub fn new(difficulty_factor: u32, salt: String) -> Self {
use crate::utils::get_random;
PoWConfig {
string: get_random(32),
difficulty_factor,
salt,
}
}
}
#[derive(Clone, Serialize, Deserialize, Debug)]
pub struct Work {
pub string: String,
pub result: String,
pub nonce: u64,
pub key: String,
}
impl From<Work> for PoW<String> {
fn from(w: Work) -> Self {
use mcaptcha_pow_sha256::PoWBuilder;
PoWBuilder::default()
.result(w.result)
.nonce(w.nonce)
.build()
.unwrap()
}
}
#[derive(Debug)]
pub struct QueuedWork {
tx: Sender<bool>,
pow: Arc<Config>,
work: PoW<String>,
string: String,
difficulty_factor: u32,
}
impl QueuedWork {
pub fn new(
pow: Arc<Config>,
work: PoW<String>,
string: String,
difficulty_factor: u32,
) -> (Self, Receiver<bool>) {
let (tx, rx) = crossbeam_channel::bounded(2);
(
Self {
tx,
pow,
work,
difficulty_factor,
string,
},
rx,
)
}
fn validate(&self) {
if !self
.pow
.is_sufficient_difficulty(&self.work, self.difficulty_factor)
{
if let Err(e) = self.tx.send(false) {
debug!("[ERROR] unable to send work result: {e}");
}
}
if !self.pow.is_valid_proof(&self.work, &self.string) {
if let Err(e) = self.tx.send(false) {
debug!("[ERROR] unable to send work result: {e}");
}
}
if let Err(e) = self.tx.send(true) {
debug!("[ERROR] unable to send work result: {e}");
}
}
}
impl Runnable for QueuedWork {
fn run(&self) {
self.validate()
}
}