1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//! # Rifling
//!
//! Rifling is a framework to create Github Webhook listener, influenced by [afterparty](https://crates.io/crates/afterparty).
//!
//! Current version of rifling supports [hyper 0.12](https://crates.io/crates/hyper) only.
//!
//! It supports both `application/json` and `application/x-www-form-urlencoded` mode.
//!
//! Minimal Example:
//!
//! ```no_run
//! extern crate hyper;
//! extern crate rifling;
//!
//! use rifling::{Constructor, Delivery, Hook};
//! use hyper::{Server, Error};
//! use hyper::rt::{run, Future};
//!
//! fn main() {
//!     let mut cons = Constructor::new();
//!     let hook = Hook::new("*", Some(String::from("secret")), |delivery: &Delivery| println!("Received delivery: {:?}", delivery));
//!     cons.register(hook);
//!     let addr = "0.0.0.0:4567".parse().unwrap();
//!     let server = Server::bind(&addr).serve(cons).map_err(|e: Error| println!("Error: {:?}", e));
//!     run(server);
//! }
//! ```
//!
//! TODO in future versions:
//!  - Error handling.
//!  - Support other web frameworks (such as Tide).

#[cfg(any(feature = "crypto-use-ring", feature = "crypto-use-rustcrypto"))]
extern crate hex;
#[cfg(feature = "logging")]
#[macro_use]
extern crate log;
#[cfg(feature = "hyper-support")]
extern crate futures;
#[cfg(feature = "crypto-use-rustcrypto")]
extern crate hmac;
#[cfg(feature = "hyper-support")]
extern crate hyper;
#[cfg(feature = "crypto-use-ring")]
extern crate ring;
#[cfg(feature = "parse")]
extern crate serde_json;
#[cfg(feature = "crypto-use-rustcrypto")]
extern crate sha1;
#[cfg(feature = "content-type-urlencoded")]
extern crate url;

#[doc(hidden)]
#[macro_use]
mod macros;
pub mod handler;
pub mod hook;

pub use handler::Constructor;
pub use handler::ContentType;
pub use handler::Delivery;
pub use handler::DeliveryType;
pub use handler::Handler;
pub use hook::Hook;
pub use hook::HookFunc;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}