浏览代码

Add ability to trigger a docs-update via Zulip.

Eric Huss 1 年之前
父节点
当前提交
95e873f98a
共有 2 个文件被更改,包括 26 次插入8 次删除
  1. 10 8
      src/handlers/docs_update.rs
  2. 16 0
      src/zulip.rs

+ 10 - 8
src/handlers/docs_update.rs

@@ -1,7 +1,7 @@
 //! A scheduled job to post a PR to update the documentation on rust-lang/rust.
 
 use crate::db::jobs::JobSchedule;
-use crate::github::{self, GitTreeEntry, GithubClient, Repository};
+use crate::github::{self, GitTreeEntry, GithubClient, Issue, Repository};
 use anyhow::Context;
 use anyhow::Result;
 use cron::Schedule;
@@ -56,10 +56,13 @@ pub async fn handle_job() -> Result<()> {
     }
 
     tracing::trace!("starting docs-update");
-    docs_update().await.context("failed to process docs update")
+    docs_update()
+        .await
+        .context("failed to process docs update")?;
+    Ok(())
 }
 
-async fn docs_update() -> Result<()> {
+pub async fn docs_update() -> Result<Option<Issue>> {
     let gh = GithubClient::new_with_default_token(Client::new());
     let work_repo = gh.repository(WORK_REPO).await?;
     work_repo
@@ -69,12 +72,11 @@ async fn docs_update() -> Result<()> {
     let updates = get_submodule_updates(&gh, &work_repo).await?;
     if updates.is_empty() {
         tracing::trace!("no updates this week?");
-        return Ok(());
+        return Ok(None);
     }
 
     create_commit(&gh, &work_repo, &updates).await?;
-    create_pr(&gh, &updates).await?;
-    Ok(())
+    Ok(Some(create_pr(&gh, &updates).await?))
 }
 
 struct Update {
@@ -184,7 +186,7 @@ async fn create_commit(
     Ok(())
 }
 
-async fn create_pr(gh: &GithubClient, updates: &[Update]) -> Result<()> {
+async fn create_pr(gh: &GithubClient, updates: &[Update]) -> Result<Issue> {
     let dest_repo = gh.repository(DEST_REPO).await?;
     let mut body = String::new();
     for update in updates {
@@ -197,5 +199,5 @@ async fn create_pr(gh: &GithubClient, updates: &[Update]) -> Result<()> {
         .new_pr(gh, TITLE, &head, &dest_repo.default_branch, &body)
         .await?;
     tracing::debug!("created PR {}", pr.html_url);
-    Ok(())
+    Ok(pr)
 }

+ 16 - 0
src/zulip.rs

@@ -1,6 +1,7 @@
 use crate::db::notifications::add_metadata;
 use crate::db::notifications::{self, delete_ping, move_indices, record_ping, Identifier};
 use crate::github::{self, GithubClient};
+use crate::handlers::docs_update::docs_update;
 use crate::handlers::Context;
 use anyhow::{format_err, Context as _};
 use std::convert::TryInto;
@@ -144,6 +145,7 @@ fn handle_command<'a>(
                                 .await
                                 .map_err(|e| format_err!("Failed to await at this time: {e:?}"))
                             }
+                            Some("docs-update") => return trigger_docs_update().await,
                             _ => {}
                         }
                     }
@@ -695,3 +697,17 @@ async fn post_waiter(
     })
     .unwrap())
 }
+
+async fn trigger_docs_update() -> anyhow::Result<String> {
+    match docs_update().await {
+        Ok(None) => Ok("No updates found.".to_string()),
+        Ok(Some(pr)) => Ok(format!("Created docs update PR <{}>", pr.html_url)),
+        Err(e) => {
+            // Don't send errors to Zulip since they may contain sensitive data.
+            log::error!("Docs update via Zulip failed: {e:?}");
+            Err(format_err!(
+                "Docs update failed, please check the logs for more details."
+            ))
+        }
+    }
+}