mirror of
https://git.ngram.ca/OpenJam/rc-servers
synced 2026-08-23 23:08:52 +00:00
Create basic CDN endpoints for #10
This commit is contained in:
8
cdn/src/robocraft/user_avatar.rs
Normal file
8
cdn/src/robocraft/user_avatar.rs
Normal file
@@ -0,0 +1,8 @@
|
||||
use actix_web::{dev::ResourcePath, get, web::{Data, Path}, Responder};
|
||||
|
||||
#[get("/customavatar/Live/{name}")]
|
||||
pub async fn get(cli: Data<crate::cli::CliArgs>, name: Path<String>) -> impl Responder {
|
||||
let path = std::path::PathBuf::from(&cli.data_robocraft).join("customavatars").join(format!("{}.jpg", name.path()));
|
||||
log::debug!("RC asset at {} (exists? {})", path.display(), path.exists());
|
||||
actix_files::NamedFile::open_async(path).await
|
||||
}
|
||||
Reference in New Issue
Block a user