maps-service/validation/src/publish_fix.rs

79 lines
2.3 KiB
Rust
Raw Normal View History

2024-12-02 22:09:01 -08:00
use futures::StreamExt;
2024-12-11 16:44:56 -08:00
use crate::nats_types::PublishFixRequest;
#[allow(dead_code)]
2024-12-02 22:52:01 -08:00
#[derive(Debug)]
2024-12-02 22:09:01 -08:00
enum PublishError{
2024-12-11 16:44:56 -08:00
Get(rbx_asset::cookie::GetError),
Json(serde_json::Error),
Upload(rbx_asset::cookie::UploadError),
ApiActionSubmissionPublish(api::Error),
2024-12-02 22:09:01 -08:00
}
2024-12-02 22:52:01 -08: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-02 22:09:01 -08:00
pub struct Publisher{
subscriber:async_nats::Subscriber,
2024-12-02 22:52:01 -08:00
roblox_cookie:rbx_asset::cookie::CookieContext,
2024-12-11 16:44:56 -08:00
api:api::Context,
2024-12-02 22:09:01 -08:00
}
impl Publisher{
2024-12-02 22:52:01 -08:00
pub async fn new(
nats:async_nats::Client,
roblox_cookie:rbx_asset::cookie::CookieContext,
2024-12-11 16:44:56 -08:00
api:api::Context,
2024-12-02 22:52:01 -08:00
)->Result<Self,async_nats::SubscribeError>{
2024-12-02 22:09:01 -08:00
Ok(Self{
subscriber:nats.subscribe("publish_fix").await?,
2024-12-02 22:52:01 -08:00
roblox_cookie,
2024-12-11 16:44:56 -08:00
api,
2024-12-02 22:09:01 -08:00
})
}
pub async fn run(mut self){
while let Some(message)=self.subscriber.next().await{
2024-12-11 16:44:56 -08:00
self.publish_supress_error(message).await
}
}
async fn publish_supress_error(&self,message:async_nats::Message){
match self.publish(message).await{
Ok(())=>println!("[PublishFix] Published, hooray!"),
Err(e)=>println!("[PublishFix] There was an error, oopsie! {e}"),
2024-12-02 22:09:01 -08:00
}
}
2024-12-11 16:44:56 -08:00
async fn publish(&self,message:async_nats::Message)->Result<(),PublishError>{
println!("publish_fix {:?}",message);
// 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(
api::SubmissionID(publish_info.SubmissionID)
).await.map_err(PublishError::ApiActionSubmissionPublish)?;
Ok(())
2024-12-02 22:09:01 -08:00
}
}