ashpd/desktop/proxy_resolver.rs
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
//! **Note** This portal doesn't work for sandboxed applications.
//! # Examples
//!
//! ```rust,no_run
//! use ashpd::desktop::proxy_resolver::ProxyResolver;
//!
//! async fn run() -> ashpd::Result<()> {
//! let proxy = ProxyResolver::new().await?;
//! let url = url::Url::parse("www.google.com").unwrap();
//!
//! println!("{:#?}", proxy.lookup(&url).await?);
//!
//! Ok(())
//! }
//! ```
use crate::{proxy::Proxy, Error};
/// The interface provides network proxy information to sandboxed applications.
///
/// It is not a portal in the strict sense, since it does not involve user
/// interaction. Applications are expected to use this interface indirectly,
/// via a library API such as the GLib [`gio::ProxyResolver`](https://gtk-rs.org/gtk-rs-core/stable/latest/docs/gio/struct.ProxyResolver.html) interface.
///
/// Wrapper of the DBus interface: [`org.freedesktop.portal.ProxyResolver`](https://flatpak.github.io/xdg-desktop-portal/docs/doc-org.freedesktop.portal.ProxyResolver.html).
#[derive(Debug)]
#[doc(alias = "org.freedesktop.portal.ProxyResolver")]
pub struct ProxyResolver<'a>(Proxy<'a>);
impl<'a> ProxyResolver<'a> {
/// Create a new instance of [`ProxyResolver`].
pub async fn new() -> Result<ProxyResolver<'a>, Error> {
let proxy = Proxy::new_desktop("org.freedesktop.portal.ProxyResolver").await?;
Ok(Self(proxy))
}
/// Looks up which proxy to use to connect to `uri`.
///
/// # Returns
///
/// A list of proxy uris of the form `protocol://[user[:password]host:port`
/// The protocol can be `http`, `rtsp`, `socks` or another proxying
/// protocol. `direct://` is used when no proxy is needed.
///
/// # Specifications
///
/// See also [`Lookup`](https://flatpak.github.io/xdg-desktop-portal/docs/doc-org.freedesktop.portal.ProxyResolver.html#org-freedesktop-portal-proxyresolver-lookup).
#[doc(alias = "Lookup")]
pub async fn lookup(&self, uri: &url::Url) -> Result<Vec<url::Url>, Error> {
self.0.call("Lookup", &(uri)).await
}
}
impl<'a> std::ops::Deref for ProxyResolver<'a> {
type Target = zbus::Proxy<'a>;
fn deref(&self) -> &Self::Target {
&self.0
}
}