Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/ofborg
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d8a77b034715
Choose a base ref
...
head repository: NixOS/ofborg
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a918d73eef65
Choose a head ref
  • 3 commits
  • 2 files changed
  • 1 contributor

Commits on May 12, 2020

  1. Copy the full SHA
    cc8aaae View commit details
  2. Copy the full SHA
    41883df View commit details
  3. Merge pull request #484 from LnL7/lapin-comment-filter

    lapin github-comment-filter
    LnL7 authored May 12, 2020
    Copy the full SHA
    a918d73 View commit details
Showing with 67 additions and 75 deletions.
  1. +61 −74 ofborg/src/bin/github-comment-filter.rs
  2. +6 −1 ofborg/src/tasks/githubcommentfilter.rs
135 changes: 61 additions & 74 deletions ofborg/src/bin/github-comment-filter.rs
Original file line number Diff line number Diff line change
@@ -1,91 +1,78 @@
use ofborg::config;
use ofborg::easyamqp::{self, ChannelExt, ConsumerExt};
use ofborg::tasks;
use ofborg::worker;

use std::env;
use std::error::Error;

use amqp::Basic;
use async_std::task;
use tracing::info;

fn main() {
let cfg = config::load(env::args().nth(1).unwrap().as_ref());
use ofborg::config;
use ofborg::easyamqp::{self, ChannelExt, ConsumerExt};
use ofborg::easylapin;
use ofborg::tasks;

fn main() -> Result<(), Box<dyn Error>> {
ofborg::setup_log();

info!("Hello, world!");
let arg = env::args()
.nth(1)
.expect("usage: github-comment-filter <config>");
let cfg = config::load(arg.as_ref());

let mut session = easyamqp::session_from_config(&cfg.rabbitmq).unwrap();
info!("Connected to rabbitmq");
let conn = easylapin::from_config(&cfg.rabbitmq)?;
let mut chan = task::block_on(conn.create_channel())?;

let mut channel = session.open_channel(1).unwrap();
channel
.declare_exchange(easyamqp::ExchangeConfig {
exchange: "github-events".to_owned(),
exchange_type: easyamqp::ExchangeType::Topic,
passive: false,
durable: true,
auto_delete: false,
no_wait: false,
internal: false,
})
.unwrap();
chan.declare_exchange(easyamqp::ExchangeConfig {
exchange: "github-events".to_owned(),
exchange_type: easyamqp::ExchangeType::Topic,
passive: false,
durable: true,
auto_delete: false,
no_wait: false,
internal: false,
})?;

channel
.declare_exchange(easyamqp::ExchangeConfig {
exchange: "build-jobs".to_owned(),
exchange_type: easyamqp::ExchangeType::Fanout,
passive: false,
durable: true,
auto_delete: false,
no_wait: false,
internal: false,
})
.unwrap();
chan.declare_exchange(easyamqp::ExchangeConfig {
exchange: "build-jobs".to_owned(),
exchange_type: easyamqp::ExchangeType::Fanout,
passive: false,
durable: true,
auto_delete: false,
no_wait: false,
internal: false,
})?;

channel
.declare_queue(easyamqp::QueueConfig {
queue: "build-inputs".to_owned(),
passive: false,
durable: true,
exclusive: false,
auto_delete: false,
no_wait: false,
})
.unwrap();
let queue_name = "build-inputs";
chan.declare_queue(easyamqp::QueueConfig {
queue: queue_name.to_owned(),
passive: false,
durable: true,
exclusive: false,
auto_delete: false,
no_wait: false,
})?;

channel
.bind_queue(easyamqp::BindQueueConfig {
chan.bind_queue(easyamqp::BindQueueConfig {
queue: "build-inputs".to_owned(),
exchange: "github-events".to_owned(),
routing_key: Some("issue_comment.*".to_owned()),
no_wait: false,
})?;

let handle = chan.consume(
tasks::githubcommentfilter::GitHubCommentWorker::new(cfg.acl(), cfg.github()),
easyamqp::ConsumeConfig {
queue: "build-inputs".to_owned(),
exchange: "github-events".to_owned(),
routing_key: Some("issue_comment.*".to_owned()),
consumer_tag: format!("{}-github-comment-filter", cfg.whoami()),
no_local: false,
no_ack: false,
no_wait: false,
})
.unwrap();

channel.basic_prefetch(1).unwrap();
let mut channel = channel
.consume(
worker::new(tasks::githubcommentfilter::GitHubCommentWorker::new(
cfg.acl(),
cfg.github(),
)),
easyamqp::ConsumeConfig {
queue: "build-inputs".to_owned(),
consumer_tag: format!("{}-github-comment-filter", cfg.whoami()),
no_local: false,
no_ack: false,
no_wait: false,
exclusive: false,
},
)
.unwrap();

channel.start_consuming();
exclusive: false,
},
)?;

info!("Finished consuming?");
info!("Fetching jobs from {}", &queue_name);
task::block_on(handle);

channel.close(200, "Bye").unwrap();
info!("Closed the channel");
session.close(200, "Good Bye");
drop(conn); // Close connection.
info!("Closed the session... EOF");
Ok(())
}
7 changes: 6 additions & 1 deletion ofborg/src/tasks/githubcommentfilter.rs
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ use crate::ghevent;
use crate::message::{buildjob, evaluationjob, Pr, Repo};
use crate::worker;

use tracing::{error, info};
use tracing::{debug_span, error, info};
use uuid::Uuid;

pub struct GitHubCommentWorker {
@@ -34,7 +34,12 @@ impl worker::SimpleWorker for GitHubCommentWorker {
}
}

// FIXME: remove with rust/cargo update
#[allow(clippy::cognitive_complexity)]
fn consumer(&mut self, job: &ghevent::IssueComment) -> worker::Actions {
let span = debug_span!("job", pr = ?job.issue.number);
let _enter = span.enter();

if job.action == ghevent::IssueCommentAction::Deleted {
return vec![worker::Action::Ack];
}