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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
#![allow(dead_code)] #[macro_use] extern crate serde_derive; extern crate futures; extern crate http; extern crate hyper; extern crate hyper_tls; extern crate serde; extern crate serde_json; #[cfg(feature = "runtime")] extern crate tokio_core; extern crate url; #[macro_use] mod macros; mod call; mod conference; pub mod error; mod message; mod recording; pub mod twiml; pub use crate::{call::*, conference::*, error::*, message::*, recording::*}; pub use futures::{future, Future, Stream}; pub use hyper::{client::HttpConnector, Body, Client, Method, Request}; pub use hyper_tls::HttpsConnector; pub use std::{ borrow::Borrow, cell::{self, RefCell}, error::Error, fmt, io, rc::Rc, }; #[cfg(feature = "runtime")] pub use tokio_core::reactor::Core; pub use typed_headers::{Authorization, Credentials}; pub use url::{form_urlencoded, Url}; #[derive(Debug)] pub struct Twilio { sid: String, auth: Authorization, client: Client<HttpsConnector<HttpConnector>, hyper::Body>, #[cfg(feature = "runtime")] core: Rc<RefCell<Core>>, } #[cfg(not(feature = "runtime"))] pub type TwilioResp<T> = Box<dyn Future<Item = (hyper::StatusCode, Option<T>), Error = TwilioErr>>; #[cfg(feature = "runtime")] pub type TwilioResp<T> = Result<(hyper::StatusCode, Option<T>), TwilioErr>; impl Twilio { pub fn new<S, P>(sid: S, token: P) -> TwilioResult<Twilio> where S: Into<String>, P: AsRef<str>, { let sid = sid.into(); let client = Client::builder().build::<_, hyper::Body>(HttpsConnector::new(4)?); #[cfg(feature = "runtime")] let core = Core::new()?; Ok(Twilio { auth: Authorization(Credentials::basic(&sid, token.as_ref())?), sid, client, #[cfg(feature = "runtime")] core: Rc::new(RefCell::new(core)), }) } pub fn send_msg<'a>(&'a self, from: &'a str, to: &'a str, body: &'a str) -> SendMsg<'a> { SendMsg { msg: Msg::new(from, to, body), client: &self, } } pub fn msg<'a>(&'a self, message_sid: &'a str) -> GetMessage<'a> { GetMessage { message_sid, client: &self, } } pub fn msgs(&self) -> Messages<'_> { Messages { client: &self } } pub fn call<'a>(&'a self, from: &'a str, to: &'a str, url: &'a str) -> SendCall<'a> { SendCall { call: Call::new(from, to, url), client: &self, } } pub fn conference<'a>(&'a self, sid: &'a str) -> GetConference<'a> { GetConference { conference: Conference::new(sid), client: &self, } } pub fn conferences(&self) -> Conferences<'_> { Conferences { client: &self } } pub fn recording<'a>(&'a self, sid: &'a str) -> GetRecording<'a> { GetRecording { recording: Recording::new(sid), client: &self, } } pub fn recordings(&self) -> Recordings<'_> { Recordings { client: &self } } } pub trait Execute { fn request<U>( &self, method: Method, url: U, body: Option<String>, ) -> Result<Request<Body>, TwilioErr> where U: AsRef<str>; fn execute<U, D>(self, method: Method, url: U, body: Option<String>) -> TwilioResp<D> where U: AsRef<str>, D: for<'de> serde::Deserialize<'de>; } pub trait TwilioRequest: Execute { type Resp: for<'de> serde::Deserialize<'de>; fn run(self) -> TwilioResp<Self::Resp>; } pub fn encode_pairs<I, K, V>(pairs: I) -> Option<String> where K: AsRef<str>, V: AsRef<str>, I: IntoIterator, I::Item: Borrow<(K, V)>, { let mut partial = form_urlencoded::Serializer::new(String::new()); for pair in pairs { let &(ref k, ref v) = pair.borrow(); partial.append_pair(k.as_ref(), v.as_ref()); } let encoded = partial.finish(); Some(encoded) } pub fn url_encode<I, K, V>(pairs: I) -> String where K: AsRef<str>, V: AsRef<str>, I: IntoIterator, I::Item: Borrow<(K, V)>, { pairs .into_iter() .map(|pair| { let &(ref k, ref v) = pair.borrow(); format!("{}={}", k.as_ref(), v.as_ref()) }) .fold(String::new(), |mut acc, item| { acc.push_str(&item); acc.push_str("&"); acc }) }