123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- use crate::github::GithubClient;
- use failure::Error;
- use std::collections::HashMap;
- use std::fmt;
- use std::sync::{Arc, RwLock};
- use std::time::{Duration, Instant};
- static CONFIG_FILE_NAME: &str = "triagebot.toml";
- const REFRESH_EVERY: Duration = Duration::from_secs(2 * 60); // Every two minutes
- lazy_static::lazy_static! {
- static ref CONFIG_CACHE:
- RwLock<HashMap<String, (Result<Arc<Config>, ConfigurationError>, Instant)>> =
- RwLock::new(HashMap::new());
- }
- #[derive(PartialEq, Eq, Debug, serde::Deserialize)]
- pub(crate) struct Config {
- pub(crate) relabel: Option<RelabelConfig>,
- pub(crate) assign: Option<AssignConfig>,
- pub(crate) ping: Option<PingConfig>,
- pub(crate) nominate: Option<NominateConfig>,
- }
- #[derive(PartialEq, Eq, Debug, serde::Deserialize)]
- pub(crate) struct NominateConfig {
- // team name -> label
- pub(crate) teams: HashMap<String, String>,
- }
- #[derive(PartialEq, Eq, Debug, serde::Deserialize)]
- pub(crate) struct PingConfig {
- // team name -> message
- // message will have the cc string appended
- #[serde(flatten)]
- pub(crate) teams: HashMap<String, PingTeamConfig>,
- }
- #[derive(PartialEq, Eq, Debug, serde::Deserialize)]
- pub(crate) struct PingTeamConfig {
- pub(crate) message: String,
- pub(crate) label: Option<String>,
- }
- #[derive(PartialEq, Eq, Debug, serde::Deserialize)]
- pub(crate) struct AssignConfig {
- #[serde(default)]
- _empty: (),
- }
- #[derive(PartialEq, Eq, Debug, serde::Deserialize)]
- #[serde(rename_all = "kebab-case")]
- pub(crate) struct RelabelConfig {
- #[serde(default)]
- pub(crate) allow_unauthenticated: Vec<String>,
- }
- pub(crate) async fn get(gh: &GithubClient, repo: &str) -> Result<Arc<Config>, ConfigurationError> {
- if let Some(config) = get_cached_config(repo) {
- log::trace!("returning config for {} from cache", repo);
- config
- } else {
- log::trace!("fetching fresh config for {}", repo);
- let res = get_fresh_config(gh, repo).await;
- CONFIG_CACHE
- .write()
- .unwrap()
- .insert(repo.to_string(), (res.clone(), Instant::now()));
- res
- }
- }
- fn get_cached_config(repo: &str) -> Option<Result<Arc<Config>, ConfigurationError>> {
- let cache = CONFIG_CACHE.read().unwrap();
- cache.get(repo).and_then(|(config, fetch_time)| {
- if fetch_time.elapsed() < REFRESH_EVERY {
- Some(config.clone())
- } else {
- None
- }
- })
- }
- async fn get_fresh_config(
- gh: &GithubClient,
- repo: &str,
- ) -> Result<Arc<Config>, ConfigurationError> {
- let contents = gh
- .raw_file(repo, "master", CONFIG_FILE_NAME)
- .await
- .map_err(|e| ConfigurationError::Http(Arc::new(e)))?
- .ok_or(ConfigurationError::Missing)?;
- let config = Arc::new(toml::from_slice::<Config>(&contents).map_err(ConfigurationError::Toml)?);
- log::debug!("fresh configuration for {}: {:?}", repo, config);
- Ok(config)
- }
- #[derive(Clone, Debug)]
- pub enum ConfigurationError {
- Missing,
- Toml(toml::de::Error),
- Http(Arc<Error>),
- }
- impl std::error::Error for ConfigurationError {}
- impl fmt::Display for ConfigurationError {
- fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
- match self {
- ConfigurationError::Missing => write!(
- f,
- "This repository is not enabled to use triagebot.\n\
- Add a `triagebot.toml` in the root of the master branch to enable it."
- ),
- ConfigurationError::Toml(e) => {
- write!(f, "Malformed `triagebot.toml` in master branch.\n{}", e)
- }
- ConfigurationError::Http(_) => {
- write!(f, "Failed to query configuration for this repository.")
- }
- }
- }
- }
- #[cfg(test)]
- mod tests {
- use super::*;
- #[test]
- fn sample() {
- let config = r#"
- [relabel]
- allow-unauthenticated = [
- "C-*"
- ]
- [assign]
- [ping.compiler]
- message = """\
- So many people!\
- """
- label = "T-compiler"
- [ping.wg-meta]
- message = """\
- Testing\
- """
- [nominate.teams]
- compiler = "T-compiler"
- release = "T-release"
- core = "T-core"
- infra = "T-infra"
- "#;
- let config = toml::from_str::<Config>(&config).unwrap();
- let mut ping_teams = HashMap::new();
- ping_teams.insert(
- "compiler".to_owned(),
- PingTeamConfig {
- message: "So many people!".to_owned(),
- label: Some("T-compiler".to_owned()),
- },
- );
- ping_teams.insert(
- "wg-meta".to_owned(),
- PingTeamConfig {
- message: "Testing".to_owned(),
- label: None,
- },
- );
- let mut nominate_teams = HashMap::new();
- nominate_teams.insert("compiler".to_owned(), "T-compiler".to_owned());
- nominate_teams.insert("release".to_owned(), "T-release".to_owned());
- nominate_teams.insert("core".to_owned(), "T-core".to_owned());
- nominate_teams.insert("infra".to_owned(), "T-infra".to_owned());
- assert_eq!(
- config,
- Config {
- relabel: Some(RelabelConfig {
- allow_unauthenticated: vec!["C-*".into()],
- }),
- assign: Some(AssignConfig { _empty: () }),
- ping: Some(PingConfig { teams: ping_teams }),
- nominate: Some(NominateConfig {
- teams: nominate_teams
- }),
- }
- );
- }
- }
|