#google #gsb #safe-browsing

gsbrs

Provides a client for the Google Safe Browsing Lookup API

9 releases (breaking)

Uses old Rust 2015

0.7.1 Apr 6, 2018
0.7.0 Feb 16, 2016
0.6.0 Jan 17, 2016
0.5.0 Nov 3, 2015

#832 in #google

33 downloads per month

MIT/Apache

21KB
299 lines

License Build Status Coverage Status

gsblookup-rs

Rust interface to Google Safe Browsing Lookup API

Documentation

Usage

Available on crates.io

Add this to your Cargo.toml

[dependencies]
gsbrs = "0.6.0"

Example

Looking up a single URL.

let key: String = "AIzaSyCOZpyGR3gMKqrb5A9lGSsVKtr7".into();

let gsb = GSBClient::new(key);
let statuses = gsb.lookup("https://google.com").unwrap();

if statuses.is_empty() {
    println!("Ok");
} else {
    for status in statuses {
        match status {
            Status::Phishing => println!("Phishing"),
            Status::Malware => println!("Malware"),
            Status::Unwanted => println!("Unwanted"),
            // lookup only ever returns the above 3 statuses
            // lookup_all can return Status::Ok as well
            _ => unreachable!(),
        }
    }
}

See examples/ for more.

This library does not use any 'unsafe' blocks.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~5.5MB
~134K SLoC