Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Passing validator base url as an argument #439

Merged
merged 1 commit into from
Nov 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions explorer/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion explorer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
# no point in importing entire futtures crate
clap = "2.33"
# no point in importing entire futures crate
futures-util = "0.3"
log = "0.4"
reqwest = "0.10.8"
Expand Down
13 changes: 6 additions & 7 deletions explorer/src/jobs/mixmining.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
use crate::utils::file;
use reqwest::Error;

use crate::utils::file;
const RELATIVE_PATH: &str = "api/mixmining/fullreport";

pub async fn renew_periodically(validator_base_url: &str) -> Result<(), Error> {
let url = format!("{}/{}", validator_base_url, RELATIVE_PATH);

pub async fn renew_periodically() -> Result<(), Error> {
let topology_json =
reqwest::get("http://qa-validator.nymtech.net:8081/api/mixmining/fullreport")
.await?
.text()
.await?;
let topology_json = reqwest::get(&url).await?.text().await?;
file::save(topology_json, "public/downloads/mixmining.json");
Ok(())
}
6 changes: 3 additions & 3 deletions explorer/src/jobs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ use tokio::time::{self, Duration};
mod mixmining;
mod topology;

pub async fn start() {
pub async fn start(validator_base_url: &str) {
let mut timer = time::interval(Duration::from_secs(10));
loop {
timer.tick().await;

if let Err(err) = topology::renew_periodically().await {
if let Err(err) = topology::renew_periodically(validator_base_url).await {
warn!("Error refreshing topology: {}", err)
};

if let Err(err) = mixmining::renew_periodically().await {
if let Err(err) = mixmining::renew_periodically(validator_base_url).await {
warn!("Error refreshing mixmining report: {}", err)
};
}
Expand Down
12 changes: 6 additions & 6 deletions explorer/src/jobs/topology.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
use crate::utils::file;
use reqwest::Error;

use crate::utils::file;
const RELATIVE_PATH: &str = "api/mixmining/topology";

pub async fn renew_periodically(validator_base_url: &str) -> Result<(), Error> {
let url = format!("{}/{}", validator_base_url, RELATIVE_PATH);

pub async fn renew_periodically() -> Result<(), Error> {
let topology_json = reqwest::get("http://qa-validator.nymtech.net:8081/api/mixmining/topology")
.await?
.text()
.await?;
let topology_json = reqwest::get(&url).await?.text().await?;
file::save(topology_json, "public/downloads/topology.json");
Ok(())
}
19 changes: 18 additions & 1 deletion explorer/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#[macro_use]
extern crate rocket;

use clap::{App, Arg, ArgMatches};
use rocket_contrib::serve::StaticFiles;
use tokio::sync::broadcast;

Expand All @@ -12,6 +13,19 @@ mod websockets;

// this specifies number of messages that can be held by the channel, not number of the clients.
const BROADCAST_CAPACITY: usize = 10;
const VALIDATOR_ARG: &str = "validator";

fn parse_args<'a>() -> ArgMatches<'a> {
App::new("Nym Explorer")
.author("Nymtech")
.arg(
Arg::with_name(VALIDATOR_ARG)
.help("REST endpoint of the explorer will use to periodically grab topology and node status.")
.takes_value(true)
.required(true),
)
.get_matches()
}

#[get("/")]
fn index() -> &'static str {
Expand All @@ -20,6 +34,9 @@ fn index() -> &'static str {

#[tokio::main]
async fn main() {
let matches = parse_args();
let validator_base_url = matches.value_of(VALIDATOR_ARG).unwrap();

tokio::spawn(async move {
rocket::ignite()
.mount("/", StaticFiles::from("public"))
Expand All @@ -39,5 +56,5 @@ async fn main() {
websockets::listen(8080, sender_clone).await;
});

jobs::start().await;
jobs::start(validator_base_url).await;
}