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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
use crate::places::place_autocomplete::request::Request;
use percent_encoding::{utf8_percent_encode, NON_ALPHANUMERIC};
// -----------------------------------------------------------------------------
impl<'a> Request<'a> {
/// Builds the query string for the Google Maps Places API _Place
/// Autocomplete_ query based on the input provided by the client.
///
/// ## Arguments:
///
/// This method accepts no arguments.
pub fn build(&mut self) -> &'a mut Request {
// This section builds the "required parameters" portion of the query
// string:
let mut query = format!(
"key={}&input={}",
self.client.key,
utf8_percent_encode(&self.input, NON_ALPHANUMERIC),
);
// This section builds the "optional parameters" portion of the query
// string:
// Components key/value pair:
if !self.components.is_empty() {
query.push_str("&components=");
let components = self.components
.iter()
.map(|component| format!("country:{}", String::from(component).to_lowercase()))
.collect::<Vec<String>>()
.join("|");
query.push_str(&utf8_percent_encode(&components, NON_ALPHANUMERIC).to_string())
} // if
// Language key/value pair:
if let Some(language) = &self.language {
query.push_str("&language=");
query.push_str(&String::from(language))
}
// Location key/value pair:
if let Some(location) = &self.location {
query.push_str("&location=");
query.push_str(&String::from(location))
}
// Offset key/value pair:
if let Some(offset) = &self.offset {
query.push_str("&offset=");
query.push_str(&offset.to_string())
}
// Origin key/value pair:
if let Some(origin) = &self.origin {
query.push_str("&origin=");
query.push_str(&String::from(origin))
}
// Radius key/value pair:
if let Some(radius) = &self.radius {
query.push_str("&radius=");
query.push_str(&radius.to_string())
}
// Region key/value pair:
if let Some(region) = &self.region {
query.push_str("®ion=");
query.push_str(&String::from(region))
}
// Session Token key/value pair:
if let Some(sessiontoken) = &self.sessiontoken {
query.push_str("&sessiontoken=");
query.push_str(&utf8_percent_encode(sessiontoken, NON_ALPHANUMERIC).to_string())
}
// Strict Bounds key/value pair:
if let Some(strictbounds) = &self.strictbounds {
query.push_str("&strictbounds=");
query.push_str(&strictbounds.to_string())
}
// Types key/value pair:
if !self.types.is_empty() {
query.push_str("&types=");
let types = self.types
.iter()
.map(String::from)
.collect::<Vec<String>>()
.join("|");
query.push_str(&types);
}
// Set query string in Request struct.
self.query = Some(query);
// Return modified Request struct to caller.
self
} // fn
} // impl