use super::client::DiscourseClient;
use super::error::http_error;
use super::models::{CreatePostResponse, TopicResponse};
use anyhow::{Context, Result, anyhow};
use serde::{Deserialize, Serialize};
use serde_json::Value;
#[derive(Debug, Deserialize, Serialize, Clone)]
pub struct PostInfo {
pub id: u64,
pub topic_id: u64,
#[serde(default)]
pub post_number: Option<u64>,
#[serde(default)]
pub raw: Option<String>,
}
impl DiscourseClient {
pub fn fetch_topic(&self, topic_id: u64, include_raw: bool) -> Result<TopicResponse> {
let path = if include_raw {
format!("/t/{}.json?include_raw=1", topic_id)
} else {
format!("/t/{}.json", topic_id)
};
let response = self.get(&path)?;
let status = response.status();
let text = response.text().context("reading topic response body")?;
if !status.is_success() {
return Err(http_error("topic request", status, &text));
}
let body: TopicResponse = serde_json::from_str(&text).context("parsing topic json")?;
Ok(body)
}
pub fn fetch_post_raw(&self, post_id: u64) -> Result<Option<String>> {
Ok(self.fetch_post(post_id)?.raw)
}
pub fn fetch_post(&self, post_id: u64) -> Result<PostInfo> {
let path = format!("/posts/{}.json?include_raw=1", post_id);
let response = self.get(&path)?;
let status = response.status();
let text = response.text().context("reading post response body")?;
if !status.is_success() {
return Err(http_error("post request", status, &text));
}
let info: PostInfo = serde_json::from_str(&text).context("parsing post response")?;
Ok(info)
}
pub fn delete_post(&self, post_id: u64) -> Result<()> {
let path = format!("/posts/{}.json", post_id);
let response = self.send_retrying(|| Ok(self.delete_builder(&path)?))?;
let status = response.status();
if !status.is_success() {
let text = response
.text()
.unwrap_or_else(|_| "<failed to read response body>".to_string());
return Err(http_error("delete post request", status, &text));
}
Ok(())
}
pub fn move_posts(
&self,
source_topic_id: u64,
post_ids: &[u64],
dest_topic_id: u64,
) -> Result<String> {
if post_ids.is_empty() {
return Err(anyhow!("no post IDs supplied to move"));
}
let dest = dest_topic_id.to_string();
let path = format!("/t/{}/move-posts.json", source_topic_id);
let mut payload: Vec<(String, String)> = Vec::new();
payload.push(("destination_topic_id".to_string(), dest.clone()));
for id in post_ids {
payload.push(("post_ids[]".to_string(), id.to_string()));
}
let response = self.send_retrying(|| Ok(self.post(&path)?.form(&payload)))?;
let status = response.status();
let text = response.text().context("reading move-posts response")?;
if !status.is_success() {
return Err(http_error("move posts request", status, &text));
}
let value: Value =
serde_json::from_str(&text).context("parsing move-posts response")?;
let url = value
.get("url")
.and_then(|v| v.as_str())
.map(|s| s.to_string())
.unwrap_or_else(|| format!("/t/{}", dest));
Ok(url)
}
pub fn update_post(&self, post_id: u64, raw: &str) -> Result<()> {
let path = format!("/posts/{}.json", post_id);
let payload = [("post[raw]", raw)];
let response = self.send_retrying(|| Ok(self.put(&path)?.form(&payload)))?;
let status = response.status();
if !status.is_success() {
let text = response
.text()
.unwrap_or_else(|_| "<failed to read response body>".to_string());
return Err(http_error("update post request", status, &text));
}
Ok(())
}
pub fn create_topic(&self, category_id: u64, title: &str, raw: &str) -> Result<u64> {
let category = category_id.to_string();
let payload = [("title", title), ("raw", raw), ("category", &category)];
let response = self.send_retrying(|| Ok(self.post("/posts.json")?.form(&payload)))?;
let status = response.status();
let text = response.text().context("reading create response body")?;
if !status.is_success() {
return Err(http_error("create topic request", status, &text));
}
let body: CreatePostResponse =
serde_json::from_str(&text).context("parsing create topic response")?;
Ok(body.topic_id)
}
pub fn create_post(&self, topic_id: u64, raw: &str) -> Result<u64> {
let topic = topic_id.to_string();
let payload = [("topic_id", topic.as_str()), ("raw", raw)];
let response = self.send_retrying(|| Ok(self.post("/posts.json")?.form(&payload)))?;
let status = response.status();
let text = response.text().context("reading create response body")?;
if !status.is_success() {
return Err(http_error("create post request", status, &text));
}
let body: CreatePostResponse =
serde_json::from_str(&text).context("parsing create post response")?;
Ok(body.id)
}
}