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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
use serde::{Deserialize, Serialize}; use crate::token::*; use futures_util::future::BoxFuture; use lazy_static::*; use slack_morphism_models::{SlackClientId, SlackClientSecret}; use url::Url; #[derive(Debug)] pub struct SlackClient<SCHC> where SCHC: SlackClientHttpConnector + Send, { pub http_api: SlackClientHttpApi<SCHC>, } #[derive(Debug)] pub struct SlackClientHttpApi<SCHC> where SCHC: SlackClientHttpConnector + Send, { pub connector: SCHC, } #[derive(Debug)] pub struct SlackClientSession<'a, SCHC> where SCHC: SlackClientHttpConnector + Send, { pub http_api: SlackClientHttpSessionApi<'a, SCHC>, client: &'a SlackClient<SCHC>, token: &'a SlackApiToken, } #[derive(Debug)] pub struct SlackClientHttpSessionApi<'a, SCHC> where SCHC: SlackClientHttpConnector + Send, { client: &'a SlackClient<SCHC>, token: &'a SlackApiToken, } pub trait SlackClientHttpConnector { fn http_get_uri<'a, RS>( &'a self, full_uri: Url, token: Option<&'a SlackApiToken>, ) -> BoxFuture<'a, ClientResult<RS>> where RS: for<'de> serde::de::Deserialize<'de> + Send + 'a + 'a + Send; fn http_get_with_client_secret<'a, RS>( &'a self, full_uri: Url, client_id: &'a SlackClientId, client_secret: &'a SlackClientSecret, ) -> BoxFuture<'a, ClientResult<RS>> where RS: for<'de> serde::de::Deserialize<'de> + Send + 'a + 'a + Send; fn http_get_token<'a, 'p, RS, PT, TS>( &'a self, method_relative_uri: &str, params: &'p PT, token: Option<&'a SlackApiToken>, ) -> BoxFuture<'a, ClientResult<RS>> where RS: for<'de> serde::de::Deserialize<'de> + Send + 'a, PT: std::iter::IntoIterator<Item = (&'p str, Option<&'p TS>)> + Clone, TS: std::string::ToString + 'p + 'a + Send, { let full_uri = SlackClientHttpApiUri::create_url_with_params( &SlackClientHttpApiUri::create_method_uri_path(&method_relative_uri), params, ); self.http_get_uri(full_uri, token) } fn http_get<'a, 'p, RS, PT, TS>( &'a self, method_relative_uri: &str, params: &'p PT, ) -> BoxFuture<'a, ClientResult<RS>> where RS: for<'de> serde::de::Deserialize<'de> + Send + 'a, PT: std::iter::IntoIterator<Item = (&'p str, Option<&'p TS>)> + Clone, TS: std::string::ToString + 'p + 'a + Send, { self.http_get_token(&method_relative_uri, params, None) } fn http_post_uri<'a, RQ, RS>( &'a self, full_uri: Url, request_body: &'a RQ, token: Option<&'a SlackApiToken>, ) -> BoxFuture<'a, ClientResult<RS>> where RQ: serde::ser::Serialize + Send + Sync, RS: for<'de> serde::de::Deserialize<'de> + Send + 'a + Send + 'a; fn http_post_token<'a, RQ, RS>( &'a self, method_relative_uri: &str, request: &'a RQ, token: Option<&'a SlackApiToken>, ) -> BoxFuture<'a, ClientResult<RS>> where RQ: serde::ser::Serialize + Send + Sync, RS: for<'de> serde::de::Deserialize<'de> + Send + 'a, { let full_uri = SlackClientHttpApiUri::create_url( &SlackClientHttpApiUri::create_method_uri_path(&method_relative_uri), ); self.http_post_uri(full_uri, request, token) } fn http_post<'a, RQ, RS>( &'a self, method_relative_uri: &str, request: &'a RQ, ) -> BoxFuture<'a, ClientResult<RS>> where RQ: serde::ser::Serialize + Send + Sync, RS: for<'de> serde::de::Deserialize<'de> + Send + 'a, { self.http_post_token(method_relative_uri, request, None) } } pub type ClientResult<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>; #[derive(Debug, PartialEq, Clone, Serialize, Deserialize)] pub struct SlackEnvelopeMessage { pub ok: bool, pub error: Option<String>, pub warnings: Option<Vec<String>>, } lazy_static! { pub static ref SLACK_HTTP_EMPTY_GET_PARAMS: Vec<(&'static str, Option<&'static String>)> = vec![]; } impl<SCHC> SlackClientHttpApi<SCHC> where SCHC: SlackClientHttpConnector + Send + Sync, { fn new(http_connector: SCHC) -> Self { Self { connector: http_connector, } } } pub struct SlackClientHttpApiUri; impl SlackClientHttpApiUri { const SLACK_API_URI_STR: &'static str = "https://slack.com/api"; pub fn create_method_uri_path(method_relative_uri: &str) -> String { format!("{}/{}", Self::SLACK_API_URI_STR, method_relative_uri) } pub(crate) fn create_url(url_str: &str) -> Url { url_str.parse().unwrap() } pub fn create_url_with_params<'p, PT, TS>(url_str: &str, params: &'p PT) -> Url where PT: std::iter::IntoIterator<Item = (&'p str, Option<&'p TS>)> + Clone, TS: std::string::ToString + 'p, { let url_query_params: Vec<(String, String)> = params .clone() .into_iter() .map(|(k, vo)| vo.map(|v| (k.to_string(), v.to_string()))) .flatten() .collect(); Url::parse_with_params(url_str, url_query_params) .unwrap() .as_str() .parse() .unwrap() } } impl<SCHC> SlackClient<SCHC> where SCHC: SlackClientHttpConnector + Send + Sync, { pub fn new(http_connector: SCHC) -> Self { Self { http_api: SlackClientHttpApi::new(http_connector), } } pub fn open_session<'a>(&'a self, token: &'a SlackApiToken) -> SlackClientSession<'a, SCHC> { let http_session_api = SlackClientHttpSessionApi { client: self, token, }; SlackClientSession { client: self, token, http_api: http_session_api, } } } impl<'a, SCHC> SlackClientHttpSessionApi<'a, SCHC> where SCHC: SlackClientHttpConnector + Send, { pub async fn http_get_uri<RS, PT, TS>(&self, full_uri: Url) -> ClientResult<RS> where RS: for<'de> serde::de::Deserialize<'de> + Send, { self.client .http_api .connector .http_get_uri(full_uri, Some(&self.token)) .await } pub async fn http_get<'p, RS, PT, TS>( &self, method_relative_uri: &str, params: &'p PT, ) -> ClientResult<RS> where RS: for<'de> serde::de::Deserialize<'de> + Send, PT: std::iter::IntoIterator<Item = (&'p str, Option<&'p TS>)> + Clone, TS: std::string::ToString + 'p + Send, { self.client .http_api .connector .http_get_token(&method_relative_uri, params, Some(&self.token)) .await } pub async fn http_post<RQ, RS>( &self, method_relative_uri: &str, request: &RQ, ) -> ClientResult<RS> where RQ: serde::ser::Serialize + Send + Sync, RS: for<'de> serde::de::Deserialize<'de> + Send, { self.client .http_api .connector .http_post_token(&method_relative_uri, &request, Some(&self.token)) .await } pub async fn http_post_uri<RQ, RS>(&self, full_uri: Url, request: &RQ) -> ClientResult<RS> where RQ: serde::ser::Serialize + Send + Sync, RS: for<'de> serde::de::Deserialize<'de> + Send, { self.client .http_api .connector .http_post_uri(full_uri, &request, Some(&self.token)) .await } }