1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
/* * Copyright (C) 2021 Aravinth Manivannan <realaravinth@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 <https://www.gnu.org/licenses/>. */ use lazy_static::lazy_static; use redis_module::{redis_command, redis_event_handler, redis_module}; use redis_module::{NextArg, RedisResult, REDIS_OK}; mod bucket; mod errors; #[allow(dead_code, unused_features, unused_variables)] mod mcaptcha; mod utils; use bucket::MCAPTCHA_BUCKET_TYPE; /// Initial allocation ammount of bucket[bucket::Bucket] pub const HIT_PER_SECOND: usize = 100; /// Bucket[bucket::Bucket] type version pub const REDIS_MCAPTCHA_BUCKET_TYPE_VERSION: i32 = 1; pub const PKG_NAME: &str = "mcap"; pub const PKG_VERSION: usize = 1; /// bucket timer key prefix // PREFIX_BUCKET_TIMER is used like this: // PREFIX_BUCKET_TIMER:PREFIX_BUCKET:time(where time is variable) // It contains PKG_NAME and key hash tag for node pinning // so, I guess it's okay for us to just use timer and not enfore pinning // and PKG_NAME pub const PREFIX_BUCKET_TIMER: &str = "timer:"; /// If buckets perform clean up at x instant, then buckets themselves will get cleaned /// up at x + BUCKET_EXPIRY_OFFSET(if they haven't already been cleaned up) pub const BUCKET_EXPIRY_OFFSET: u64 = 30; lazy_static! { /// node unique identifier, useful when running in cluster mode pub static ref ID: usize = { use rand::prelude::*; let mut rng = rand::thread_rng(); rng.gen() }; /// counter/captcha key prefix pub static ref PREFIX_COUNTER: String = format!("{}:captcha:{}:", PKG_NAME, *ID); /// bucket key prefix pub static ref PREFIX_BUCKET: String = format!("{}:bucket:{{{}}}:", PKG_NAME, *ID); } redis_module! { name: "mcaptcha_cahce", version: PKG_VERSION, data_types: [MCAPTCHA_BUCKET_TYPE,], commands: [ ["mcaptcha_cache.count", bucket::Bucket::counter_create, "write", 1, 1, 1], ["mcaptcha_cache.get", bucket::Bucket::get, "readonly", 1, 1, 1], ], event_handlers: [ [@EXPIRED @EVICTED: bucket::Bucket::on_delete], ] }