tmp/src/master/mod.rs

80 lines
2.2 KiB
Rust
Raw Normal View History

2021-06-03 18:08:43 +05:30
/*
* mCaptcha - A proof of work based DoS protection system
* Copyright © 2021 Aravinth Manivannan <realravinth@batsense.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//! [Master] actor module that manages [MCaptcha] actors
use std::sync::mpsc::Receiver;
use actix::dev::*;
2021-06-03 19:40:45 +05:30
use derive_builder::Builder;
2021-06-03 18:19:57 +05:30
use serde::{Deserialize, Serialize};
2021-06-03 18:08:43 +05:30
2021-06-08 18:13:01 +05:30
use crate::errors::CaptchaResult;
2021-06-03 18:08:43 +05:30
pub mod embedded;
2021-06-05 19:55:35 +05:30
#[allow(
unused_variables,
unused_imports,
unused_variables,
dead_code,
unused_macros
)]
use crate::mcaptcha::*;
2021-06-08 18:13:01 +05:30
#[allow(
unused_variables,
unused_imports,
unused_variables,
dead_code,
unused_macros
)]
pub mod redis;
2021-06-03 19:40:45 +05:30
2021-06-03 18:08:43 +05:30
/// Describes actor handler trait impls that are required by a cache implementation
2021-06-03 19:40:45 +05:30
pub trait Master: actix::Actor + actix::Handler<AddVisitor> + actix::Handler<AddSite> {}
//+ actix::Handler<AddSite>
2021-06-03 18:08:43 +05:30
/// Message to add visitor to an [MCaptcha] actor
#[derive(Message)]
2021-06-08 18:13:01 +05:30
#[rtype(result = "Receiver<CaptchaResult<Option<AddVisitorResult>>>")]
2021-06-03 18:08:43 +05:30
pub struct AddVisitor(pub String);
2021-06-03 18:19:57 +05:30
/// Struct representing the return datatime of
/// [AddVisitor] message. Contains MCaptcha lifetime
/// and difficulty factor
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct AddVisitorResult {
pub duration: u64,
pub difficulty_factor: u32,
}
2021-06-03 19:40:45 +05:30
/// Message to add an [Counter] actor to [Master]
#[derive(Message, Builder)]
#[rtype(result = "()")]
pub struct AddSite {
pub id: String,
pub mcaptcha: MCaptcha,
}
2021-06-08 18:21:32 +05:30
impl AddVisitorResult {
fn new(m: &MCaptcha) -> Self {
AddVisitorResult {
duration: m.get_duration(),
difficulty_factor: m.get_difficulty(),
}
}
}