2019-07-28 16:10:04 +02:00
|
|
|
use crate::{
|
|
|
|
service::Service,
|
|
|
|
statics::{self, CF_ZONE_IDENT},
|
|
|
|
};
|
2019-07-28 14:45:39 +02:00
|
|
|
use actix_web::{http::header, Error};
|
|
|
|
use awc::Client;
|
|
|
|
use futures::Future;
|
|
|
|
|
|
|
|
pub(crate) struct Cloudflare;
|
|
|
|
|
|
|
|
impl Cloudflare {
|
|
|
|
fn identifier() -> &'static str {
|
|
|
|
&CF_ZONE_IDENT
|
|
|
|
}
|
|
|
|
|
2019-07-28 16:10:04 +02:00
|
|
|
pub(crate) fn purge_cache<T: Service>(
|
2019-07-28 14:45:39 +02:00
|
|
|
client: &Client,
|
|
|
|
file: &str,
|
|
|
|
) -> impl Future<Item = bool, Error = Error> {
|
|
|
|
client
|
|
|
|
.post(format!(
|
|
|
|
"https://api.cloudflare.com/client/v4/zones/{}/purge_cache",
|
|
|
|
Self::identifier()
|
|
|
|
))
|
|
|
|
.header(header::USER_AGENT, statics::USER_AGENT.as_str())
|
|
|
|
.header("X-Auth-Email", Self::auth_email())
|
|
|
|
.header("X-Auth-Key", Self::auth_key())
|
|
|
|
.content_type("application/json")
|
2019-07-28 16:10:04 +02:00
|
|
|
.send_json(&CfPurgeRequest::singleton::<T>(file))
|
2019-07-28 14:45:39 +02:00
|
|
|
.from_err()
|
|
|
|
.and_then(|mut response| {
|
|
|
|
response
|
|
|
|
.json::<CfPurgeResponse>()
|
|
|
|
.map(|resp| resp.success)
|
|
|
|
.from_err()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn auth_key() -> &'static str {
|
|
|
|
&statics::CF_AUTH_KEY
|
|
|
|
}
|
|
|
|
|
|
|
|
fn auth_email() -> &'static str {
|
|
|
|
&statics::CF_AUTH_USER
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize)]
|
|
|
|
struct CfPurgeRequest {
|
|
|
|
files: Vec<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CfPurgeRequest {
|
2019-07-28 16:10:04 +02:00
|
|
|
fn singleton<T: Service>(file: &str) -> Self {
|
|
|
|
let url = format!(
|
|
|
|
"https://{}/{}/{}",
|
|
|
|
statics::HOSTNAME.as_str(),
|
|
|
|
T::path(),
|
|
|
|
file
|
|
|
|
);
|
2019-07-28 16:51:11 +02:00
|
|
|
eprintln!("{}", url);
|
2019-07-28 14:45:39 +02:00
|
|
|
Self { files: vec![url] }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
struct CfPurgeResponse {
|
|
|
|
success: bool,
|
|
|
|
}
|