added base64 image decoding in-house

This commit is contained in:
LordMZTE 2021-04-29 00:56:06 +02:00
parent dd790d8adf
commit 27517a6994
3 changed files with 65 additions and 23 deletions

View file

@ -9,9 +9,9 @@ edition = "2018"
[dependencies]
anyhow = "1.0.40"
asciify = "0.1.6"
base64 = "0.13.0"
clap = "2.33.3"
image = "0.23.14"
image-base64 = "0.1.0"
itertools = "0.10.0"
serde_json = "1.0.64"
smart-default = "0.6.0"

View file

@ -2,7 +2,9 @@
extern crate smart_default;
use crate::output::Table;
use anyhow::{anyhow, bail, Context};
use asciify::AsciiBuilder;
use image::{DynamicImage, ImageFormat};
use itertools::Itertools;
use std::io::Cursor;
@ -76,3 +78,30 @@ pub fn get_table<'a>(
Itertools::intersperse(entries.map(|x| x.0), "\n").collect()
}
}
/// parses a base64 formatted image
pub fn parse_base64_image(data: String) -> anyhow::Result<DynamicImage> {
let (header, data) = data
.split_once(",")
.context("Couldn't parse base64 image due to missing format header.")?;
let (data_type, image_format) = header
.split_once("/")
.context("Failed to parse base64 image, header has invalid format.")?;
let image_format = image_format
.split(";")
.next()
.context("Failed to parse base64 image, header has invalid format.")?;
if data_type != "data:image" {
bail!("base64 image is not an image! Has type {}", data_type);
}
let format = ImageFormat::from_extension(image_format).context(format!(
"Failed to parse base64 image due to unknown image type: {}",
image_format
))?;
let data =
base64::decode(data).map_err(|e| anyhow!("Failed to decode base64 image data: {}", e))?;
image::load(Cursor::new(data), format)
.map_err(|e| anyhow!("Failed to load base64 image: {}", e))
}

View file

@ -1,16 +1,21 @@
use std::io::Cursor;
use anyhow::{Context, Result};
use asciify::AsciiBuilder;
use async_minecraft_ping::{ConnectionConfig, ServerDescription, StatusResponse};
use image::ImageFormat;
use itertools::Itertools;
use structopt::StructOpt;
use termcolor::{Buffer, BufferWriter, ColorChoice, WriteColor};
use time::{Duration, Instant};
use tokio::time;
use mcstat::{get_table, none_if_empty, output::Table, remove_formatting, AsciiConfig};
use mcstat::{
get_table,
none_if_empty,
output::Table,
parse_base64_image,
remove_formatting,
AsciiConfig,
};
#[derive(Debug, StructOpt)]
#[structopt(
@ -46,7 +51,12 @@ struct Opt {
#[structopt(long, short, help = "print mod list")]
mods: bool,
#[structopt(long, short = "v", requires = "mods", help = "also prints mod versions")]
#[structopt(
long,
short = "v",
requires = "mods",
help = "also prints mod versions"
)]
modversions: bool,
#[structopt(long, help = "displays forge mod channels if the server sends them")]
@ -74,7 +84,12 @@ struct Opt {
)]
deep: bool,
#[structopt(long, short = "n", requires = "image", help = "inverts ascii art favicon")]
#[structopt(
long,
short = "n",
requires = "image",
help = "inverts ascii art favicon"
)]
invert: bool,
}
@ -94,17 +109,20 @@ async fn main() -> Result<()> {
// create timeout for server connection
let (raw_response, ping) = time::timeout(Duration::from_millis(opt.timeout), async {
let start_time = Instant::now();
let mut con = config.connect().await?;
// we end the timer here, because at this point, we've sent ONE request to the server,
// and we don't want to send 2, since then we get double the ping.
// the connect function may have some processing which may take some time, but it
// shouldn't make an impact at this code runs at rust speed.
let end_time = Instant::now();
let start_time = Instant::now();
let mut con = config.connect().await?;
// we end the timer here, because at this point, we've sent ONE request to the
// server, and we don't want to send 2, since then we get double the
// ping. the connect function may have some processing which may take
// some time, but it shouldn't make an impact at this code runs at rust
// speed.
let end_time = Instant::now();
let status = con.status_raw().await?;
Result::<_, anyhow::Error>::Ok((status, end_time - start_time))
}).await.context("Connection to server timed out.")??;
let status = con.status_raw().await?;
Result::<_, anyhow::Error>::Ok((status, end_time - start_time))
})
.await
.context("Connection to server timed out.")??;
if opt.raw {
println!("{}", raw_response);
@ -157,12 +175,7 @@ async fn main() -> Result<()> {
/// returns the asciifyed image from base64
/// returns Err if the base64 image is invalid
async fn asciify_base64_image(favicon: String, config: AsciiConfig) -> Result<String> {
let img = image_base64::from_base64(favicon);
// TODO for some reason, image_base64 returns the format as string (and using
// regex!) which is useless and also inefficient, so Png is temporarily
// hardcoded. we should probably stop using this library
let image =
image::load(Cursor::new(img), ImageFormat::Png).context("image has invalid format")?;
let image = parse_base64_image(favicon)?;
let builder = config.apply(AsciiBuilder::new_from_image(image));