map-tool/src/main.rs

283 lines
9.6 KiB
Rust
Raw Normal View History

2023-09-13 01:16:25 +00:00
use std::unimplemented;
use clap::{Args, Parser, Subcommand};
#[derive(Parser)]
#[command(author, version, about, long_about = None)]
#[command(propagate_version = true)]
struct Cli {
#[command(subcommand)]
command: Commands,
}
#[derive(Subcommand)]
enum Commands {
Download(MapList),
2023-09-12 02:37:37 +00:00
Upload,
2023-09-13 01:16:25 +00:00
Scan,
Replace,
2023-09-12 02:37:37 +00:00
Interactive,
2023-09-13 01:16:25 +00:00
}
#[derive(Args)]
struct MapList {
maps: Vec<u64>,
}
2023-09-05 00:16:02 +00:00
fn class_is_a(class: &str, superclass: &str) -> bool {
if class==superclass {
return true
}
let class_descriptor=rbx_reflection_database::get().classes.get(class);
if let Some(descriptor) = &class_descriptor {
if let Some(class_super) = &descriptor.superclass {
return class_is_a(&class_super, superclass)
}
}
return false
}
2023-09-12 20:57:47 +00:00
fn get_full_name(dom:&rbx_dom_weak::WeakDom,instance:&rbx_dom_weak::Instance) -> String{
let mut full_name=instance.name.clone();
let mut pref=instance.parent();
while let Some(parent)=dom.get_by_ref(pref){
full_name.insert(0, '.');
full_name.insert_str(0, &parent.name);
pref=parent.parent();
}
full_name
}
2023-09-13 01:16:25 +00:00
//download
//download list of maps to maps/unprocessed
//scan (scripts)
//iter maps/unprocessed
//passing moves to maps/verified
//failing moves to maps/purgatory
//replace (edits & deletions)
//iter maps/purgatory
//replace scripts and put in maps/unprocessed
//upload
//iter maps/verified
//interactively print DisplayName/Creator and ask for target upload ids
2023-09-12 02:37:37 +00:00
//interactive
//iter maps/unprocessed
//for each unique script, load it into the file current.lua and have it open in sublime text
//I can edit the file and it will edit it in place
//I pass/fail(with comment)/allow each script
2023-09-13 01:16:25 +00:00
2023-09-13 01:16:45 +00:00
fn get_scripts(dom:rbx_dom_weak::WeakDom) -> Vec<rbx_dom_weak::Instance>{
let mut scripts = std::vec::Vec::<rbx_dom_weak::Instance>::new();
let (_,mut instances) = dom.into_raw();
for (_,instance) in instances.drain() {
if class_is_a(instance.class.as_str(), "LuaSourceContainer") {
scripts.push(instance);
2023-09-05 00:16:02 +00:00
}
}
2023-09-13 01:16:45 +00:00
scripts
2023-09-05 00:16:02 +00:00
}
2023-09-12 23:28:10 +00:00
fn get_id() -> Result<u32, Box<dyn std::error::Error>>{
match std::fs::read_to_string("id"){
Ok(id_file)=>Ok(id_file.parse::<u32>()?),
Err(e) => match e.kind() {
std::io::ErrorKind::NotFound => Ok(0),//implicitly take on id=0
_ => Err(e)?,
}
}
}
fn get_set_from_file(file:&str) -> Result<std::collections::HashSet<String>, Box<dyn std::error::Error>>{
let mut set=std::collections::HashSet::<String>::new();
for entry in std::fs::read_dir(file)? {
set.insert(std::fs::read_to_string(entry?.path())?);
}
Ok(set)
}
fn get_allowed_set() -> Result<std::collections::HashSet<String>, Box<dyn std::error::Error>>{
get_set_from_file("scripts/allowed")
}
fn get_blocked() -> Result<std::collections::HashSet<String>, Box<dyn std::error::Error>>{
get_set_from_file("scripts/blocked")
}
fn get_allowed_map() -> Result<std::collections::HashMap::<u32,String>, Box<dyn std::error::Error>>{
let mut allowed_map = std::collections::HashMap::<u32,String>::new();
for entry in std::fs::read_dir("scripts/allowed")? {
let entry=entry?;
allowed_map.insert(entry.file_name().to_str().unwrap().parse::<u32>()?,std::fs::read_to_string(entry.path())?);
}
Ok(allowed_map)
}
fn get_replace_map() -> Result<std::collections::HashMap::<String,u32>, Box<dyn std::error::Error>>{
let mut replace = std::collections::HashMap::<String,u32>::new();
for entry in std::fs::read_dir("scripts/replace")? {
let entry=entry?;
replace.insert(std::fs::read_to_string(entry.path())?,entry.file_name().to_str().unwrap().parse::<u32>()?);
}
Ok(replace)
}
fn check_source_illegal_keywords(source:&String)->bool{
source.find("getfenv").is_some()||source.find("require").is_some()
}
2023-09-13 01:16:25 +00:00
fn download(map_list: Vec<u64>) -> Result<(), Box<dyn std::error::Error>>{
2023-09-12 00:42:03 +00:00
let header=format!("Cookie: .ROBLOSECURITY={}",std::env::var("RBXCOOKIE")?);
let shared_args=&[
"-q",
"--header",
header.as_str(),
"-O",
];
for map_id in map_list.iter() {
std::process::Command::new("wget")
.args(shared_args)
.arg(format!("maps/unprocessed/{}.rbxl",map_id))
.arg(format!("https://assetdelivery.roblox.com/v1/asset/?ID={}",map_id))
.spawn()?;
}
Ok(())
2023-09-13 01:16:25 +00:00
}
enum Scan{
Passed,
Blocked,
2023-09-12 02:18:38 +00:00
Flagged,
}
2023-09-13 01:16:25 +00:00
fn scan() -> Result<(), Box<dyn std::error::Error>>{
2023-09-12 23:28:10 +00:00
let mut id = get_id()?;
2023-09-05 00:16:02 +00:00
//Construct allowed scripts
2023-09-12 23:28:10 +00:00
let allowed_set = get_allowed_set()?;
let mut blocked = get_blocked()?;
2023-09-05 00:16:02 +00:00
2023-09-13 01:16:25 +00:00
for entry in std::fs::read_dir("maps/unprocessed")? {
let file_thing=entry?;
let input = std::io::BufReader::new(std::fs::File::open(file_thing.path())?);
2023-09-05 00:16:02 +00:00
2023-09-13 01:16:25 +00:00
let dom = rbx_binary::from_reader(input)?;
2023-09-13 01:16:45 +00:00
let scripts = get_scripts(dom);
//check scribb
let mut fail_count=0;
let mut fail_type=Scan::Passed;
2023-09-13 01:16:45 +00:00
for script in scripts.iter() {
2023-09-05 00:34:31 +00:00
if let Some(rbx_dom_weak::types::Variant::String(s)) = script.properties.get("Source") {
2023-09-12 02:18:38 +00:00
//flag keywords and instantly fail
2023-09-12 23:28:10 +00:00
if check_source_illegal_keywords(s){
2023-09-12 02:18:38 +00:00
println!("{:?} - flagged.",file_thing.file_name());
fail_type=Scan::Flagged;
break;
}
2023-09-13 01:16:25 +00:00
if allowed_set.contains(s) {
continue;
2023-09-05 00:34:31 +00:00
}else{
fail_type=Scan::Blocked;//no need to check for Flagged, it breaks the loop.
fail_count+=1;
2023-09-13 01:16:25 +00:00
if !blocked.contains(s) {
blocked.insert(s.clone());//all fixed! just clone!
std::fs::write(format!("scripts/blocked/{}.lua",id),s)?;
id+=1;
}
2023-09-05 00:34:31 +00:00
}
}else{
panic!("FATAL: failed to get source for {:?}",file_thing.file_name());
2023-09-05 00:34:31 +00:00
}
2023-09-13 01:16:25 +00:00
}
let mut dest=match fail_type {
Scan::Passed => std::path::PathBuf::from("maps/processed"),
Scan::Blocked => {
println!("{:?} - {} {} not allowed.",file_thing.file_name(),fail_count,if fail_count==1 {"script"}else{"scripts"});
std::path::PathBuf::from("maps/purgatory")
}
2023-09-12 02:18:38 +00:00
Scan::Flagged => std::path::PathBuf::from("maps/flagged")
};
dest.push(file_thing.file_name());
std::fs::rename(file_thing.path(), dest)?;
2023-09-05 00:16:02 +00:00
}
2023-09-13 01:16:25 +00:00
std::fs::write("id",id.to_string())?;
Ok(())
}
fn replace() -> Result<(), Box<dyn std::error::Error>>{
2023-09-12 23:28:10 +00:00
let allowed_map=get_allowed_map()?;
let replace_map=get_replace_map()?;
2023-09-13 01:16:25 +00:00
for entry in std::fs::read_dir("maps/purgatory")? {
let file_thing=entry?;
let input = std::io::BufReader::new(std::fs::File::open(file_thing.path())?);
let dom = rbx_binary::from_reader(input)?;
let mut write_dom = rbx_dom_weak::WeakDom::new(rbx_dom_weak::InstanceBuilder::empty());
dom.clone_into_external(dom.root_ref(), &mut write_dom);
let scripts = get_scripts(dom);
//check scribb
let mut any_failed=false;
for script in scripts.iter() {
if let Some(rbx_dom_weak::types::Variant::String(source)) = script.properties.get("Source") {
2023-09-12 23:28:10 +00:00
if let (Some(replace_id),Some(replace_script))=(replace_map.get(source),write_dom.get_by_ref_mut(script.referent())) {
2023-09-13 01:16:25 +00:00
println!("replace {}",replace_id);
//replace the source
if let Some(replace_source)=allowed_map.get(replace_id){
replace_script.properties.insert("Source".to_string(), rbx_dom_weak::types::Variant::String(replace_source.clone()));
}else{
println!("failed to get replacement source {}",replace_id);
any_failed=true;
}
2023-09-12 02:53:42 +00:00
}else{
println!("failed to failed to get replace_id and replace_script");
any_failed=true;
2023-09-13 01:16:25 +00:00
}
2023-09-12 02:53:42 +00:00
}else{
println!("failed to failed to get source");
any_failed=true;
2023-09-13 01:16:25 +00:00
}
}
if any_failed {
println!("One or more scripts failed to replace.");
}else{
let mut dest=std::path::PathBuf::from("maps/unprocessed");
dest.set_file_name(file_thing.file_name());
dest.set_extension("rbxl");//extension is always rbxl even if source file is extensionless
let output = std::io::BufWriter::new(std::fs::File::open(dest)?);
rbx_binary::to_writer(output, &write_dom, &[write_dom.root_ref()])?;
}
}
Ok(())
}
fn upload() -> Result<(), Box<dyn std::error::Error>>{
2023-09-12 02:18:44 +00:00
//interactive prompt per upload:
//Creator: [auto fill creator]
//DisplayName: [auto fill DisplayName]
//id: ["New" for blank because of my double enter key]
2023-09-05 00:16:02 +00:00
// std::process::Command::new("rbxcompiler")
// .arg("--compile=false")
// .arg("--group=6980477")
// .arg("--asset=5692139100")
// .arg("--input=map.rbxm")
// .spawn()?;
2023-09-13 01:16:25 +00:00
unimplemented!()
}
2023-09-12 02:37:37 +00:00
fn interactive() -> Result<(), Box<dyn std::error::Error>>{
unimplemented!()
}
2023-09-13 01:16:25 +00:00
fn main() -> Result<(), Box<dyn std::error::Error>> {
let cli = Cli::parse();
match cli.command {
Commands::Download(map_list)=>download(map_list.maps),
2023-09-12 02:37:37 +00:00
Commands::Upload=>upload(),
2023-09-13 01:16:25 +00:00
Commands::Scan=>scan(),
Commands::Replace=>replace(),
2023-09-12 02:37:37 +00:00
Commands::Interactive=>interactive(),
2023-09-13 01:16:25 +00:00
}
2023-09-04 19:24:00 +00:00
}