aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/modules.rs18
-rw-r--r--src/modules/cryptocurrency.rs77
-rw-r--r--src/modules/stocks.rs20
3 files changed, 105 insertions, 10 deletions
diff --git a/src/modules.rs b/src/modules.rs
index c9a5f1b..2d0b678 100644
--- a/src/modules.rs
+++ b/src/modules.rs
@@ -23,6 +23,7 @@ mod random;
mod remarks;
// mod robots;
mod api;
+mod cryptocurrency;
mod router;
pub mod search;
mod sitemap;
@@ -33,7 +34,20 @@ mod uptime;
pub fn module(router: &mut windmark::Router) {
crate::statelesses!(
- router, uptime, sitemap, search, remarks, blog, random, r#static, router,
- skills, contact, interests, api, stocks,
+ router,
+ uptime,
+ sitemap,
+ search,
+ remarks,
+ blog,
+ random,
+ r#static,
+ router,
+ skills,
+ contact,
+ interests,
+ api,
+ stocks,
+ cryptocurrency,
);
}
diff --git a/src/modules/cryptocurrency.rs b/src/modules/cryptocurrency.rs
new file mode 100644
index 0000000..bba0e58
--- /dev/null
+++ b/src/modules/cryptocurrency.rs
@@ -0,0 +1,77 @@
+// This file is part of Locus <https://github.com/gemrest/locus>.
+// Copyright (C) 2022-2022 Fuwn <[email protected]>
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, version 3.
+//
+// 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
+// General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
+//
+// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// SPDX-License-Identifier: GPL-3.0-only
+
+use once_cell::sync::Lazy;
+use serde::Deserialize;
+
+use crate::{route::track_mount, success};
+
+static REFERRALS: Lazy<Vec<Referral>> = Lazy::new(|| {
+ serde_json::from_str(include_str!(
+ "../../content/json/cryptocurrency_referrals.json"
+ ))
+ .unwrap()
+});
+
+#[derive(Deserialize)]
+struct Referral {
+ name: String,
+ description: String,
+ url: String,
+}
+
+pub fn module(router: &mut windmark::Router) {
+ track_mount(
+ router,
+ "/cryptocurrency/referrals",
+ "Want to start investing in cryptocurrency? Support me by using one of my \
+ referral links!",
+ Box::new(|context| {
+ success!(
+ format!(
+ "# Referrals\n\n=> /cryptocurrency Home\n=> /stocks Stock Market \
+ Dashboard\n\nWant to start investing? Support me by using one of \
+ my referral links!\n\n{}",
+ REFERRALS
+ .iter()
+ .map(|r| {
+ format!("## {}\n\n{}\n\n=> {} {0}", r.name, r.description, r.url)
+ })
+ .collect::<Vec<String>>()
+ .join("\n")
+ ),
+ context
+ )
+ }),
+ );
+
+ track_mount(
+ router,
+ "/cryptocurrency",
+ "Relevant information regarding cryptocurrency investing",
+ Box::new(|context| {
+ success!(
+ format!(
+ "# Cryptocurrency\n\n=> /stocks Stock Market Dashboard\n=> \
+ /cryptocurrency/referrals Referrals",
+ ),
+ context
+ )
+ }),
+ );
+}
diff --git a/src/modules/stocks.rs b/src/modules/stocks.rs
index 0d6950c..8de72c6 100644
--- a/src/modules/stocks.rs
+++ b/src/modules/stocks.rs
@@ -22,8 +22,10 @@ use serde::Deserialize;
use crate::{route::track_mount, success};
static REFERRALS: Lazy<Vec<Referral>> = Lazy::new(|| {
- serde_json::from_str(include_str!("../../content/json/stock_referrals.json"))
- .unwrap()
+ serde_json::from_str(include_str!(
+ "../../content/json/stock_market_referrals.json"
+ ))
+ .unwrap()
});
#[derive(Deserialize)]
@@ -104,13 +106,14 @@ pub fn module(router: &mut windmark::Router) {
track_mount(
router,
"/stocks/referrals",
- "Want to start investing? Support me by using one of my referral links!",
+ "Want to start investing in the stock market? Support me by using one of \
+ my referral links!",
Box::new(|context| {
success!(
format!(
- "# Referrals\n\n=> /stocks Home\n=> /stocks/search?action=go \
- Search!\n\nWant to start investing? Support me by using one of my \
- referral links!\n\n{}",
+ "# Referrals\n\n=> /stocks Home\n=> /cryptocurrency Cryptocurrency \
+ Dashboard\n=> /stocks/search?action=go Search!\n\nWant to start \
+ investing? Support me by using one of my referral links!\n\n{}",
REFERRALS
.iter()
.map(|r| {
@@ -131,7 +134,7 @@ pub fn module(router: &mut windmark::Router) {
Box::new(|context| {
success!(
format!(
- "# Stocks\n\n=> /stocks/search Symbol Search\n=> /stocks/referrals Referrals\n\n## Popular \
+ "# The Stock Market\n\n=> /stocks/search Symbol Search\n=> /stocks/referrals Referrals\n=> /cryptocurrency Cryptocurrency Dashboard\n\n## Popular \
Symbols\n\n### AAPL\n\n{}\n\n### TSLA\n\n{}\n\n## Credits\n\nFinancial data provided by\n\n=> https://finnhub.io/ Finnhub",
symbol_to_string("AAPL"),
symbol_to_string("TSLA")
@@ -153,7 +156,8 @@ pub fn module(router: &mut windmark::Router) {
}
let mut response = format!(
- "# {}\n\n=> /stocks Home\n=> /stocks/search?action=go Search!",
+ "# {}\n\n=> /stocks Home\n=> /cryptocurrency Cryptocurrency \
+ Dashboard\n=> /stocks/search?action=go Search!",
symbol
);