maps-service/validation/src/publish_fix.rs

63 lines
1.8 KiB
Rust
Raw Normal View History

2024-12-12 00:44:56 +00:00
use crate::nats_types::PublishFixRequest;
#[allow(dead_code)]
2024-12-03 06:52:01 +00:00
#[derive(Debug)]
pub enum PublishError{
2024-12-12 00:44:56 +00:00
Get(rbx_asset::cookie::GetError),
Json(serde_json::Error),
Upload(rbx_asset::cookie::UploadError),
2024-12-14 11:31:19 +00:00
ApiActionSubmissionPublish(submissions_api::Error),
2024-12-03 06:09:01 +00:00
}
2024-12-03 06:52:01 +00:00
impl std::fmt::Display for PublishError{
fn fmt(&self,f:&mut std::fmt::Formatter<'_>)->std::fmt::Result{
write!(f,"{self:?}")
}
}
impl std::error::Error for PublishError{}
2024-12-03 06:09:01 +00:00
pub struct Publisher{
2024-12-03 06:52:01 +00:00
roblox_cookie:rbx_asset::cookie::CookieContext,
2024-12-14 11:31:19 +00:00
api:submissions_api::Context,
2024-12-03 06:09:01 +00:00
}
impl Publisher{
pub const fn new(
2024-12-03 06:52:01 +00:00
roblox_cookie:rbx_asset::cookie::CookieContext,
2024-12-14 11:31:19 +00:00
api:submissions_api::Context,
)->Self{
Self{
2024-12-03 06:52:01 +00:00
roblox_cookie,
2024-12-12 00:44:56 +00:00
api,
2024-12-03 06:09:01 +00:00
}
}
pub async fn publish(&self,message:async_nats::jetstream::Message)->Result<(),PublishError>{
2024-12-13 02:52:25 +00:00
println!("publish_fix {:?}",message.message.payload);
2024-12-12 00:44:56 +00:00
// decode json
let publish_info:PublishFixRequest=serde_json::from_slice(&message.payload).map_err(PublishError::Json)?;
// download the map model version
let model_data=self.roblox_cookie.get_asset(rbx_asset::cookie::GetAssetRequest{
asset_id:publish_info.ModelID,
version:Some(publish_info.ModelVersion),
}).await.map_err(PublishError::Get)?;
// upload the map to the strafesnet group
let _upload_response=self.roblox_cookie.upload(rbx_asset::cookie::UploadRequest{
assetid:publish_info.TargetAssetID,
groupId:Some(crate::GROUP_STRAFESNET),
name:None,
description:None,
ispublic:None,
allowComments:None,
},model_data).await.map_err(PublishError::Upload)?;
// that's it, the database entry does not need to be changed.
// mark submission as published
self.api.action_submission_publish(
2024-12-14 11:31:19 +00:00
submissions_api::SubmissionID(publish_info.SubmissionID)
2024-12-12 00:44:56 +00:00
).await.map_err(PublishError::ApiActionSubmissionPublish)?;
Ok(())
2024-12-03 06:09:01 +00:00
}
}