aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-09-14 18:03:43 -0700
committerFuwn <[email protected]>2022-09-14 18:03:43 -0700
commitd4b2c4135ec0d0d7fe60d061ead70d2a8fa9fb5d (patch)
treecbc4d90c2fc010624dbdcef7c67b0219841789b5
parentfeat(tor.gmi): add more links (diff)
downloadlocus-d4b2c4135ec0d0d7fe60d061ead70d2a8fa9fb5d.tar.xz
locus-d4b2c4135ec0d0d7fe60d061ead70d2a8fa9fb5d.zip
feat(modules): create cryptocurrency dashboard
-rw-r--r--content/blogs/news/20220914.gmi10
-rw-r--r--content/json/cryptocurrency_referrals.json32
-rw-r--r--content/json/stock_market_referrals.json (renamed from content/json/stock_referrals.json)5
-rw-r--r--src/modules.rs18
-rw-r--r--src/modules/cryptocurrency.rs77
-rw-r--r--src/modules/stocks.rs20
6 files changed, 146 insertions, 16 deletions
diff --git a/content/blogs/news/20220914.gmi b/content/blogs/news/20220914.gmi
index e57d4c8..c081ab1 100644
--- a/content/blogs/news/20220914.gmi
+++ b/content/blogs/news/20220914.gmi
@@ -5,4 +5,12 @@
## Miscellaneous
-* Remove trailing whitespace from news entries \ No newline at end of file
+* Remove trailing whitespace from news entries
+
+## Cryptocurrency
+
+* Create cryptocurrency dashboard + referrals page
+
+## Stock Market Dashboard
+
+* Add links to the cryptocurrency dashboard \ No newline at end of file
diff --git a/content/json/cryptocurrency_referrals.json b/content/json/cryptocurrency_referrals.json
new file mode 100644
index 0000000..964c6a6
--- /dev/null
+++ b/content/json/cryptocurrency_referrals.json
@@ -0,0 +1,32 @@
+[
+ {
+ "name": "TradingView",
+ "description": "Easily track and analyse all financial markets",
+ "url": "https://www.tradingview.com/gopro/?share_your_love=Fuwn"
+ },
+ {
+ "name": "Webull",
+ "description": "Invest in stocks, forex, cryptocurrencies, and more, all on one platform",
+ "url": "https://act.webull.com/on/teiSmEbEldwm/m32/inviteUs/"
+ },
+ {
+ "name": "Strike",
+ "description": "Send and receive money instantly. Buy bitcoin. Get paid in bitcoin.",
+ "url": "https://invite.strike.me/PWQW0K"
+ },
+ {
+ "name": "Cash App",
+ "description": "The easy way to send, spend, bank, and invest",
+ "url": "https://cash.app/app/JBQKJJZ"
+ },
+ {
+ "name": "FTX US",
+ "description": "Cryptocurrency Derivatives Exchange",
+ "url": "https://ftx.us/home/#a=fuwn"
+ },
+ {
+ "name": "Coinbase",
+ "description": "Buy and Sell Bitcoin, Ethereum, and more with trust",
+ "url": "https://coinbase.com/join/nefjwn"
+ }
+]
diff --git a/content/json/stock_referrals.json b/content/json/stock_market_referrals.json
index 6cf45f5..2161ea7 100644
--- a/content/json/stock_referrals.json
+++ b/content/json/stock_market_referrals.json
@@ -10,11 +10,6 @@
"url": "https://act.webull.com/on/teiSmEbEldwm/m32/inviteUs/"
},
{
- "name": "Strike",
- "description": "Send and receive money instantly. Buy bitcoin. Get paid in bitcoin.",
- "url": "https://invite.strike.me/PWQW0K"
- },
- {
"name": "Cash App",
"description": "The easy way to send, spend, bank, and invest",
"url": "https://cash.app/app/JBQKJJZ"
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
);