v0.4.8 better errors #9
729
Cargo.lock
generated
729
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,7 @@
|
|||||||
workspace = { members = ["rbx_asset", "rox_compiler"] }
|
workspace = { members = ["rbx_asset", "rox_compiler"] }
|
||||||
[package]
|
[package]
|
||||||
name = "asset-tool"
|
name = "asset-tool"
|
||||||
version = "0.4.7"
|
version = "0.4.8"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rbx_asset"
|
name = "rbx_asset"
|
||||||
version = "0.2.3"
|
version = "0.2.5"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = ["strafesnet"]
|
publish = ["strafesnet"]
|
||||||
repository = "https://git.itzana.me/StrafesNET/asset-tool"
|
repository = "https://git.itzana.me/StrafesNET/asset-tool"
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
use crate::ResponseError;
|
||||||
|
|
||||||
#[derive(Debug,serde::Deserialize,serde::Serialize)]
|
#[derive(Debug,serde::Deserialize,serde::Serialize)]
|
||||||
#[allow(nonstandard_style,dead_code)]
|
#[allow(nonstandard_style,dead_code)]
|
||||||
pub enum AssetType{
|
pub enum AssetType{
|
||||||
@ -40,6 +42,7 @@ impl AssetOperation{
|
|||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum CreateError{
|
pub enum CreateError{
|
||||||
Parse(url::ParseError),
|
Parse(url::ParseError),
|
||||||
|
Response(ResponseError),
|
||||||
Serialize(serde_json::Error),
|
Serialize(serde_json::Error),
|
||||||
Reqwest(reqwest::Error),
|
Reqwest(reqwest::Error),
|
||||||
}
|
}
|
||||||
@ -102,6 +105,7 @@ pub struct UpdatePlaceResponse{
|
|||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum UpdateError{
|
pub enum UpdateError{
|
||||||
ParseError(url::ParseError),
|
ParseError(url::ParseError),
|
||||||
|
Response(ResponseError),
|
||||||
SerializeError(serde_json::Error),
|
SerializeError(serde_json::Error),
|
||||||
Reqwest(reqwest::Error),
|
Reqwest(reqwest::Error),
|
||||||
}
|
}
|
||||||
@ -167,6 +171,7 @@ pub struct GetAssetRequest{
|
|||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum GetError{
|
pub enum GetError{
|
||||||
ParseError(url::ParseError),
|
ParseError(url::ParseError),
|
||||||
|
Response(ResponseError),
|
||||||
Reqwest(reqwest::Error),
|
Reqwest(reqwest::Error),
|
||||||
IO(std::io::Error)
|
IO(std::io::Error)
|
||||||
}
|
}
|
||||||
@ -203,6 +208,7 @@ pub struct AssetVersionsResponse{
|
|||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum AssetVersionsError{
|
pub enum AssetVersionsError{
|
||||||
ParseError(url::ParseError),
|
ParseError(url::ParseError),
|
||||||
|
Response(ResponseError),
|
||||||
Reqwest(reqwest::Error),
|
Reqwest(reqwest::Error),
|
||||||
}
|
}
|
||||||
impl std::fmt::Display for AssetVersionsError{
|
impl std::fmt::Display for AssetVersionsError{
|
||||||
@ -238,6 +244,7 @@ pub struct InventoryPageResponse{
|
|||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum InventoryPageError{
|
pub enum InventoryPageError{
|
||||||
ParseError(url::ParseError),
|
ParseError(url::ParseError),
|
||||||
|
Response(ResponseError),
|
||||||
Reqwest(reqwest::Error),
|
Reqwest(reqwest::Error),
|
||||||
}
|
}
|
||||||
impl std::fmt::Display for InventoryPageError{
|
impl std::fmt::Display for InventoryPageError{
|
||||||
@ -368,9 +375,9 @@ impl CloudContext{
|
|||||||
.text("request",request_config)
|
.text("request",request_config)
|
||||||
.part("fileContent",part);
|
.part("fileContent",part);
|
||||||
|
|
||||||
let operation=self.post_form(url,form).await
|
let operation=crate::response_ok(
|
||||||
.map_err(CreateError::Reqwest)?
|
self.post_form(url,form).await.map_err(CreateError::Reqwest)?
|
||||||
.error_for_status().map_err(CreateError::Reqwest)?
|
).await.map_err(CreateError::Response)?
|
||||||
.json::<RobloxOperation>().await.map_err(CreateError::Reqwest)?;
|
.json::<RobloxOperation>().await.map_err(CreateError::Reqwest)?;
|
||||||
|
|
||||||
Ok(AssetOperation{
|
Ok(AssetOperation{
|
||||||
@ -387,10 +394,9 @@ impl CloudContext{
|
|||||||
.text("request",request_config)
|
.text("request",request_config)
|
||||||
.part("fileContent",reqwest::multipart::Part::bytes(body));
|
.part("fileContent",reqwest::multipart::Part::bytes(body));
|
||||||
|
|
||||||
let operation=self.patch_form(url,form).await
|
let operation=crate::response_ok(
|
||||||
.map_err(UpdateError::Reqwest)?
|
self.patch_form(url,form).await.map_err(UpdateError::Reqwest)?
|
||||||
//roblox api documentation is very poor, just give the status code and drop the json
|
).await.map_err(UpdateError::Response)?
|
||||||
.error_for_status().map_err(UpdateError::Reqwest)?
|
|
||||||
.json::<RobloxOperation>().await.map_err(UpdateError::Reqwest)?;
|
.json::<RobloxOperation>().await.map_err(UpdateError::Reqwest)?;
|
||||||
|
|
||||||
Ok(AssetOperation{
|
Ok(AssetOperation{
|
||||||
@ -401,24 +407,27 @@ impl CloudContext{
|
|||||||
let raw_url=format!("https://apis.roblox.com/assets/v1/operations/{}",config.operation_id);
|
let raw_url=format!("https://apis.roblox.com/assets/v1/operations/{}",config.operation_id);
|
||||||
let url=reqwest::Url::parse(raw_url.as_str()).map_err(GetError::ParseError)?;
|
let url=reqwest::Url::parse(raw_url.as_str()).map_err(GetError::ParseError)?;
|
||||||
|
|
||||||
self.get(url).await.map_err(GetError::Reqwest)?
|
crate::response_ok(
|
||||||
.error_for_status().map_err(GetError::Reqwest)?
|
self.get(url).await.map_err(GetError::Reqwest)?
|
||||||
|
).await.map_err(GetError::Response)?
|
||||||
.json::<RobloxOperation>().await.map_err(GetError::Reqwest)
|
.json::<RobloxOperation>().await.map_err(GetError::Reqwest)
|
||||||
}
|
}
|
||||||
pub async fn get_asset_info(&self,config:GetAssetInfoRequest)->Result<AssetResponse,GetError>{
|
pub async fn get_asset_info(&self,config:GetAssetInfoRequest)->Result<AssetResponse,GetError>{
|
||||||
let raw_url=format!("https://apis.roblox.com/assets/v1/assets/{}",config.asset_id);
|
let raw_url=format!("https://apis.roblox.com/assets/v1/assets/{}",config.asset_id);
|
||||||
let url=reqwest::Url::parse(raw_url.as_str()).map_err(GetError::ParseError)?;
|
let url=reqwest::Url::parse(raw_url.as_str()).map_err(GetError::ParseError)?;
|
||||||
|
|
||||||
self.get(url).await.map_err(GetError::Reqwest)?
|
crate::response_ok(
|
||||||
.error_for_status().map_err(GetError::Reqwest)?
|
self.get(url).await.map_err(GetError::Reqwest)?
|
||||||
|
).await.map_err(GetError::Response)?
|
||||||
.json::<AssetResponse>().await.map_err(GetError::Reqwest)
|
.json::<AssetResponse>().await.map_err(GetError::Reqwest)
|
||||||
}
|
}
|
||||||
pub async fn get_asset_version(&self,config:GetAssetVersionRequest)->Result<Vec<u8>,GetError>{
|
pub async fn get_asset_version(&self,config:GetAssetVersionRequest)->Result<Vec<u8>,GetError>{
|
||||||
let raw_url=format!("https://apis.roblox.com/assets/v1/assets/{}/versions/{}",config.asset_id,config.version);
|
let raw_url=format!("https://apis.roblox.com/assets/v1/assets/{}/versions/{}",config.asset_id,config.version);
|
||||||
let url=reqwest::Url::parse(raw_url.as_str()).map_err(GetError::ParseError)?;
|
let url=reqwest::Url::parse(raw_url.as_str()).map_err(GetError::ParseError)?;
|
||||||
|
|
||||||
let body=self.get(url).await.map_err(GetError::Reqwest)?
|
let body=crate::response_ok(
|
||||||
.error_for_status().map_err(GetError::Reqwest)?
|
self.get(url).await.map_err(GetError::Reqwest)?
|
||||||
|
).await.map_err(GetError::Response)?
|
||||||
.bytes().await.map_err(GetError::Reqwest)?;
|
.bytes().await.map_err(GetError::Reqwest)?;
|
||||||
|
|
||||||
match maybe_gzip_decode(&mut std::io::Cursor::new(body)){
|
match maybe_gzip_decode(&mut std::io::Cursor::new(body)){
|
||||||
@ -441,8 +450,9 @@ impl CloudContext{
|
|||||||
let raw_url=format!("https://apis.roblox.com/assets/v1/assets/{}/versions",config.asset_id);
|
let raw_url=format!("https://apis.roblox.com/assets/v1/assets/{}/versions",config.asset_id);
|
||||||
let url=reqwest::Url::parse(raw_url.as_str()).map_err(AssetVersionsError::ParseError)?;
|
let url=reqwest::Url::parse(raw_url.as_str()).map_err(AssetVersionsError::ParseError)?;
|
||||||
|
|
||||||
self.get(url).await.map_err(AssetVersionsError::Reqwest)?
|
crate::response_ok(
|
||||||
.error_for_status().map_err(AssetVersionsError::Reqwest)?
|
self.get(url).await.map_err(AssetVersionsError::Reqwest)?
|
||||||
|
).await.map_err(AssetVersionsError::Response)?
|
||||||
.json::<AssetVersionsResponse>().await.map_err(AssetVersionsError::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>{
|
||||||
@ -455,8 +465,9 @@ impl CloudContext{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
self.get(url).await.map_err(InventoryPageError::Reqwest)?
|
crate::response_ok(
|
||||||
.error_for_status().map_err(InventoryPageError::Reqwest)?
|
self.get(url).await.map_err(InventoryPageError::Reqwest)?
|
||||||
|
).await.map_err(InventoryPageError::Response)?
|
||||||
.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>{
|
pub async fn update_place(&self,config:UpdatePlaceRequest,body:impl Into<reqwest::Body>+Clone)->Result<UpdatePlaceResponse,UpdateError>{
|
||||||
@ -468,8 +479,9 @@ impl CloudContext{
|
|||||||
query.append_pair("versionType","Published");
|
query.append_pair("versionType","Published");
|
||||||
}
|
}
|
||||||
|
|
||||||
self.post(url,body).await.map_err(UpdateError::Reqwest)?
|
crate::response_ok(
|
||||||
.error_for_status().map_err(UpdateError::Reqwest)?
|
self.post(url,body).await.map_err(UpdateError::Reqwest)?
|
||||||
|
).await.map_err(UpdateError::Response)?
|
||||||
.json::<UpdatePlaceResponse>().await.map_err(UpdateError::Reqwest)
|
.json::<UpdatePlaceResponse>().await.map_err(UpdateError::Reqwest)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
use crate::ResponseError;
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum PostError{
|
pub enum PostError{
|
||||||
Reqwest(reqwest::Error),
|
Reqwest(reqwest::Error),
|
||||||
@ -23,6 +25,7 @@ pub struct CreateRequest{
|
|||||||
pub enum CreateError{
|
pub enum CreateError{
|
||||||
ParseError(url::ParseError),
|
ParseError(url::ParseError),
|
||||||
PostError(PostError),
|
PostError(PostError),
|
||||||
|
Response(ResponseError),
|
||||||
Reqwest(reqwest::Error),
|
Reqwest(reqwest::Error),
|
||||||
}
|
}
|
||||||
impl std::fmt::Display for CreateError{
|
impl std::fmt::Display for CreateError{
|
||||||
@ -46,6 +49,7 @@ pub enum UploadError{
|
|||||||
ParseError(url::ParseError),
|
ParseError(url::ParseError),
|
||||||
PostError(PostError),
|
PostError(PostError),
|
||||||
Reqwest(reqwest::Error),
|
Reqwest(reqwest::Error),
|
||||||
|
Response(ResponseError),
|
||||||
AssetIdIsZero,
|
AssetIdIsZero,
|
||||||
}
|
}
|
||||||
impl std::fmt::Display for UploadError{
|
impl std::fmt::Display for UploadError{
|
||||||
@ -54,11 +58,11 @@ impl std::fmt::Display for UploadError{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
impl std::error::Error for UploadError{}
|
impl std::error::Error for UploadError{}
|
||||||
|
type RobloxUploadResponse=u64;
|
||||||
#[derive(Debug,serde::Deserialize,serde::Serialize)]
|
#[derive(Debug,serde::Deserialize,serde::Serialize)]
|
||||||
#[allow(nonstandard_style,dead_code)]
|
#[allow(nonstandard_style,dead_code)]
|
||||||
pub struct UploadResponse{
|
pub struct UploadResponse{
|
||||||
pub AssetId:u64,
|
pub AssetId:u64,
|
||||||
pub AssetVersionId:u64,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(nonstandard_style,dead_code)]
|
#[allow(nonstandard_style,dead_code)]
|
||||||
@ -69,6 +73,7 @@ pub struct GetAssetRequest{
|
|||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum GetError{
|
pub enum GetError{
|
||||||
ParseError(url::ParseError),
|
ParseError(url::ParseError),
|
||||||
|
Response(ResponseError),
|
||||||
Reqwest(reqwest::Error),
|
Reqwest(reqwest::Error),
|
||||||
IO(std::io::Error)
|
IO(std::io::Error)
|
||||||
}
|
}
|
||||||
@ -105,6 +110,7 @@ pub struct AssetVersionsPageResponse{
|
|||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub enum PageError{
|
pub enum PageError{
|
||||||
ParseError(url::ParseError),
|
ParseError(url::ParseError),
|
||||||
|
Response(ResponseError),
|
||||||
Reqwest(reqwest::Error),
|
Reqwest(reqwest::Error),
|
||||||
}
|
}
|
||||||
impl std::fmt::Display for PageError{
|
impl std::fmt::Display for PageError{
|
||||||
@ -204,8 +210,9 @@ fn read_readable(mut readable:impl std::io::Read)->std::io::Result<Vec<u8>>{
|
|||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct Cookie(String);
|
pub struct Cookie(String);
|
||||||
impl Cookie{
|
impl Cookie{
|
||||||
|
/// cookie is prepended with ".ROBLOSECURITY=" by this function
|
||||||
pub fn new(cookie:String)->Self{
|
pub fn new(cookie:String)->Self{
|
||||||
Self(cookie)
|
Self(format!(".ROBLOSECURITY={cookie}"))
|
||||||
}
|
}
|
||||||
pub fn get(self)->String{
|
pub fn get(self)->String{
|
||||||
self.0
|
self.0
|
||||||
@ -265,10 +272,14 @@ impl CookieContext{
|
|||||||
query.append_pair("groupId",group_id.to_string().as_str());
|
query.append_pair("groupId",group_id.to_string().as_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
let asset_id=crate::response_ok(
|
||||||
|
self.post(url,body).await.map_err(CreateError::PostError)?
|
||||||
|
).await.map_err(CreateError::Response)?
|
||||||
|
.json::<RobloxUploadResponse>().await.map_err(CreateError::Reqwest)?;
|
||||||
|
|
||||||
self.post(url,body).await.map_err(CreateError::PostError)?
|
Ok(UploadResponse{
|
||||||
.error_for_status().map_err(CreateError::Reqwest)?
|
AssetId:asset_id,
|
||||||
.json::<UploadResponse>().await.map_err(CreateError::Reqwest)
|
})
|
||||||
}
|
}
|
||||||
pub async fn upload(&self,config:UploadRequest,body:impl Into<reqwest::Body>+Clone)->Result<UploadResponse,UploadError>{
|
pub async fn upload(&self,config:UploadRequest,body:impl Into<reqwest::Body>+Clone)->Result<UploadResponse,UploadError>{
|
||||||
let mut url=reqwest::Url::parse("https://data.roblox.com/Data/Upload.ashx?json=1&type=Model&genreTypeId=1").map_err(UploadError::ParseError)?;
|
let mut url=reqwest::Url::parse("https://data.roblox.com/Data/Upload.ashx?json=1&type=Model&genreTypeId=1").map_err(UploadError::ParseError)?;
|
||||||
@ -296,10 +307,14 @@ impl CookieContext{
|
|||||||
query.append_pair("groupId",group_id.to_string().as_str());
|
query.append_pair("groupId",group_id.to_string().as_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
let asset_id=crate::response_ok(
|
||||||
|
self.post(url,body).await.map_err(UploadError::PostError)?
|
||||||
|
).await.map_err(UploadError::Response)?
|
||||||
|
.json::<RobloxUploadResponse>().await.map_err(UploadError::Reqwest)?;
|
||||||
|
|
||||||
self.post(url,body).await.map_err(UploadError::PostError)?
|
Ok(UploadResponse{
|
||||||
.error_for_status().map_err(UploadError::Reqwest)?
|
AssetId:asset_id,
|
||||||
.json::<UploadResponse>().await.map_err(UploadError::Reqwest)
|
})
|
||||||
}
|
}
|
||||||
pub async fn get_asset(&self,config:GetAssetRequest)->Result<Vec<u8>,GetError>{
|
pub async fn get_asset(&self,config:GetAssetRequest)->Result<Vec<u8>,GetError>{
|
||||||
let mut url=reqwest::Url::parse("https://assetdelivery.roblox.com/v1/asset/").map_err(GetError::ParseError)?;
|
let mut url=reqwest::Url::parse("https://assetdelivery.roblox.com/v1/asset/").map_err(GetError::ParseError)?;
|
||||||
@ -311,8 +326,9 @@ impl CookieContext{
|
|||||||
query.append_pair("version",version.to_string().as_str());
|
query.append_pair("version",version.to_string().as_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
let body=self.get(url).await.map_err(GetError::Reqwest)?
|
let body=crate::response_ok(
|
||||||
.error_for_status().map_err(GetError::Reqwest)?
|
self.get(url).await.map_err(GetError::Reqwest)?
|
||||||
|
).await.map_err(GetError::Response)?
|
||||||
.bytes().await.map_err(GetError::Reqwest)?;
|
.bytes().await.map_err(GetError::Reqwest)?;
|
||||||
|
|
||||||
match maybe_gzip_decode(&mut std::io::Cursor::new(body)){
|
match maybe_gzip_decode(&mut std::io::Cursor::new(body)){
|
||||||
@ -333,9 +349,9 @@ impl CookieContext{
|
|||||||
query.append_pair("cursor",cursor);
|
query.append_pair("cursor",cursor);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
crate::response_ok(
|
||||||
self.get(url).await.map_err(PageError::Reqwest)?
|
self.get(url).await.map_err(PageError::Reqwest)?
|
||||||
.error_for_status().map_err(PageError::Reqwest)?
|
).await.map_err(PageError::Response)?
|
||||||
.json::<AssetVersionsPageResponse>().await.map_err(PageError::Reqwest)
|
.json::<AssetVersionsPageResponse>().await.map_err(PageError::Reqwest)
|
||||||
}
|
}
|
||||||
pub async fn get_creations_page(&self,config:&CreationsPageRequest)->Result<CreationsPageResponse,PageError>{
|
pub async fn get_creations_page(&self,config:&CreationsPageRequest)->Result<CreationsPageResponse,PageError>{
|
||||||
@ -348,9 +364,9 @@ impl CookieContext{
|
|||||||
query.append_pair("cursor",cursor);
|
query.append_pair("cursor",cursor);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
crate::response_ok(
|
||||||
self.get(url).await.map_err(PageError::Reqwest)?
|
self.get(url).await.map_err(PageError::Reqwest)?
|
||||||
.error_for_status().map_err(PageError::Reqwest)?
|
).await.map_err(PageError::Response)?
|
||||||
.json::<CreationsPageResponse>().await.map_err(PageError::Reqwest)
|
.json::<CreationsPageResponse>().await.map_err(PageError::Reqwest)
|
||||||
}
|
}
|
||||||
pub async fn get_user_inventory_page(&self,config:&UserInventoryPageRequest)->Result<UserInventoryPageResponse,PageError>{
|
pub async fn get_user_inventory_page(&self,config:&UserInventoryPageRequest)->Result<UserInventoryPageResponse,PageError>{
|
||||||
@ -362,9 +378,9 @@ impl CookieContext{
|
|||||||
query.append_pair("cursor",cursor);
|
query.append_pair("cursor",cursor);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
crate::response_ok(
|
||||||
self.get(url).await.map_err(PageError::Reqwest)?
|
self.get(url).await.map_err(PageError::Reqwest)?
|
||||||
.error_for_status().map_err(PageError::Reqwest)?
|
).await.map_err(PageError::Response)?
|
||||||
.json::<UserInventoryPageResponse>().await.map_err(PageError::Reqwest)
|
.json::<UserInventoryPageResponse>().await.map_err(PageError::Reqwest)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,2 +1,37 @@
|
|||||||
pub mod cloud;
|
pub mod cloud;
|
||||||
pub mod cookie;
|
pub mod cookie;
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct StatusCodeWithUrlAndBody{
|
||||||
|
pub status_code:reqwest::StatusCode,
|
||||||
|
pub url:url::Url,
|
||||||
|
pub body:String,
|
||||||
|
}
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub enum ResponseError{
|
||||||
|
Reqwest(reqwest::Error),
|
||||||
|
StatusCodeWithUrlAndBody(StatusCodeWithUrlAndBody),
|
||||||
|
}
|
||||||
|
impl std::fmt::Display for ResponseError{
|
||||||
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
|
write!(f,"{self:?}")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
impl std::error::Error for ResponseError{}
|
||||||
|
// lazy function to draw out meaningful info from http response on failure
|
||||||
|
pub async fn response_ok(response:reqwest::Response)->Result<reqwest::Response,ResponseError>{
|
||||||
|
let status_code=response.status();
|
||||||
|
if status_code.is_success(){
|
||||||
|
Ok(response)
|
||||||
|
}else{
|
||||||
|
let url=response.url().to_owned();
|
||||||
|
let bytes=response.bytes().await.map_err(ResponseError::Reqwest)?;
|
||||||
|
let body=String::from_utf8_lossy(&bytes).to_string();
|
||||||
|
Err(ResponseError::StatusCodeWithUrlAndBody(StatusCodeWithUrlAndBody{
|
||||||
|
status_code,
|
||||||
|
url,
|
||||||
|
body,
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -621,7 +621,7 @@ async fn cookie_from_args(literal:Option<String>,environment:Option<String>,file
|
|||||||
(None,None,Some(cookie_file))=>tokio::fs::read_to_string(cookie_file).await?,
|
(None,None,Some(cookie_file))=>tokio::fs::read_to_string(cookie_file).await?,
|
||||||
_=>Err(anyhow::Error::msg("Illegal cookie argument triple"))?,
|
_=>Err(anyhow::Error::msg("Illegal cookie argument triple"))?,
|
||||||
};
|
};
|
||||||
Ok(Cookie::new(format!(".ROBLOSECURITY={cookie}")))
|
Ok(Cookie::new(cookie))
|
||||||
}
|
}
|
||||||
async fn api_key_from_args(literal:Option<String>,environment:Option<String>,file:Option<PathBuf>)->AResult<ApiKey>{
|
async fn api_key_from_args(literal:Option<String>,environment:Option<String>,file:Option<PathBuf>)->AResult<ApiKey>{
|
||||||
let api_key=match (literal,environment,file){
|
let api_key=match (literal,environment,file){
|
||||||
|
Loading…
Reference in New Issue
Block a user