use crate::Date;
use crate::Message;
use glib::object::IsA;
use glib::translate::*;
glib::wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct HSTSPolicy(Boxed<ffi::SoupHSTSPolicy>);
match fn {
copy => |ptr| ffi::soup_hsts_policy_copy(mut_override(ptr)),
free => |ptr| ffi::soup_hsts_policy_free(ptr),
type_ => || ffi::soup_hsts_policy_get_type(),
}
}
impl HSTSPolicy {
#[doc(alias = "soup_hsts_policy_new")]
pub fn new(domain: &str, max_age: libc::c_ulong, include_subdomains: bool) -> HSTSPolicy {
crate::assert_initialized_main_thread!();
unsafe {
from_glib_full(ffi::soup_hsts_policy_new(domain.to_glib_none().0, max_age, include_subdomains.into_glib()))
}
}
#[doc(alias = "soup_hsts_policy_new_from_response")]
#[doc(alias = "new_from_response")]
pub fn from_response(msg: &impl IsA<Message>) -> Option<HSTSPolicy> {
crate::skip_assert_initialized!();
unsafe {
from_glib_full(ffi::soup_hsts_policy_new_from_response(msg.as_ref().to_glib_none().0))
}
}
#[doc(alias = "soup_hsts_policy_new_full")]
pub fn new_full(domain: &str, max_age: libc::c_ulong, expires: &mut Date, include_subdomains: bool) -> HSTSPolicy {
crate::assert_initialized_main_thread!();
unsafe {
from_glib_full(ffi::soup_hsts_policy_new_full(domain.to_glib_none().0, max_age, expires.to_glib_none_mut().0, include_subdomains.into_glib()))
}
}
#[doc(alias = "soup_hsts_policy_new_session_policy")]
pub fn new_session_policy(domain: &str, include_subdomains: bool) -> HSTSPolicy {
crate::assert_initialized_main_thread!();
unsafe {
from_glib_full(ffi::soup_hsts_policy_new_session_policy(domain.to_glib_none().0, include_subdomains.into_glib()))
}
}
#[doc(alias = "soup_hsts_policy_get_domain")]
#[doc(alias = "get_domain")]
pub fn domain(&mut self) -> Option<glib::GString> {
unsafe {
from_glib_none(ffi::soup_hsts_policy_get_domain(self.to_glib_none_mut().0))
}
}
#[doc(alias = "soup_hsts_policy_includes_subdomains")]
pub fn includes_subdomains(&mut self) -> bool {
unsafe {
from_glib(ffi::soup_hsts_policy_includes_subdomains(self.to_glib_none_mut().0))
}
}
#[doc(alias = "soup_hsts_policy_is_expired")]
pub fn is_expired(&mut self) -> bool {
unsafe {
from_glib(ffi::soup_hsts_policy_is_expired(self.to_glib_none_mut().0))
}
}
#[doc(alias = "soup_hsts_policy_is_session_policy")]
pub fn is_session_policy(&mut self) -> bool {
unsafe {
from_glib(ffi::soup_hsts_policy_is_session_policy(self.to_glib_none_mut().0))
}
}
}