forked from StrafesNET/asset-tool
wip
This commit is contained in:
parent
8a40ec3380
commit
7e4f96a19c
27
Cargo.lock
generated
27
Cargo.lock
generated
@ -890,6 +890,16 @@ version = "0.3.17"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "mime_guess"
|
||||||
|
version = "2.0.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
|
||||||
|
dependencies = [
|
||||||
|
"mime",
|
||||||
|
"unicase",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "miniz_oxide"
|
name = "miniz_oxide"
|
||||||
version = "0.7.4"
|
version = "0.7.4"
|
||||||
@ -1162,6 +1172,7 @@ dependencies = [
|
|||||||
"flate2",
|
"flate2",
|
||||||
"reqwest",
|
"reqwest",
|
||||||
"serde",
|
"serde",
|
||||||
|
"serde_json",
|
||||||
"url",
|
"url",
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -1294,6 +1305,7 @@ dependencies = [
|
|||||||
"js-sys",
|
"js-sys",
|
||||||
"log",
|
"log",
|
||||||
"mime",
|
"mime",
|
||||||
|
"mime_guess",
|
||||||
"native-tls",
|
"native-tls",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"percent-encoding",
|
"percent-encoding",
|
||||||
@ -1745,6 +1757,15 @@ version = "0.2.5"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "unicase"
|
||||||
|
version = "2.7.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
|
||||||
|
dependencies = [
|
||||||
|
"version_check",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "unicode-bidi"
|
name = "unicode-bidi"
|
||||||
version = "0.3.15"
|
version = "0.3.15"
|
||||||
@ -1795,6 +1816,12 @@ version = "0.2.15"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "version_check"
|
||||||
|
version = "0.9.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "want"
|
name = "want"
|
||||||
version = "0.3.1"
|
version = "0.3.1"
|
||||||
|
@ -9,6 +9,7 @@ publish = ["strafesnet"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = { version = "0.4.38", features = ["serde"] }
|
chrono = { version = "0.4.38", features = ["serde"] }
|
||||||
flate2 = "1.0.29"
|
flate2 = "1.0.29"
|
||||||
reqwest = { version = "0.12.4", features = ["json"] }
|
reqwest = { version = "0.12.4", features = ["json","multipart"] }
|
||||||
serde = { version = "1.0.199", features = ["derive"] }
|
serde = { version = "1.0.199", features = ["derive"] }
|
||||||
|
serde_json = "1.0.111"
|
||||||
url = "2.5.0"
|
url = "2.5.0"
|
||||||
|
@ -1,28 +1,22 @@
|
|||||||
#[derive(Debug)]
|
|
||||||
pub enum PostError{
|
|
||||||
Reqwest(reqwest::Error),
|
|
||||||
CSRF,
|
|
||||||
}
|
|
||||||
impl std::fmt::Display for PostError{
|
|
||||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
||||||
write!(f,"{self:?}")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
impl std::error::Error for PostError{}
|
|
||||||
|
|
||||||
#[derive(Debug,serde::Deserialize,serde::Serialize)]
|
#[derive(Debug,serde::Deserialize,serde::Serialize)]
|
||||||
#[allow(nonstandard_style,dead_code)]
|
#[allow(nonstandard_style,dead_code)]
|
||||||
pub struct CreateRequest{
|
pub enum AssetType{
|
||||||
pub name:String,
|
Audio,
|
||||||
|
Decal,
|
||||||
|
Model,
|
||||||
|
}
|
||||||
|
#[derive(Debug,serde::Deserialize,serde::Serialize)]
|
||||||
|
#[allow(nonstandard_style,dead_code)]
|
||||||
|
pub struct CreateAssetRequest{
|
||||||
|
pub assetType:AssetType,
|
||||||
|
pub creationContext:CreationContext,
|
||||||
pub description:String,
|
pub description:String,
|
||||||
pub ispublic:bool,
|
pub displayName:String,
|
||||||
pub allowComments:bool,
|
|
||||||
pub groupId:Option<u64>,
|
|
||||||
}
|
}
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum CreateError{
|
pub enum CreateError{
|
||||||
ParseError(url::ParseError),
|
ParseError(url::ParseError),
|
||||||
PostError(PostError),
|
SerializeError(serde_json::Error),
|
||||||
Reqwest(reqwest::Error),
|
Reqwest(reqwest::Error),
|
||||||
}
|
}
|
||||||
impl std::fmt::Display for CreateError{
|
impl std::fmt::Display for CreateError{
|
||||||
@ -32,37 +26,79 @@ impl std::fmt::Display for CreateError{
|
|||||||
}
|
}
|
||||||
impl std::error::Error for CreateError{}
|
impl std::error::Error for CreateError{}
|
||||||
|
|
||||||
|
#[derive(Debug,serde::Deserialize,serde::Serialize)]
|
||||||
#[allow(nonstandard_style,dead_code)]
|
#[allow(nonstandard_style,dead_code)]
|
||||||
pub struct UploadRequest{
|
pub struct UpdateAssetRequest{
|
||||||
pub assetid:u64,
|
pub assetId:u64,
|
||||||
pub name:Option<String>,
|
pub displayName:Option<String>,
|
||||||
pub description:Option<String>,
|
pub description:Option<String>,
|
||||||
pub ispublic:Option<bool>,
|
}
|
||||||
pub allowComments:Option<bool>,
|
|
||||||
pub groupId:Option<u64>,
|
//woo nested roblox stuff
|
||||||
|
#[derive(Debug,serde::Deserialize,serde::Serialize)]
|
||||||
|
#[allow(nonstandard_style,dead_code)]
|
||||||
|
pub struct Creator{
|
||||||
|
pub userId:u64,
|
||||||
|
pub groupId:u64,
|
||||||
|
}
|
||||||
|
#[derive(Debug,serde::Deserialize,serde::Serialize)]
|
||||||
|
#[allow(nonstandard_style,dead_code)]
|
||||||
|
pub struct CreationContext{
|
||||||
|
pub creator:Creator,
|
||||||
|
pub expectedPrice:u64,
|
||||||
|
}
|
||||||
|
#[derive(Debug,serde::Deserialize,serde::Serialize)]
|
||||||
|
#[allow(nonstandard_style,dead_code)]
|
||||||
|
pub enum ModerationResult{
|
||||||
|
MODERATION_STATE_REVIEWING,
|
||||||
|
MODERATION_STATE_REJECTED,
|
||||||
|
MODERATION_STATE_APPROVED,
|
||||||
|
}
|
||||||
|
#[derive(Debug,serde::Deserialize,serde::Serialize)]
|
||||||
|
#[allow(nonstandard_style,dead_code)]
|
||||||
|
pub struct Preview{
|
||||||
|
pub asset:String,
|
||||||
|
pub altText:String,
|
||||||
|
}
|
||||||
|
#[derive(Debug,serde::Deserialize,serde::Serialize)]
|
||||||
|
#[allow(nonstandard_style,dead_code)]
|
||||||
|
pub struct AssetResponse{
|
||||||
|
pub assetId:u64,
|
||||||
|
pub creationContext:CreationContext,
|
||||||
|
pub description:String,
|
||||||
|
pub displayName:String,
|
||||||
|
pub path:String,
|
||||||
|
pub revisionId:u64,
|
||||||
|
pub revisionCreateTime:chrono::DateTime<chrono::Utc>,
|
||||||
|
pub moderationResult:ModerationResult,
|
||||||
|
pub icon:String,
|
||||||
|
pub previews:Vec<Preview>,
|
||||||
|
}
|
||||||
|
#[allow(nonstandard_style,dead_code)]
|
||||||
|
pub struct UpdatePlaceRequest{
|
||||||
|
pub universeId:u64,
|
||||||
|
pub placeId:u64,
|
||||||
|
}
|
||||||
|
#[derive(Debug,serde::Deserialize,serde::Serialize)]
|
||||||
|
#[allow(nonstandard_style,dead_code)]
|
||||||
|
pub struct UpdatePlaceResponse{
|
||||||
|
pub versionNumber:u64,
|
||||||
}
|
}
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum UploadError{
|
pub enum UpdateError{
|
||||||
ParseError(url::ParseError),
|
ParseError(url::ParseError),
|
||||||
PostError(PostError),
|
SerializeError(serde_json::Error),
|
||||||
Reqwest(reqwest::Error),
|
Reqwest(reqwest::Error),
|
||||||
AssetIdIsZero,
|
|
||||||
}
|
}
|
||||||
impl std::fmt::Display for UploadError{
|
impl std::fmt::Display for UpdateError{
|
||||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
write!(f,"{self:?}")
|
write!(f,"{self:?}")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
impl std::error::Error for UploadError{}
|
impl std::error::Error for UpdateError{}
|
||||||
#[derive(Debug,serde::Deserialize,serde::Serialize)]
|
|
||||||
#[allow(nonstandard_style,dead_code)]
|
|
||||||
pub struct UploadResponse{
|
|
||||||
pub AssetId:u64,
|
|
||||||
pub AssetVersionId:u64,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[allow(nonstandard_style,dead_code)]
|
#[allow(nonstandard_style,dead_code)]
|
||||||
pub struct DownloadRequest{
|
pub struct GetAssetRequest{
|
||||||
pub asset_id:u64,
|
pub asset_id:u64,
|
||||||
pub version:Option<u64>,
|
pub version:Option<u64>,
|
||||||
}
|
}
|
||||||
@ -79,7 +115,7 @@ impl std::fmt::Display for DownloadError{
|
|||||||
}
|
}
|
||||||
impl std::error::Error for DownloadError{}
|
impl std::error::Error for DownloadError{}
|
||||||
|
|
||||||
pub struct HistoryPageRequest{
|
pub struct AssetVersionsRequest{
|
||||||
pub asset_id:u64,
|
pub asset_id:u64,
|
||||||
pub cursor:Option<String>,
|
pub cursor:Option<String>,
|
||||||
}
|
}
|
||||||
@ -97,22 +133,22 @@ pub struct AssetVersion{
|
|||||||
}
|
}
|
||||||
#[derive(serde::Deserialize)]
|
#[derive(serde::Deserialize)]
|
||||||
#[allow(nonstandard_style,dead_code)]
|
#[allow(nonstandard_style,dead_code)]
|
||||||
pub struct HistoryPageResponse{
|
pub struct AssetVersionsResponse{
|
||||||
pub previousPageCursor:Option<String>,
|
pub previousPageCursor:Option<String>,
|
||||||
pub nextPageCursor:Option<String>,
|
pub nextPageCursor:Option<String>,
|
||||||
pub data:Vec<AssetVersion>,
|
pub data:Vec<AssetVersion>,
|
||||||
}
|
}
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum HistoryPageError{
|
pub enum AssetVersionsError{
|
||||||
ParseError(url::ParseError),
|
ParseError(url::ParseError),
|
||||||
Reqwest(reqwest::Error),
|
Reqwest(reqwest::Error),
|
||||||
}
|
}
|
||||||
impl std::fmt::Display for HistoryPageError{
|
impl std::fmt::Display for AssetVersionsError{
|
||||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
write!(f,"{self:?}")
|
write!(f,"{self:?}")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
impl std::error::Error for HistoryPageError{}
|
impl std::error::Error for AssetVersionsError{}
|
||||||
|
|
||||||
pub struct InventoryPageRequest{
|
pub struct InventoryPageRequest{
|
||||||
pub group:u64,
|
pub group:u64,
|
||||||
@ -170,96 +206,68 @@ fn read_readable(mut readable:impl std::io::Read)->std::io::Result<Vec<u8>>{
|
|||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct RobloxContext{
|
pub struct RobloxContext{
|
||||||
pub cookie:String,
|
pub api_key:String,
|
||||||
pub client:reqwest::Client,
|
pub client:reqwest::Client,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RobloxContext{
|
impl RobloxContext{
|
||||||
pub fn new(cookie:String)->Self{
|
pub fn new(api_key:String)->Self{
|
||||||
Self{
|
Self{
|
||||||
cookie,
|
api_key,
|
||||||
client:reqwest::Client::new(),
|
client:reqwest::Client::new(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
async fn get(&self,url:impl reqwest::IntoUrl)->Result<reqwest::Response,reqwest::Error>{
|
async fn get(&self,url:impl reqwest::IntoUrl)->Result<reqwest::Response,reqwest::Error>{
|
||||||
self.client.get(url)
|
self.client.get(url)
|
||||||
.header("Cookie",self.cookie.as_str())
|
.header("x-api-key",self.api_key.as_str())
|
||||||
.send().await
|
.send().await
|
||||||
}
|
}
|
||||||
async fn post(&self,url:url::Url,body:impl Into<reqwest::Body>+Clone)->Result<reqwest::Response,PostError>{
|
async fn post(&self,url:url::Url,body:impl Into<reqwest::Body>+Clone)->Result<reqwest::Response,reqwest::Error>{
|
||||||
let mut resp=self.client.post(url.clone())
|
self.client.post(url)
|
||||||
.header("Cookie",self.cookie.as_str())
|
.header("x-api-key",self.api_key.as_str())
|
||||||
.body(body.clone())
|
.body(body)
|
||||||
.send().await.map_err(PostError::Reqwest)?;
|
.send().await
|
||||||
|
|
||||||
//This is called a CSRF challenge apparently
|
|
||||||
if resp.status()==reqwest::StatusCode::FORBIDDEN{
|
|
||||||
if let Some(csrf_token)=resp.headers().get("X-CSRF-Token"){
|
|
||||||
resp=self.client.post(url)
|
|
||||||
.header("X-CSRF-Token",csrf_token)
|
|
||||||
.header("Cookie",self.cookie.as_str())
|
|
||||||
.body(body)
|
|
||||||
.send().await.map_err(PostError::Reqwest)?;
|
|
||||||
}else{
|
|
||||||
Err(PostError::CSRF)?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(resp)
|
|
||||||
}
|
}
|
||||||
pub async fn create(&self,config:CreateRequest,body:impl Into<reqwest::Body>+Clone)->Result<UploadResponse,CreateError>{
|
async fn patch_form(&self,url:url::Url,form:reqwest::multipart::Form)->Result<reqwest::Response,reqwest::Error>{
|
||||||
let mut url=reqwest::Url::parse("https://data.roblox.com/Data/Upload.ashx?json=1&type=Model&genreTypeId=1").map_err(CreateError::ParseError)?;
|
self.client.patch(url)
|
||||||
//url borrow scope
|
.header("x-api-key",self.api_key.as_str())
|
||||||
{
|
.multipart(form)
|
||||||
let mut query=url.query_pairs_mut();//borrow here
|
.send().await
|
||||||
//archaic roblox api uses 0 for new asset
|
|
||||||
query.append_pair("assetid","0");
|
|
||||||
query.append_pair("name",config.name.as_str());
|
|
||||||
query.append_pair("description",config.description.as_str());
|
|
||||||
query.append_pair("ispublic",if config.ispublic{"True"}else{"False"});
|
|
||||||
query.append_pair("allowComments",if config.allowComments{"True"}else{"False"});
|
|
||||||
match config.groupId{
|
|
||||||
Some(group_id)=>{query.append_pair("groupId",group_id.to_string().as_str());},
|
|
||||||
None=>(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let resp=self.post(url,body).await.map_err(CreateError::PostError)?;
|
|
||||||
|
|
||||||
Ok(resp.json::<UploadResponse>().await.map_err(CreateError::Reqwest)?)
|
|
||||||
}
|
}
|
||||||
pub async fn upload(&self,config:UploadRequest,body:impl Into<reqwest::Body>+Clone)->Result<UploadResponse,UploadError>{
|
async fn post_form(&self,url:url::Url,form:reqwest::multipart::Form)->Result<reqwest::Response,reqwest::Error>{
|
||||||
let mut url=reqwest::Url::parse("https://data.roblox.com/Data/Upload.ashx?json=1&type=Model&genreTypeId=1").map_err(UploadError::ParseError)?;
|
self.client.post(url)
|
||||||
//url borrow scope
|
.header("x-api-key",self.api_key.as_str())
|
||||||
{
|
.multipart(form)
|
||||||
let mut query=url.query_pairs_mut();//borrow here
|
.send().await
|
||||||
//archaic roblox api uses 0 for new asset
|
|
||||||
match config.assetid{
|
|
||||||
0=>return Err(UploadError::AssetIdIsZero),
|
|
||||||
assetid=>{query.append_pair("assetid",assetid.to_string().as_str());},
|
|
||||||
}
|
|
||||||
if let Some(name)=config.name.as_deref(){
|
|
||||||
query.append_pair("name",name);
|
|
||||||
}
|
|
||||||
if let Some(description)=config.description.as_deref(){
|
|
||||||
query.append_pair("description",description);
|
|
||||||
}
|
|
||||||
if let Some(ispublic)=config.ispublic{
|
|
||||||
query.append_pair("ispublic",if ispublic{"True"}else{"False"});
|
|
||||||
}
|
|
||||||
if let Some(allow_comments)=config.allowComments{
|
|
||||||
query.append_pair("allowComments",if allow_comments{"True"}else{"False"});
|
|
||||||
}
|
|
||||||
if let Some(group_id)=config.groupId{
|
|
||||||
query.append_pair("groupId",group_id.to_string().as_str());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let resp=self.post(url,body).await.map_err(UploadError::PostError)?;
|
|
||||||
|
|
||||||
Ok(resp.json::<UploadResponse>().await.map_err(UploadError::Reqwest)?)
|
|
||||||
}
|
}
|
||||||
pub async fn download(&self,config:DownloadRequest)->Result<Vec<u8>,DownloadError>{
|
pub async fn create_asset(&self,config:CreateAssetRequest,body:impl Into<std::borrow::Cow<'static,[u8]>>)->Result<AssetResponse,CreateError>{
|
||||||
|
let url=reqwest::Url::parse("https://apis.roblox.com/assets/v1/assets").map_err(CreateError::ParseError)?;
|
||||||
|
|
||||||
|
let request_config=serde_json::to_string(&config).map_err(CreateError::SerializeError)?;
|
||||||
|
|
||||||
|
let form=reqwest::multipart::Form::new()
|
||||||
|
.text("request",request_config)
|
||||||
|
.part("fileContent",reqwest::multipart::Part::bytes(body));
|
||||||
|
|
||||||
|
let resp=self.post_form(url,form).await.map_err(CreateError::Reqwest)?;
|
||||||
|
|
||||||
|
Ok(resp.json::<AssetResponse>().await.map_err(CreateError::Reqwest)?)
|
||||||
|
}
|
||||||
|
pub async fn update_asset(&self,config:UpdateAssetRequest,body:impl Into<std::borrow::Cow<'static,[u8]>>)->Result<AssetResponse,UpdateError>{
|
||||||
|
let raw_url=format!("https://apis.roblox.com/assets/v1/assets/{}",config.assetId);
|
||||||
|
let url=reqwest::Url::parse(raw_url.as_str()).map_err(UpdateError::ParseError)?;
|
||||||
|
|
||||||
|
let request_config=serde_json::to_string(&config).map_err(UpdateError::SerializeError)?;
|
||||||
|
|
||||||
|
let form=reqwest::multipart::Form::new()
|
||||||
|
.text("request",request_config)
|
||||||
|
.part("fileContent",reqwest::multipart::Part::bytes(body));
|
||||||
|
|
||||||
|
let resp=self.patch_form(url,form).await.map_err(UpdateError::Reqwest)?;
|
||||||
|
|
||||||
|
Ok(resp.json::<AssetResponse>().await.map_err(UpdateError::Reqwest)?)
|
||||||
|
}
|
||||||
|
pub async fn get_asset(&self,config:GetAssetRequest)->Result<Vec<u8>,DownloadError>{
|
||||||
let mut url=reqwest::Url::parse("https://assetdelivery.roblox.com/v1/asset/").map_err(DownloadError::ParseError)?;
|
let mut url=reqwest::Url::parse("https://assetdelivery.roblox.com/v1/asset/").map_err(DownloadError::ParseError)?;
|
||||||
//url borrow scope
|
//url borrow scope
|
||||||
{
|
{
|
||||||
@ -279,21 +287,12 @@ impl RobloxContext{
|
|||||||
Err(e)=>Err(e),
|
Err(e)=>Err(e),
|
||||||
}.map_err(DownloadError::IO)
|
}.map_err(DownloadError::IO)
|
||||||
}
|
}
|
||||||
pub async fn history_page(&self,config:HistoryPageRequest)->Result<HistoryPageResponse,HistoryPageError>{
|
pub async fn get_asset_versions(&self,config:AssetVersionsRequest)->Result<AssetVersionsResponse,AssetVersionsError>{
|
||||||
let mut url=reqwest::Url::parse(format!("https://develop.roblox.com/v1/assets/{}/saved-versions",config.asset_id).as_str()).map_err(HistoryPageError::ParseError)?;
|
let raw_url=format!("https://apis.roblox.com/assets/v1/assets/{}/versions",config.asset_id);
|
||||||
//url borrow scope
|
let url=reqwest::Url::parse(raw_url.as_str()).map_err(AssetVersionsError::ParseError)?;
|
||||||
{
|
|
||||||
let mut query=url.query_pairs_mut();//borrow here
|
|
||||||
//query.append_pair("sortOrder","Asc");
|
|
||||||
//query.append_pair("limit","100");
|
|
||||||
//query.append_pair("count","100");
|
|
||||||
if let Some(cursor)=config.cursor.as_deref(){
|
|
||||||
query.append_pair("cursor",cursor);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(self.get(url).await.map_err(HistoryPageError::Reqwest)?
|
Ok(self.get(url).await.map_err(AssetVersionsError::Reqwest)?
|
||||||
.json::<HistoryPageResponse>().await.map_err(HistoryPageError::Reqwest)?)
|
.json::<AssetVersionsResponse>().await.map_err(AssetVersionsError::Reqwest)?)
|
||||||
}
|
}
|
||||||
pub async fn inventory_page(&self,config:InventoryPageRequest)->Result<InventoryPageResponse,InventoryPageError>{
|
pub async fn inventory_page(&self,config:InventoryPageRequest)->Result<InventoryPageResponse,InventoryPageError>{
|
||||||
let mut url=reqwest::Url::parse(format!("https://apis.roblox.com/toolbox-service/v1/creations/group/{}/10?limit=50",config.group).as_str()).map_err(InventoryPageError::ParseError)?;
|
let mut url=reqwest::Url::parse(format!("https://apis.roblox.com/toolbox-service/v1/creations/group/{}/10?limit=50",config.group).as_str()).map_err(InventoryPageError::ParseError)?;
|
||||||
@ -308,4 +307,12 @@ impl RobloxContext{
|
|||||||
Ok(self.get(url).await.map_err(InventoryPageError::Reqwest)?
|
Ok(self.get(url).await.map_err(InventoryPageError::Reqwest)?
|
||||||
.json::<InventoryPageResponse>().await.map_err(InventoryPageError::Reqwest)?)
|
.json::<InventoryPageResponse>().await.map_err(InventoryPageError::Reqwest)?)
|
||||||
}
|
}
|
||||||
|
pub async fn update_place(&self,config:UpdatePlaceRequest,body:impl Into<reqwest::Body>+Clone)->Result<UpdatePlaceResponse,UpdateError>{
|
||||||
|
let raw_url=format!("https://apis.roblox.com/universes/v1/{}/places/{}/versions",config.universeId,config.placeId);
|
||||||
|
let url=reqwest::Url::parse(raw_url.as_str()).map_err(UpdateError::ParseError)?;
|
||||||
|
|
||||||
|
let resp=self.post(url,body).await.map_err(UpdateError::Reqwest)?;
|
||||||
|
|
||||||
|
Ok(resp.json::<UpdatePlaceResponse>().await.map_err(UpdateError::Reqwest)?)
|
||||||
|
}
|
||||||
}
|
}
|
43
src/main.rs
43
src/main.rs
@ -2,7 +2,7 @@ use std::{io::Read,path::PathBuf};
|
|||||||
use clap::{Args,Parser,Subcommand};
|
use clap::{Args,Parser,Subcommand};
|
||||||
use anyhow::Result as AResult;
|
use anyhow::Result as AResult;
|
||||||
use futures::StreamExt;
|
use futures::StreamExt;
|
||||||
use rbx_asset::context::{RobloxContext,InventoryItem,AssetVersion};
|
use rbx_asset::context::{AssetVersion,InventoryItem,RobloxContext};
|
||||||
|
|
||||||
type AssetID=u64;
|
type AssetID=u64;
|
||||||
type AssetIDFileMap=Vec<(AssetID,PathBuf)>;
|
type AssetIDFileMap=Vec<(AssetID,PathBuf)>;
|
||||||
@ -353,33 +353,36 @@ struct CreateConfig{
|
|||||||
allow_comments:bool,
|
allow_comments:bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///This is hardcoded to create models atm
|
||||||
async fn create(config:CreateConfig)->AResult<()>{
|
async fn create(config:CreateConfig)->AResult<()>{
|
||||||
let resp=RobloxContext::new(config.cookie)
|
let resp=RobloxContext::new(config.cookie)
|
||||||
.create(rbx_asset::context::CreateRequest{
|
.create_asset(rbx_asset::context::CreateAssetRequest{
|
||||||
name:config.model_name,
|
assetType:rbx_asset::context::AssetType::Model,
|
||||||
|
displayName:config.model_name,
|
||||||
description:config.description,
|
description:config.description,
|
||||||
ispublic:config.free_model,
|
creationContext:rbx_asset::context::CreationContext{
|
||||||
allowComments:config.allow_comments,
|
creator:rbx_asset::context::Creator{
|
||||||
groupId:config.group,
|
userId:0,//ever needed? roblox should implicitly know this
|
||||||
|
groupId:config.group.unwrap_or(0),
|
||||||
|
},
|
||||||
|
expectedPrice:0,
|
||||||
|
}
|
||||||
},tokio::fs::read(config.input_file).await?).await?;
|
},tokio::fs::read(config.input_file).await?).await?;
|
||||||
println!("UploadResponse={:?}",resp);
|
println!("UploadResponse={:?}",resp);
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn upload_list(cookie:String,group:Option<u64>,asset_id_file_map:AssetIDFileMap)->AResult<()>{
|
async fn upload_list(cookie:String,asset_id_file_map:AssetIDFileMap)->AResult<()>{
|
||||||
let context=RobloxContext::new(cookie);
|
let context=RobloxContext::new(cookie);
|
||||||
//this is calling map on the vec because the closure produces an iterator of futures
|
//this is calling map on the vec because the closure produces an iterator of futures
|
||||||
futures::stream::iter(asset_id_file_map.into_iter()
|
futures::stream::iter(asset_id_file_map.into_iter()
|
||||||
.map(|(asset_id,file)|{
|
.map(|(asset_id,file)|{
|
||||||
let context=&context;
|
let context=&context;
|
||||||
async move{
|
async move{
|
||||||
Ok((asset_id,context.upload(rbx_asset::context::UploadRequest{
|
Ok((asset_id,context.update_asset(rbx_asset::context::UpdateAssetRequest{
|
||||||
assetid:asset_id,
|
assetId:asset_id,
|
||||||
name:None,
|
displayName:None,
|
||||||
description:None,
|
description:None,
|
||||||
ispublic:None,
|
|
||||||
allowComments:None,
|
|
||||||
groupId:group,
|
|
||||||
},tokio::fs::read(file).await?).await?))
|
},tokio::fs::read(file).await?).await?))
|
||||||
}
|
}
|
||||||
}))
|
}))
|
||||||
@ -401,7 +404,7 @@ async fn download_list(cookie:String,asset_id_file_map:AssetIDFileMap)->AResult<
|
|||||||
.map(|(asset_id,file)|{
|
.map(|(asset_id,file)|{
|
||||||
let context=&context;
|
let context=&context;
|
||||||
async move{
|
async move{
|
||||||
Ok((file,context.download(rbx_asset::context::DownloadRequest{asset_id,version:None}).await?))
|
Ok((file,context.download(rbx_asset::context::GetAssetRequest{asset_id,version:None}).await?))
|
||||||
}
|
}
|
||||||
}))
|
}))
|
||||||
.buffer_unordered(CONCURRENT_REQUESTS)
|
.buffer_unordered(CONCURRENT_REQUESTS)
|
||||||
@ -448,7 +451,7 @@ async fn get_version_history(context:&RobloxContext,asset_id:AssetID)->AResult<V
|
|||||||
let mut cursor:Option<String>=None;
|
let mut cursor:Option<String>=None;
|
||||||
let mut asset_list=Vec::new();
|
let mut asset_list=Vec::new();
|
||||||
loop{
|
loop{
|
||||||
let mut page=context.history_page(rbx_asset::context::HistoryPageRequest{asset_id,cursor}).await?;
|
let mut page=context.history_page(rbx_asset::context::AssetVersionsRequest{asset_id,cursor}).await?;
|
||||||
asset_list.append(&mut page.data);
|
asset_list.append(&mut page.data);
|
||||||
if page.nextPageCursor.is_none(){
|
if page.nextPageCursor.is_none(){
|
||||||
break;
|
break;
|
||||||
@ -513,7 +516,7 @@ async fn download_history(mut config:DownloadHistoryConfig)->AResult<()>{
|
|||||||
//poll paged list of all asset versions
|
//poll paged list of all asset versions
|
||||||
let mut cursor:Option<String>=None;
|
let mut cursor:Option<String>=None;
|
||||||
loop{
|
loop{
|
||||||
let mut page=context.history_page(rbx_asset::context::HistoryPageRequest{asset_id:config.asset_id,cursor}).await?;
|
let mut page=context.history_page(rbx_asset::context::AssetVersionsRequest{asset_id:config.asset_id,cursor}).await?;
|
||||||
let context=&context;
|
let context=&context;
|
||||||
let output_folder=config.output_folder.clone();
|
let output_folder=config.output_folder.clone();
|
||||||
let data=&page.data;
|
let data=&page.data;
|
||||||
@ -543,7 +546,7 @@ async fn download_history(mut config:DownloadHistoryConfig)->AResult<()>{
|
|||||||
let mut path=output_folder.clone();
|
let mut path=output_folder.clone();
|
||||||
path.push(format!("{}_v{}.rbxl",config.asset_id,version_number));
|
path.push(format!("{}_v{}.rbxl",config.asset_id,version_number));
|
||||||
join_set.spawn(async move{
|
join_set.spawn(async move{
|
||||||
let file=context.download(rbx_asset::context::DownloadRequest{asset_id:config.asset_id,version:Some(version_number)}).await?;
|
let file=context.download(rbx_asset::context::GetAssetRequest{asset_id:config.asset_id,version:Some(version_number)}).await?;
|
||||||
|
|
||||||
tokio::fs::write(path,file).await?;
|
tokio::fs::write(path,file).await?;
|
||||||
|
|
||||||
@ -649,7 +652,7 @@ struct DownloadDecompileConfig{
|
|||||||
|
|
||||||
async fn download_decompile(config:DownloadDecompileConfig)->AResult<()>{
|
async fn download_decompile(config:DownloadDecompileConfig)->AResult<()>{
|
||||||
let context=RobloxContext::new(config.cookie);
|
let context=RobloxContext::new(config.cookie);
|
||||||
let file=context.download(rbx_asset::context::DownloadRequest{asset_id:config.asset_id,version:None}).await?;
|
let file=context.download(rbx_asset::context::GetAssetRequest{asset_id:config.asset_id,version:None}).await?;
|
||||||
|
|
||||||
let dom=load_dom(std::io::Cursor::new(file))?;
|
let dom=load_dom(std::io::Cursor::new(file))?;
|
||||||
let context=rox_compiler::DecompiledContext::from_dom(dom);
|
let context=rox_compiler::DecompiledContext::from_dom(dom);
|
||||||
@ -831,7 +834,7 @@ async fn download_and_decompile_history_into_git(config:DownloadAndDecompileHist
|
|||||||
.map(|asset_version|{
|
.map(|asset_version|{
|
||||||
let context=context.clone();
|
let context=context.clone();
|
||||||
tokio::task::spawn(async move{
|
tokio::task::spawn(async move{
|
||||||
let file=context.download(rbx_asset::context::DownloadRequest{asset_id,version:Some(asset_version.assetVersionNumber)}).await?;
|
let file=context.download(rbx_asset::context::GetAssetRequest{asset_id,version:Some(asset_version.assetVersionNumber)}).await?;
|
||||||
let dom=load_dom(std::io::Cursor::new(file))?;
|
let dom=load_dom(std::io::Cursor::new(file))?;
|
||||||
Ok::<_,anyhow::Error>((asset_version,rox_compiler::DecompiledContext::from_dom(dom)))
|
Ok::<_,anyhow::Error>((asset_version,rox_compiler::DecompiledContext::from_dom(dom)))
|
||||||
})
|
})
|
||||||
@ -911,7 +914,7 @@ async fn compile_upload(config:CompileUploadConfig)->AResult<()>{
|
|||||||
|
|
||||||
//upload it
|
//upload it
|
||||||
let context=RobloxContext::new(config.cookie);
|
let context=RobloxContext::new(config.cookie);
|
||||||
context.upload(rbx_asset::context::UploadRequest{
|
context.upload(rbx_asset::context::UpdateAssetRequest{
|
||||||
assetid:config.asset_id,
|
assetid:config.asset_id,
|
||||||
name:None,
|
name:None,
|
||||||
description:None,
|
description:None,
|
||||||
|
Loading…
Reference in New Issue
Block a user