12个版本 (破坏性)

0.9.1 2021年3月27日
0.8.0 2020年9月26日
0.7.0 2020年5月16日
0.6.0 2019年12月19日
0.4.0 2017年12月21日

#26 in HTTP客户端

Download history 28524/week @ 2024-03-14 27899/week @ 2024-03-21 29264/week @ 2024-03-28 32071/week @ 2024-04-04 30502/week @ 2024-04-11 31738/week @ 2024-04-18 29909/week @ 2024-04-25 28617/week @ 2024-05-02 28864/week @ 2024-05-09 25823/week @ 2024-05-16 25194/week @ 2024-05-23 30401/week @ 2024-05-30 31068/week @ 2024-06-06 31841/week @ 2024-06-13 29830/week @ 2024-06-20 24547/week @ 2024-06-27

123,117 每月下载量
用于 151 个crates (25直接)

MIT 许可证

35KB
656

hyper-proxy

Travis Build Status MIT licensed

基于hyper的应用的代理连接器。

文档

示例

use hyper::{Client, Request, Uri};
use hyper::client::HttpConnector;
use futures::{TryFutureExt, TryStreamExt};
use hyper_proxy::{Proxy, ProxyConnector, Intercept};
use headers::Authorization;
use std::error::Error;

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    let proxy = {
        let proxy_uri = "http://my-proxy:8080".parse().unwrap();
        let mut proxy = Proxy::new(Intercept::All, proxy_uri);
        proxy.set_authorization(Authorization::basic("John Doe", "Agent1234"));
        let connector = HttpConnector::new();
        let proxy_connector = ProxyConnector::from_proxy(connector, proxy).unwrap();
        proxy_connector
    };

    // Connecting to http will trigger regular GETs and POSTs.
    // We need to manually append the relevant headers to the request
    let uri: Uri = "http://my-remote-website.com".parse().unwrap();
    let mut req = Request::get(uri.clone()).body(hyper::Body::empty()).unwrap();

    if let Some(headers) = proxy.http_headers(&uri) {
        req.headers_mut().extend(headers.clone().into_iter());
    }

    let client = Client::builder().build(proxy);
    let fut_http = client.request(req)
        .and_then(|res| res.into_body().map_ok(|x|x.to_vec()).try_concat())
        .map_ok(move |body| ::std::str::from_utf8(&body).unwrap().to_string());

    // Connecting to an https uri is straightforward (uses 'CONNECT' method underneath)
    let uri = "https://my-remote-websitei-secured.com".parse().unwrap();
    let fut_https = client.get(uri)
        .and_then(|res| res.into_body().map_ok(|x|x.to_vec()).try_concat())
        .map_ok(move |body| ::std::str::from_utf8(&body).unwrap().to_string());

    let (http_res, https_res) = futures::future::join(fut_http, fut_https).await;
    let (_, _) = (http_res?, https_res?);

    Ok(())
}

特性

hyper-proxy公开了三个主要Cargo特性,用于配置它连接到代理时使用的TLS实现。它也可以在不支持TLS的情况下配置,通过完全不编译默认特性来实现。支持的配置列表为

  1. 不支持TLS (default-features = false)
  2. 通过native-tls支持TLS,链接到操作系统的本地TLS实现(默认)
  3. 通过rustls支持TLS (default-features = false, features = ["rustls"])
  4. 通过rustls支持TLS,使用静态编译的CA证书集绕过操作系统的默认存储(default-features = false, features = ["rustls-webpki"])

致谢

代码的大部分来自reqwest。核心部分已经被提取并稍作增强。

主要更改包括

  • 支持身份验证
  • 添加非安全隧道
  • 添加连接到代理时添加额外头部的可能性

依赖项

~5–19MB
~262K SLoC