mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-01-21 18:54:07 +01:00
4172 lines
176 KiB
Rust
4172 lines
176 KiB
Rust
// DO NOT EDIT !
|
||
// This file was generated automatically from 'src/mako/api/lib.rs.in.mako'
|
||
// DO NOT EDIT !
|
||
|
||
extern crate hyper;
|
||
extern crate serde;
|
||
extern crate serde_json;
|
||
extern crate yup_oauth2 as oauth2;
|
||
extern crate mime;
|
||
extern crate url;
|
||
|
||
mod cmn;
|
||
|
||
use std::collections::HashMap;
|
||
use std::cell::RefCell;
|
||
use std::borrow::BorrowMut;
|
||
use std::default::Default;
|
||
use std::collections::BTreeMap;
|
||
use serde_json as json;
|
||
use std::io;
|
||
use std::fs;
|
||
use std::thread::sleep;
|
||
use std::time::Duration;
|
||
|
||
pub use cmn::{MultiPartReader, ToParts, MethodInfo, Result, Error, CallBuilder, Hub, ReadSeek, Part,
|
||
ResponseResult, RequestValue, NestedType, Delegate, DefaultDelegate, MethodsBuilder,
|
||
Resource, ErrorResponse, remove_json_null_values};
|
||
|
||
|
||
// ##############
|
||
// UTILITIES ###
|
||
// ############
|
||
|
||
/// Identifies the an OAuth2 authorization scope.
|
||
/// A scope is needed when requesting an
|
||
/// [authorization token](https://developers.google.com/youtube/v3/guides/authentication).
|
||
#[derive(PartialEq, Eq, Hash)]
|
||
pub enum Scope {
|
||
/// View Search Console data for your verified sites
|
||
Readonly,
|
||
|
||
/// View and manage Search Console data for your verified sites
|
||
Full,
|
||
}
|
||
|
||
impl AsRef<str> for Scope {
|
||
fn as_ref(&self) -> &str {
|
||
match *self {
|
||
Scope::Readonly => "https://www.googleapis.com/auth/webmasters.readonly",
|
||
Scope::Full => "https://www.googleapis.com/auth/webmasters",
|
||
}
|
||
}
|
||
}
|
||
|
||
impl Default for Scope {
|
||
fn default() -> Scope {
|
||
Scope::Readonly
|
||
}
|
||
}
|
||
|
||
|
||
|
||
// ########
|
||
// HUB ###
|
||
// ######
|
||
|
||
/// Central instance to access all Webmasters related resource activities
|
||
///
|
||
/// # Examples
|
||
///
|
||
/// Instantiate a new hub
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// extern crate hyper;
|
||
/// extern crate yup_oauth2 as oauth2;
|
||
/// extern crate google_webmasters3 as webmasters3;
|
||
/// use webmasters3::{Result, Error};
|
||
/// # #[test] fn egal() {
|
||
/// use std::default::Default;
|
||
/// use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// use webmasters3::Webmasters;
|
||
///
|
||
/// // Get an ApplicationSecret instance by some means. It contains the `client_id` and
|
||
/// // `client_secret`, among other things.
|
||
/// let secret: ApplicationSecret = Default::default();
|
||
/// // Instantiate the authenticator. It will choose a suitable authentication flow for you,
|
||
/// // unless you replace `None` with the desired Flow.
|
||
/// // Provide your own `AuthenticatorDelegate` to adjust the way it operates and get feedback about
|
||
/// // what's going on. You probably want to bring in your own `TokenStorage` to persist tokens and
|
||
/// // retrieve them from storage.
|
||
/// let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// hyper::Client::new(),
|
||
/// <MemoryStorage as Default>::default(), None);
|
||
/// let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // You can configure optional parameters by calling the respective setters at will, and
|
||
/// // execute the final call using `doit()`.
|
||
/// // Values shown here are possibly random and not representative !
|
||
/// let result = hub.sitemaps().get("siteUrl", "feedpath")
|
||
/// .doit();
|
||
///
|
||
/// match result {
|
||
/// Err(e) => match e {
|
||
/// // The Error enum provides details about what exactly happened.
|
||
/// // You can also just use its `Debug`, `Display` or `Error` traits
|
||
/// Error::HttpError(_)
|
||
/// |Error::MissingAPIKey
|
||
/// |Error::MissingToken(_)
|
||
/// |Error::Cancelled
|
||
/// |Error::UploadSizeLimitExceeded(_, _)
|
||
/// |Error::Failure(_)
|
||
/// |Error::BadRequest(_)
|
||
/// |Error::FieldClash(_)
|
||
/// |Error::JsonDecodeError(_, _) => println!("{}", e),
|
||
/// },
|
||
/// Ok(res) => println!("Success: {:?}", res),
|
||
/// }
|
||
/// # }
|
||
/// ```
|
||
pub struct Webmasters<C, A> {
|
||
client: RefCell<C>,
|
||
auth: RefCell<A>,
|
||
_user_agent: String,
|
||
}
|
||
|
||
impl<'a, C, A> Hub for Webmasters<C, A> {}
|
||
|
||
impl<'a, C, A> Webmasters<C, A>
|
||
where C: BorrowMut<hyper::Client>, A: oauth2::GetToken {
|
||
|
||
pub fn new(client: C, authenticator: A) -> Webmasters<C, A> {
|
||
Webmasters {
|
||
client: RefCell::new(client),
|
||
auth: RefCell::new(authenticator),
|
||
_user_agent: "google-api-rust-client/0.1.12".to_string(),
|
||
}
|
||
}
|
||
|
||
pub fn searchanalytics(&'a self) -> SearchanalyticMethods<'a, C, A> {
|
||
SearchanalyticMethods { hub: &self }
|
||
}
|
||
pub fn sitemaps(&'a self) -> SitemapMethods<'a, C, A> {
|
||
SitemapMethods { hub: &self }
|
||
}
|
||
pub fn sites(&'a self) -> SiteMethods<'a, C, A> {
|
||
SiteMethods { hub: &self }
|
||
}
|
||
pub fn urlcrawlerrorscounts(&'a self) -> UrlcrawlerrorscountMethods<'a, C, A> {
|
||
UrlcrawlerrorscountMethods { hub: &self }
|
||
}
|
||
pub fn urlcrawlerrorssamples(&'a self) -> UrlcrawlerrorssampleMethods<'a, C, A> {
|
||
UrlcrawlerrorssampleMethods { hub: &self }
|
||
}
|
||
|
||
/// Set the user-agent header field to use in all requests to the server.
|
||
/// It defaults to `google-api-rust-client/0.1.12`.
|
||
///
|
||
/// Returns the previously set user-agent.
|
||
pub fn user_agent(&mut self, agent_name: String) -> String {
|
||
let prev = self._user_agent.clone();
|
||
self._user_agent = agent_name;
|
||
prev
|
||
}
|
||
}
|
||
|
||
|
||
// ############
|
||
// SCHEMAS ###
|
||
// ##########
|
||
/// Information about the various content types in the sitemap.
|
||
///
|
||
/// This type is not used in any activity, and only used as *part* of another schema.
|
||
///
|
||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||
pub struct WmxSitemapContent {
|
||
/// The number of URLs from the sitemap that were indexed (of the content type).
|
||
pub indexed: Option<String>,
|
||
/// The specific type of content in this sitemap. For example: web.
|
||
#[serde(rename="type")]
|
||
pub type_: Option<String>,
|
||
/// The number of URLs in the sitemap (of the content type).
|
||
pub submitted: Option<String>,
|
||
}
|
||
|
||
impl Part for WmxSitemapContent {}
|
||
|
||
|
||
/// There is no detailed description.
|
||
///
|
||
/// This type is not used in any activity, and only used as *part* of another schema.
|
||
///
|
||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||
pub struct ApiDimensionFilterGroup {
|
||
/// no description provided
|
||
#[serde(rename="groupType")]
|
||
pub group_type: Option<String>,
|
||
/// no description provided
|
||
pub filters: Option<Vec<ApiDimensionFilter>>,
|
||
}
|
||
|
||
impl Part for ApiDimensionFilterGroup {}
|
||
|
||
|
||
/// A time series of the number of URL crawl errors per error category and platform.
|
||
///
|
||
/// # Activities
|
||
///
|
||
/// This type is used in activities, which are methods you may call on this type or where this type is involved in.
|
||
/// The list links the activity name, along with information about where it is used (one of *request* and *response*).
|
||
///
|
||
/// * [query urlcrawlerrorscounts](struct.UrlcrawlerrorscountQueryCall.html) (response)
|
||
///
|
||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||
pub struct UrlCrawlErrorsCountsQueryResponse {
|
||
/// The time series of the number of URL crawl errors per error category and platform.
|
||
#[serde(rename="countPerTypes")]
|
||
pub count_per_types: Option<Vec<UrlCrawlErrorCountsPerType>>,
|
||
}
|
||
|
||
impl ResponseResult for UrlCrawlErrorsCountsQueryResponse {}
|
||
|
||
|
||
/// Contains detailed information about a specific URL submitted as a sitemap.
|
||
///
|
||
/// # Activities
|
||
///
|
||
/// This type is used in activities, which are methods you may call on this type or where this type is involved in.
|
||
/// The list links the activity name, along with information about where it is used (one of *request* and *response*).
|
||
///
|
||
/// * [get sitemaps](struct.SitemapGetCall.html) (response)
|
||
///
|
||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||
pub struct WmxSitemap {
|
||
/// Number of errors in the sitemap. These are issues with the sitemap itself that need to be fixed before it can be processed correctly.
|
||
pub errors: Option<String>,
|
||
/// Number of warnings for the sitemap. These are generally non-critical issues with URLs in the sitemaps.
|
||
pub warnings: Option<String>,
|
||
/// If true, the sitemap has not been processed.
|
||
#[serde(rename="isPending")]
|
||
pub is_pending: Option<bool>,
|
||
/// Date & time in which this sitemap was submitted. Date format is in RFC 3339 format (yyyy-mm-dd).
|
||
#[serde(rename="lastSubmitted")]
|
||
pub last_submitted: Option<String>,
|
||
/// If true, the sitemap is a collection of sitemaps.
|
||
#[serde(rename="isSitemapsIndex")]
|
||
pub is_sitemaps_index: Option<bool>,
|
||
/// Date & time in which this sitemap was last downloaded. Date format is in RFC 3339 format (yyyy-mm-dd).
|
||
#[serde(rename="lastDownloaded")]
|
||
pub last_downloaded: Option<String>,
|
||
/// The url of the sitemap.
|
||
pub path: Option<String>,
|
||
/// The type of the sitemap. For example: rssFeed.
|
||
#[serde(rename="type")]
|
||
pub type_: Option<String>,
|
||
/// The various content types in the sitemap.
|
||
pub contents: Option<Vec<WmxSitemapContent>>,
|
||
}
|
||
|
||
impl ResponseResult for WmxSitemap {}
|
||
|
||
|
||
/// List of sites with access level information.
|
||
///
|
||
/// # Activities
|
||
///
|
||
/// This type is used in activities, which are methods you may call on this type or where this type is involved in.
|
||
/// The list links the activity name, along with information about where it is used (one of *request* and *response*).
|
||
///
|
||
/// * [list sites](struct.SiteListCall.html) (response)
|
||
///
|
||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||
pub struct SitesListResponse {
|
||
/// Contains permission level information about a Search Console site. For more information, see Permissions in Search Console.
|
||
#[serde(rename="siteEntry")]
|
||
pub site_entry: Option<Vec<WmxSite>>,
|
||
}
|
||
|
||
impl ResponseResult for SitesListResponse {}
|
||
|
||
|
||
/// There is no detailed description.
|
||
///
|
||
/// This type is not used in any activity, and only used as *part* of another schema.
|
||
///
|
||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||
pub struct ApiDataRow {
|
||
/// no description provided
|
||
pub keys: Option<Vec<String>>,
|
||
/// no description provided
|
||
pub impressions: Option<f64>,
|
||
/// no description provided
|
||
pub clicks: Option<f64>,
|
||
/// no description provided
|
||
pub ctr: Option<f64>,
|
||
/// no description provided
|
||
pub position: Option<f64>,
|
||
}
|
||
|
||
impl Part for ApiDataRow {}
|
||
|
||
|
||
/// There is no detailed description.
|
||
///
|
||
/// This type is not used in any activity, and only used as *part* of another schema.
|
||
///
|
||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||
pub struct ApiDimensionFilter {
|
||
/// no description provided
|
||
pub operator: Option<String>,
|
||
/// no description provided
|
||
pub expression: Option<String>,
|
||
/// no description provided
|
||
pub dimension: Option<String>,
|
||
}
|
||
|
||
impl Part for ApiDimensionFilter {}
|
||
|
||
|
||
/// Additional details about the URL, set only when calling get().
|
||
///
|
||
/// This type is not used in any activity, and only used as *part* of another schema.
|
||
///
|
||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||
pub struct UrlSampleDetails {
|
||
/// List of sitemaps pointing at this URL.
|
||
#[serde(rename="containingSitemaps")]
|
||
pub containing_sitemaps: Option<Vec<String>>,
|
||
/// A sample set of URLs linking to this URL.
|
||
#[serde(rename="linkedFromUrls")]
|
||
pub linked_from_urls: Option<Vec<String>>,
|
||
}
|
||
|
||
impl Part for UrlSampleDetails {}
|
||
|
||
|
||
/// List of crawl error samples.
|
||
///
|
||
/// # Activities
|
||
///
|
||
/// This type is used in activities, which are methods you may call on this type or where this type is involved in.
|
||
/// The list links the activity name, along with information about where it is used (one of *request* and *response*).
|
||
///
|
||
/// * [list urlcrawlerrorssamples](struct.UrlcrawlerrorssampleListCall.html) (response)
|
||
///
|
||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||
pub struct UrlCrawlErrorsSamplesListResponse {
|
||
/// Information about the sample URL and its crawl error.
|
||
#[serde(rename="urlCrawlErrorSample")]
|
||
pub url_crawl_error_sample: Option<Vec<UrlCrawlErrorsSample>>,
|
||
}
|
||
|
||
impl ResponseResult for UrlCrawlErrorsSamplesListResponse {}
|
||
|
||
|
||
/// There is no detailed description.
|
||
///
|
||
/// # Activities
|
||
///
|
||
/// This type is used in activities, which are methods you may call on this type or where this type is involved in.
|
||
/// The list links the activity name, along with information about where it is used (one of *request* and *response*).
|
||
///
|
||
/// * [query searchanalytics](struct.SearchanalyticQueryCall.html) (request)
|
||
///
|
||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||
pub struct SearchAnalyticsQueryRequest {
|
||
/// [Required] Start date of the requested date range, in YYYY-MM-DD format, in PST time (UTC - 8:00). Must be less than or equal to the end date. This value is included in the range.
|
||
#[serde(rename="startDate")]
|
||
pub start_date: Option<String>,
|
||
/// [Required] End date of the requested date range, in YYYY-MM-DD format, in PST (UTC - 8:00). Must be greater than or equal to the start date. This value is included in the range.
|
||
#[serde(rename="endDate")]
|
||
pub end_date: Option<String>,
|
||
/// [Optional] Zero or more dimensions to group results by. Dimensions are the group-by values in the Search Analytics page. Dimensions are combined to create a unique row key for each row. Results are grouped in the order that you supply these dimensions.
|
||
pub dimensions: Option<Vec<String>>,
|
||
/// [Optional; Default is "web"] The search type to filter for.
|
||
#[serde(rename="searchType")]
|
||
pub search_type: Option<String>,
|
||
/// [Optional] Zero or more filters to apply to the dimension grouping values; for example, 'query contains "buy"' to see only data where the query string contains the substring "buy" (not case-sensitive). You can filter by a dimension without grouping by it.
|
||
#[serde(rename="dimensionFilterGroups")]
|
||
pub dimension_filter_groups: Option<Vec<ApiDimensionFilterGroup>>,
|
||
/// [Optional; Default is "auto"] How data is aggregated. If aggregated by property, all data for the same property is aggregated; if aggregated by page, all data is aggregated by canonical URI. If you filter or group by page, choose AUTO; otherwise you can aggregate either by property or by page, depending on how you want your data calculated; see the help documentation to learn how data is calculated differently by site versus by page.
|
||
///
|
||
/// Note: If you group or filter by page, you cannot aggregate by property.
|
||
///
|
||
/// If you specify any value other than AUTO, the aggregation type in the result will match the requested type, or if you request an invalid type, you will get an error. The API will never change your aggregation type if the requested type is invalid.
|
||
#[serde(rename="aggregationType")]
|
||
pub aggregation_type: Option<String>,
|
||
/// [Optional; Default is 1000] The maximum number of rows to return. Must be a number from 1 to 5,000 (inclusive).
|
||
#[serde(rename="rowLimit")]
|
||
pub row_limit: Option<i32>,
|
||
}
|
||
|
||
impl RequestValue for SearchAnalyticsQueryRequest {}
|
||
|
||
|
||
/// List of sitemaps.
|
||
///
|
||
/// # Activities
|
||
///
|
||
/// This type is used in activities, which are methods you may call on this type or where this type is involved in.
|
||
/// The list links the activity name, along with information about where it is used (one of *request* and *response*).
|
||
///
|
||
/// * [list sitemaps](struct.SitemapListCall.html) (response)
|
||
///
|
||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||
pub struct SitemapsListResponse {
|
||
/// Contains detailed information about a specific URL submitted as a sitemap.
|
||
pub sitemap: Option<Vec<WmxSitemap>>,
|
||
}
|
||
|
||
impl ResponseResult for SitemapsListResponse {}
|
||
|
||
|
||
/// Number of errors per day for a specific error type (defined by platform and category).
|
||
///
|
||
/// This type is not used in any activity, and only used as *part* of another schema.
|
||
///
|
||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||
pub struct UrlCrawlErrorCountsPerType {
|
||
/// The crawl error type.
|
||
pub category: Option<String>,
|
||
/// The general type of Googlebot that made the request (see list of Googlebot user-agents for the user-agents used).
|
||
pub platform: Option<String>,
|
||
/// The error count entries time series.
|
||
pub entries: Option<Vec<UrlCrawlErrorCount>>,
|
||
}
|
||
|
||
impl Part for UrlCrawlErrorCountsPerType {}
|
||
|
||
|
||
/// Contains permission level information about a Search Console site. For more information, see Permissions in Search Console.
|
||
///
|
||
/// # Activities
|
||
///
|
||
/// This type is used in activities, which are methods you may call on this type or where this type is involved in.
|
||
/// The list links the activity name, along with information about where it is used (one of *request* and *response*).
|
||
///
|
||
/// * [get sites](struct.SiteGetCall.html) (response)
|
||
///
|
||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||
pub struct WmxSite {
|
||
/// The user's permission level for the site.
|
||
#[serde(rename="permissionLevel")]
|
||
pub permission_level: Option<String>,
|
||
/// The URL of the site.
|
||
#[serde(rename="siteUrl")]
|
||
pub site_url: Option<String>,
|
||
}
|
||
|
||
impl ResponseResult for WmxSite {}
|
||
|
||
|
||
/// An entry in a URL crawl errors time series.
|
||
///
|
||
/// This type is not used in any activity, and only used as *part* of another schema.
|
||
///
|
||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||
pub struct UrlCrawlErrorCount {
|
||
/// The error count at the given timestamp.
|
||
pub count: Option<String>,
|
||
/// The date and time when the crawl attempt took place, in RFC 3339 format.
|
||
pub timestamp: Option<String>,
|
||
}
|
||
|
||
impl Part for UrlCrawlErrorCount {}
|
||
|
||
|
||
/// Contains information about specific crawl errors.
|
||
///
|
||
/// # Activities
|
||
///
|
||
/// This type is used in activities, which are methods you may call on this type or where this type is involved in.
|
||
/// The list links the activity name, along with information about where it is used (one of *request* and *response*).
|
||
///
|
||
/// * [get urlcrawlerrorssamples](struct.UrlcrawlerrorssampleGetCall.html) (response)
|
||
///
|
||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||
pub struct UrlCrawlErrorsSample {
|
||
/// Additional details about the URL, set only when calling get().
|
||
#[serde(rename="urlDetails")]
|
||
pub url_details: Option<UrlSampleDetails>,
|
||
/// The URL of an error, relative to the site.
|
||
#[serde(rename="pageUrl")]
|
||
pub page_url: Option<String>,
|
||
/// The time when the URL was last crawled, in RFC 3339 format.
|
||
pub last_crawled: Option<String>,
|
||
/// The HTTP response code, if any.
|
||
#[serde(rename="responseCode")]
|
||
pub response_code: Option<i32>,
|
||
/// The time the error was first detected, in RFC 3339 format.
|
||
pub first_detected: Option<String>,
|
||
}
|
||
|
||
impl Resource for UrlCrawlErrorsSample {}
|
||
impl ResponseResult for UrlCrawlErrorsSample {}
|
||
|
||
|
||
/// A list of rows, one per result, grouped by key. Metrics in each row are aggregated for all data grouped by that key either by page or property, as specified by the aggregation type parameter.
|
||
///
|
||
/// # Activities
|
||
///
|
||
/// This type is used in activities, which are methods you may call on this type or where this type is involved in.
|
||
/// The list links the activity name, along with information about where it is used (one of *request* and *response*).
|
||
///
|
||
/// * [query searchanalytics](struct.SearchanalyticQueryCall.html) (response)
|
||
///
|
||
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
|
||
pub struct SearchAnalyticsQueryResponse {
|
||
/// A list of rows grouped by the key values in the order given in the query.
|
||
pub rows: Option<Vec<ApiDataRow>>,
|
||
/// How the results were aggregated.
|
||
#[serde(rename="responseAggregationType")]
|
||
pub response_aggregation_type: Option<String>,
|
||
}
|
||
|
||
impl ResponseResult for SearchAnalyticsQueryResponse {}
|
||
|
||
|
||
|
||
// ###################
|
||
// MethodBuilders ###
|
||
// #################
|
||
|
||
/// A builder providing access to all methods supported on *sitemap* resources.
|
||
/// It is not used directly, but through the `Webmasters` hub.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// extern crate hyper;
|
||
/// extern crate yup_oauth2 as oauth2;
|
||
/// extern crate google_webmasters3 as webmasters3;
|
||
///
|
||
/// # #[test] fn egal() {
|
||
/// use std::default::Default;
|
||
/// use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// use webmasters3::Webmasters;
|
||
///
|
||
/// let secret: ApplicationSecret = Default::default();
|
||
/// let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// hyper::Client::new(),
|
||
/// <MemoryStorage as Default>::default(), None);
|
||
/// let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
|
||
/// // like `delete(...)`, `get(...)`, `list(...)` and `submit(...)`
|
||
/// // to build up your call.
|
||
/// let rb = hub.sitemaps();
|
||
/// # }
|
||
/// ```
|
||
pub struct SitemapMethods<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
}
|
||
|
||
impl<'a, C, A> MethodsBuilder for SitemapMethods<'a, C, A> {}
|
||
|
||
impl<'a, C, A> SitemapMethods<'a, C, A> {
|
||
|
||
/// Create a builder to help you perform the following task:
|
||
///
|
||
/// Deletes a sitemap from this site.
|
||
///
|
||
/// # Arguments
|
||
///
|
||
/// * `siteUrl` - The site's URL, including protocol. For example: http://www.example.com/
|
||
/// * `feedpath` - The URL of the actual sitemap. For example: http://www.example.com/sitemap.xml
|
||
pub fn delete(&self, site_url: &str, feedpath: &str) -> SitemapDeleteCall<'a, C, A> {
|
||
SitemapDeleteCall {
|
||
hub: self.hub,
|
||
_site_url: site_url.to_string(),
|
||
_feedpath: feedpath.to_string(),
|
||
_delegate: Default::default(),
|
||
_scopes: Default::default(),
|
||
_additional_params: Default::default(),
|
||
}
|
||
}
|
||
|
||
/// Create a builder to help you perform the following task:
|
||
///
|
||
/// Submits a sitemap for a site.
|
||
///
|
||
/// # Arguments
|
||
///
|
||
/// * `siteUrl` - The site's URL, including protocol. For example: http://www.example.com/
|
||
/// * `feedpath` - The URL of the sitemap to add. For example: http://www.example.com/sitemap.xml
|
||
pub fn submit(&self, site_url: &str, feedpath: &str) -> SitemapSubmitCall<'a, C, A> {
|
||
SitemapSubmitCall {
|
||
hub: self.hub,
|
||
_site_url: site_url.to_string(),
|
||
_feedpath: feedpath.to_string(),
|
||
_delegate: Default::default(),
|
||
_scopes: Default::default(),
|
||
_additional_params: Default::default(),
|
||
}
|
||
}
|
||
|
||
/// Create a builder to help you perform the following task:
|
||
///
|
||
/// Retrieves information about a specific sitemap.
|
||
///
|
||
/// # Arguments
|
||
///
|
||
/// * `siteUrl` - The site's URL, including protocol. For example: http://www.example.com/
|
||
/// * `feedpath` - The URL of the actual sitemap. For example: http://www.example.com/sitemap.xml
|
||
pub fn get(&self, site_url: &str, feedpath: &str) -> SitemapGetCall<'a, C, A> {
|
||
SitemapGetCall {
|
||
hub: self.hub,
|
||
_site_url: site_url.to_string(),
|
||
_feedpath: feedpath.to_string(),
|
||
_delegate: Default::default(),
|
||
_scopes: Default::default(),
|
||
_additional_params: Default::default(),
|
||
}
|
||
}
|
||
|
||
/// Create a builder to help you perform the following task:
|
||
///
|
||
/// Lists the sitemaps-entries submitted for this site, or included in the sitemap index file (if sitemapIndex is specified in the request).
|
||
///
|
||
/// # Arguments
|
||
///
|
||
/// * `siteUrl` - The site's URL, including protocol. For example: http://www.example.com/
|
||
pub fn list(&self, site_url: &str) -> SitemapListCall<'a, C, A> {
|
||
SitemapListCall {
|
||
hub: self.hub,
|
||
_site_url: site_url.to_string(),
|
||
_sitemap_index: Default::default(),
|
||
_delegate: Default::default(),
|
||
_scopes: Default::default(),
|
||
_additional_params: Default::default(),
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
|
||
/// A builder providing access to all methods supported on *site* resources.
|
||
/// It is not used directly, but through the `Webmasters` hub.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// extern crate hyper;
|
||
/// extern crate yup_oauth2 as oauth2;
|
||
/// extern crate google_webmasters3 as webmasters3;
|
||
///
|
||
/// # #[test] fn egal() {
|
||
/// use std::default::Default;
|
||
/// use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// use webmasters3::Webmasters;
|
||
///
|
||
/// let secret: ApplicationSecret = Default::default();
|
||
/// let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// hyper::Client::new(),
|
||
/// <MemoryStorage as Default>::default(), None);
|
||
/// let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
|
||
/// // like `add(...)`, `delete(...)`, `get(...)` and `list(...)`
|
||
/// // to build up your call.
|
||
/// let rb = hub.sites();
|
||
/// # }
|
||
/// ```
|
||
pub struct SiteMethods<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
}
|
||
|
||
impl<'a, C, A> MethodsBuilder for SiteMethods<'a, C, A> {}
|
||
|
||
impl<'a, C, A> SiteMethods<'a, C, A> {
|
||
|
||
/// Create a builder to help you perform the following task:
|
||
///
|
||
/// Retrieves information about specific site.
|
||
///
|
||
/// # Arguments
|
||
///
|
||
/// * `siteUrl` - The URI of the property as defined in Search Console. Examples: http://www.example.com/ or android-app://com.example/
|
||
pub fn get(&self, site_url: &str) -> SiteGetCall<'a, C, A> {
|
||
SiteGetCall {
|
||
hub: self.hub,
|
||
_site_url: site_url.to_string(),
|
||
_delegate: Default::default(),
|
||
_scopes: Default::default(),
|
||
_additional_params: Default::default(),
|
||
}
|
||
}
|
||
|
||
/// Create a builder to help you perform the following task:
|
||
///
|
||
/// Adds a site to the set of the user's sites in Search Console.
|
||
///
|
||
/// # Arguments
|
||
///
|
||
/// * `siteUrl` - The URL of the site to add.
|
||
pub fn add(&self, site_url: &str) -> SiteAddCall<'a, C, A> {
|
||
SiteAddCall {
|
||
hub: self.hub,
|
||
_site_url: site_url.to_string(),
|
||
_delegate: Default::default(),
|
||
_scopes: Default::default(),
|
||
_additional_params: Default::default(),
|
||
}
|
||
}
|
||
|
||
/// Create a builder to help you perform the following task:
|
||
///
|
||
/// Lists the user's Search Console sites.
|
||
pub fn list(&self) -> SiteListCall<'a, C, A> {
|
||
SiteListCall {
|
||
hub: self.hub,
|
||
_delegate: Default::default(),
|
||
_scopes: Default::default(),
|
||
_additional_params: Default::default(),
|
||
}
|
||
}
|
||
|
||
/// Create a builder to help you perform the following task:
|
||
///
|
||
/// Removes a site from the set of the user's Search Console sites.
|
||
///
|
||
/// # Arguments
|
||
///
|
||
/// * `siteUrl` - The URI of the property as defined in Search Console. Examples: http://www.example.com/ or android-app://com.example/
|
||
pub fn delete(&self, site_url: &str) -> SiteDeleteCall<'a, C, A> {
|
||
SiteDeleteCall {
|
||
hub: self.hub,
|
||
_site_url: site_url.to_string(),
|
||
_delegate: Default::default(),
|
||
_scopes: Default::default(),
|
||
_additional_params: Default::default(),
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
|
||
/// A builder providing access to all methods supported on *searchanalytic* resources.
|
||
/// It is not used directly, but through the `Webmasters` hub.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// extern crate hyper;
|
||
/// extern crate yup_oauth2 as oauth2;
|
||
/// extern crate google_webmasters3 as webmasters3;
|
||
///
|
||
/// # #[test] fn egal() {
|
||
/// use std::default::Default;
|
||
/// use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// use webmasters3::Webmasters;
|
||
///
|
||
/// let secret: ApplicationSecret = Default::default();
|
||
/// let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// hyper::Client::new(),
|
||
/// <MemoryStorage as Default>::default(), None);
|
||
/// let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
|
||
/// // like `query(...)`
|
||
/// // to build up your call.
|
||
/// let rb = hub.searchanalytics();
|
||
/// # }
|
||
/// ```
|
||
pub struct SearchanalyticMethods<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
}
|
||
|
||
impl<'a, C, A> MethodsBuilder for SearchanalyticMethods<'a, C, A> {}
|
||
|
||
impl<'a, C, A> SearchanalyticMethods<'a, C, A> {
|
||
|
||
/// Create a builder to help you perform the following task:
|
||
///
|
||
/// Query your data with filters and parameters that you define. Returns zero or more rows grouped by the row keys that you define. You must define a date range of one or more days.
|
||
///
|
||
/// When date is one of the group by values, any days without data are omitted from the result list. If you need to know which days have data, issue a broad date range query grouped by date for any metric, and see which day rows are returned.
|
||
///
|
||
/// # Arguments
|
||
///
|
||
/// * `request` - No description provided.
|
||
/// * `siteUrl` - The site's URL, including protocol. For example: http://www.example.com/
|
||
pub fn query(&self, request: SearchAnalyticsQueryRequest, site_url: &str) -> SearchanalyticQueryCall<'a, C, A> {
|
||
SearchanalyticQueryCall {
|
||
hub: self.hub,
|
||
_request: request,
|
||
_site_url: site_url.to_string(),
|
||
_delegate: Default::default(),
|
||
_scopes: Default::default(),
|
||
_additional_params: Default::default(),
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
|
||
/// A builder providing access to all methods supported on *urlcrawlerrorscount* resources.
|
||
/// It is not used directly, but through the `Webmasters` hub.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// extern crate hyper;
|
||
/// extern crate yup_oauth2 as oauth2;
|
||
/// extern crate google_webmasters3 as webmasters3;
|
||
///
|
||
/// # #[test] fn egal() {
|
||
/// use std::default::Default;
|
||
/// use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// use webmasters3::Webmasters;
|
||
///
|
||
/// let secret: ApplicationSecret = Default::default();
|
||
/// let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// hyper::Client::new(),
|
||
/// <MemoryStorage as Default>::default(), None);
|
||
/// let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
|
||
/// // like `query(...)`
|
||
/// // to build up your call.
|
||
/// let rb = hub.urlcrawlerrorscounts();
|
||
/// # }
|
||
/// ```
|
||
pub struct UrlcrawlerrorscountMethods<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
}
|
||
|
||
impl<'a, C, A> MethodsBuilder for UrlcrawlerrorscountMethods<'a, C, A> {}
|
||
|
||
impl<'a, C, A> UrlcrawlerrorscountMethods<'a, C, A> {
|
||
|
||
/// Create a builder to help you perform the following task:
|
||
///
|
||
/// Retrieves a time series of the number of URL crawl errors per error category and platform.
|
||
///
|
||
/// # Arguments
|
||
///
|
||
/// * `siteUrl` - The site's URL, including protocol. For example: http://www.example.com/
|
||
pub fn query(&self, site_url: &str) -> UrlcrawlerrorscountQueryCall<'a, C, A> {
|
||
UrlcrawlerrorscountQueryCall {
|
||
hub: self.hub,
|
||
_site_url: site_url.to_string(),
|
||
_platform: Default::default(),
|
||
_latest_counts_only: Default::default(),
|
||
_category: Default::default(),
|
||
_delegate: Default::default(),
|
||
_scopes: Default::default(),
|
||
_additional_params: Default::default(),
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
|
||
/// A builder providing access to all methods supported on *urlcrawlerrorssample* resources.
|
||
/// It is not used directly, but through the `Webmasters` hub.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// extern crate hyper;
|
||
/// extern crate yup_oauth2 as oauth2;
|
||
/// extern crate google_webmasters3 as webmasters3;
|
||
///
|
||
/// # #[test] fn egal() {
|
||
/// use std::default::Default;
|
||
/// use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// use webmasters3::Webmasters;
|
||
///
|
||
/// let secret: ApplicationSecret = Default::default();
|
||
/// let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// hyper::Client::new(),
|
||
/// <MemoryStorage as Default>::default(), None);
|
||
/// let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
|
||
/// // like `get(...)`, `list(...)` and `mark_as_fixed(...)`
|
||
/// // to build up your call.
|
||
/// let rb = hub.urlcrawlerrorssamples();
|
||
/// # }
|
||
/// ```
|
||
pub struct UrlcrawlerrorssampleMethods<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
}
|
||
|
||
impl<'a, C, A> MethodsBuilder for UrlcrawlerrorssampleMethods<'a, C, A> {}
|
||
|
||
impl<'a, C, A> UrlcrawlerrorssampleMethods<'a, C, A> {
|
||
|
||
/// Create a builder to help you perform the following task:
|
||
///
|
||
/// Retrieves details about crawl errors for a site's sample URL.
|
||
///
|
||
/// # Arguments
|
||
///
|
||
/// * `siteUrl` - The site's URL, including protocol. For example: http://www.example.com/
|
||
/// * `url` - The relative path (without the site) of the sample URL. It must be one of the URLs returned by list(). For example, for the URL https://www.example.com/pagename on the site https://www.example.com/, the url value is pagename
|
||
/// * `category` - The crawl error category. For example: authPermissions
|
||
/// * `platform` - The user agent type (platform) that made the request. For example: web
|
||
pub fn get(&self, site_url: &str, url: &str, category: &str, platform: &str) -> UrlcrawlerrorssampleGetCall<'a, C, A> {
|
||
UrlcrawlerrorssampleGetCall {
|
||
hub: self.hub,
|
||
_site_url: site_url.to_string(),
|
||
_url: url.to_string(),
|
||
_category: category.to_string(),
|
||
_platform: platform.to_string(),
|
||
_delegate: Default::default(),
|
||
_scopes: Default::default(),
|
||
_additional_params: Default::default(),
|
||
}
|
||
}
|
||
|
||
/// Create a builder to help you perform the following task:
|
||
///
|
||
/// Lists a site's sample URLs for the specified crawl error category and platform.
|
||
///
|
||
/// # Arguments
|
||
///
|
||
/// * `siteUrl` - The site's URL, including protocol. For example: http://www.example.com/
|
||
/// * `category` - The crawl error category. For example: authPermissions
|
||
/// * `platform` - The user agent type (platform) that made the request. For example: web
|
||
pub fn list(&self, site_url: &str, category: &str, platform: &str) -> UrlcrawlerrorssampleListCall<'a, C, A> {
|
||
UrlcrawlerrorssampleListCall {
|
||
hub: self.hub,
|
||
_site_url: site_url.to_string(),
|
||
_category: category.to_string(),
|
||
_platform: platform.to_string(),
|
||
_delegate: Default::default(),
|
||
_scopes: Default::default(),
|
||
_additional_params: Default::default(),
|
||
}
|
||
}
|
||
|
||
/// Create a builder to help you perform the following task:
|
||
///
|
||
/// Marks the provided site's sample URL as fixed, and removes it from the samples list.
|
||
///
|
||
/// # Arguments
|
||
///
|
||
/// * `siteUrl` - The site's URL, including protocol. For example: http://www.example.com/
|
||
/// * `url` - The relative path (without the site) of the sample URL. It must be one of the URLs returned by list(). For example, for the URL https://www.example.com/pagename on the site https://www.example.com/, the url value is pagename
|
||
/// * `category` - The crawl error category. For example: authPermissions
|
||
/// * `platform` - The user agent type (platform) that made the request. For example: web
|
||
pub fn mark_as_fixed(&self, site_url: &str, url: &str, category: &str, platform: &str) -> UrlcrawlerrorssampleMarkAsFixedCall<'a, C, A> {
|
||
UrlcrawlerrorssampleMarkAsFixedCall {
|
||
hub: self.hub,
|
||
_site_url: site_url.to_string(),
|
||
_url: url.to_string(),
|
||
_category: category.to_string(),
|
||
_platform: platform.to_string(),
|
||
_delegate: Default::default(),
|
||
_scopes: Default::default(),
|
||
_additional_params: Default::default(),
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
|
||
|
||
|
||
// ###################
|
||
// CallBuilders ###
|
||
// #################
|
||
|
||
/// Deletes a sitemap from this site.
|
||
///
|
||
/// A builder for the *delete* method supported by a *sitemap* resource.
|
||
/// It is not used directly, but through a `SitemapMethods` instance.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource method builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// # extern crate hyper;
|
||
/// # extern crate yup_oauth2 as oauth2;
|
||
/// # extern crate google_webmasters3 as webmasters3;
|
||
/// # #[test] fn egal() {
|
||
/// # use std::default::Default;
|
||
/// # use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// # use webmasters3::Webmasters;
|
||
///
|
||
/// # let secret: ApplicationSecret = Default::default();
|
||
/// # let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// # hyper::Client::new(),
|
||
/// # <MemoryStorage as Default>::default(), None);
|
||
/// # let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // You can configure optional parameters by calling the respective setters at will, and
|
||
/// // execute the final call using `doit()`.
|
||
/// // Values shown here are possibly random and not representative !
|
||
/// let result = hub.sitemaps().delete("siteUrl", "feedpath")
|
||
/// .doit();
|
||
/// # }
|
||
/// ```
|
||
pub struct SitemapDeleteCall<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
_site_url: String,
|
||
_feedpath: String,
|
||
_delegate: Option<&'a mut Delegate>,
|
||
_additional_params: HashMap<String, String>,
|
||
_scopes: BTreeMap<String, ()>
|
||
}
|
||
|
||
impl<'a, C, A> CallBuilder for SitemapDeleteCall<'a, C, A> {}
|
||
|
||
impl<'a, C, A> SitemapDeleteCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oauth2::GetToken {
|
||
|
||
|
||
/// Perform the operation you have build so far.
|
||
pub fn doit(mut self) -> Result<hyper::client::Response> {
|
||
use std::io::{Read, Seek};
|
||
use hyper::header::{ContentType, ContentLength, Authorization, UserAgent, Location};
|
||
let mut dd = DefaultDelegate;
|
||
let mut dlg: &mut Delegate = match self._delegate {
|
||
Some(d) => d,
|
||
None => &mut dd
|
||
};
|
||
dlg.begin(MethodInfo { id: "webmasters.sitemaps.delete",
|
||
http_method: hyper::method::Method::Delete });
|
||
let mut params: Vec<(&str, String)> = Vec::with_capacity((3 + self._additional_params.len()));
|
||
params.push(("siteUrl", self._site_url.to_string()));
|
||
params.push(("feedpath", self._feedpath.to_string()));
|
||
for &field in ["siteUrl", "feedpath"].iter() {
|
||
if self._additional_params.contains_key(field) {
|
||
dlg.finished(false);
|
||
return Err(Error::FieldClash(field));
|
||
}
|
||
}
|
||
for (name, value) in self._additional_params.iter() {
|
||
params.push((&name, value.clone()));
|
||
}
|
||
|
||
|
||
let mut url = "https://www.googleapis.com/webmasters/v3/sites/{siteUrl}/sitemaps/{feedpath}".to_string();
|
||
if self._scopes.len() == 0 {
|
||
self._scopes.insert(Scope::Full.as_ref().to_string(), ());
|
||
}
|
||
|
||
for &(find_this, param_name) in [("{siteUrl}", "siteUrl"), ("{feedpath}", "feedpath")].iter() {
|
||
let mut replace_with: Option<&str> = None;
|
||
for &(name, ref value) in params.iter() {
|
||
if name == param_name {
|
||
replace_with = Some(value);
|
||
break;
|
||
}
|
||
}
|
||
url = url.replace(find_this, replace_with.expect("to find substitution value in params"));
|
||
}
|
||
{
|
||
let mut indices_for_removal: Vec<usize> = Vec::with_capacity(2);
|
||
for param_name in ["feedpath", "siteUrl"].iter() {
|
||
if let Some(index) = params.iter().position(|t| &t.0 == param_name) {
|
||
indices_for_removal.push(index);
|
||
}
|
||
}
|
||
for &index in indices_for_removal.iter() {
|
||
params.remove(index);
|
||
}
|
||
}
|
||
|
||
if params.len() > 0 {
|
||
url.push('?');
|
||
url.push_str(&url::form_urlencoded::serialize(params));
|
||
}
|
||
|
||
|
||
|
||
loop {
|
||
let token = match self.hub.auth.borrow_mut().token(self._scopes.keys()) {
|
||
Ok(token) => token,
|
||
Err(err) => {
|
||
match dlg.token(&*err) {
|
||
Some(token) => token,
|
||
None => {
|
||
dlg.finished(false);
|
||
return Err(Error::MissingToken(err))
|
||
}
|
||
}
|
||
}
|
||
};
|
||
let auth_header = Authorization(oauth2::Scheme { token_type: oauth2::TokenType::Bearer,
|
||
access_token: token.access_token });
|
||
let mut req_result = {
|
||
let mut client = &mut *self.hub.client.borrow_mut();
|
||
let mut req = client.borrow_mut().request(hyper::method::Method::Delete, &url)
|
||
.header(UserAgent(self.hub._user_agent.clone()))
|
||
.header(auth_header.clone());
|
||
|
||
dlg.pre_request();
|
||
req.send()
|
||
};
|
||
|
||
match req_result {
|
||
Err(err) => {
|
||
if let oauth2::Retry::After(d) = dlg.http_error(&err) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return Err(Error::HttpError(err))
|
||
}
|
||
Ok(mut res) => {
|
||
if !res.status.is_success() {
|
||
let mut json_err = String::new();
|
||
res.read_to_string(&mut json_err).unwrap();
|
||
if let oauth2::Retry::After(d) = dlg.http_failure(&res,
|
||
json::from_str(&json_err).ok(),
|
||
json::from_str(&json_err).ok()) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return match json::from_str::<ErrorResponse>(&json_err){
|
||
Err(_) => Err(Error::Failure(res)),
|
||
Ok(serr) => Err(Error::BadRequest(serr))
|
||
}
|
||
}
|
||
let result_value = res;
|
||
|
||
dlg.finished(true);
|
||
return Ok(result_value)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
/// The site's URL, including protocol. For example: http://www.example.com/
|
||
///
|
||
/// Sets the *site url* path property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn site_url(mut self, new_value: &str) -> SitemapDeleteCall<'a, C, A> {
|
||
self._site_url = new_value.to_string();
|
||
self
|
||
}
|
||
/// The URL of the actual sitemap. For example: http://www.example.com/sitemap.xml
|
||
///
|
||
/// Sets the *feedpath* path property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn feedpath(mut self, new_value: &str) -> SitemapDeleteCall<'a, C, A> {
|
||
self._feedpath = new_value.to_string();
|
||
self
|
||
}
|
||
/// The delegate implementation is consulted whenever there is an intermediate result, or if something goes wrong
|
||
/// while executing the actual API request.
|
||
///
|
||
/// It should be used to handle progress information, and to implement a certain level of resilience.
|
||
///
|
||
/// Sets the *delegate* property to the given value.
|
||
pub fn delegate(mut self, new_value: &'a mut Delegate) -> SitemapDeleteCall<'a, C, A> {
|
||
self._delegate = Some(new_value);
|
||
self
|
||
}
|
||
|
||
/// Set any additional parameter of the query string used in the request.
|
||
/// It should be used to set parameters which are not yet available through their own
|
||
/// setters.
|
||
///
|
||
/// Please note that this method must not be used to set any of the known paramters
|
||
/// which have their own setter method. If done anyway, the request will fail.
|
||
///
|
||
/// # Additional Parameters
|
||
///
|
||
/// * *quotaUser* (query-string) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.
|
||
/// * *oauth_token* (query-string) - OAuth 2.0 token for the current user.
|
||
/// * *key* (query-string) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
|
||
/// * *prettyPrint* (query-boolean) - Returns response with indentations and line breaks.
|
||
/// * *userIp* (query-string) - IP address of the site where the request originates. Use this if you want to enforce per-user limits.
|
||
/// * *fields* (query-string) - Selector specifying which fields to include in a partial response.
|
||
/// * *alt* (query-string) - Data format for the response.
|
||
pub fn param<T>(mut self, name: T, value: T) -> SitemapDeleteCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._additional_params.insert(name.as_ref().to_string(), value.as_ref().to_string());
|
||
self
|
||
}
|
||
|
||
/// Identifies the authorization scope for the method you are building.
|
||
///
|
||
/// Use this method to actively specify which scope should be used, instead the default `Scope` variant
|
||
/// `Scope::Full`.
|
||
///
|
||
/// The `scope` will be added to a set of scopes. This is important as one can maintain access
|
||
/// tokens for more than one scope.
|
||
///
|
||
/// Usually there is more than one suitable scope to authorize an operation, some of which may
|
||
/// encompass more rights than others. For example, for listing resources, a *read-only* scope will be
|
||
/// sufficient, a read-write scope will do as well.
|
||
pub fn add_scope<T>(mut self, scope: T) -> SitemapDeleteCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._scopes.insert(scope.as_ref().to_string(), ());
|
||
self
|
||
}
|
||
}
|
||
|
||
|
||
/// Submits a sitemap for a site.
|
||
///
|
||
/// A builder for the *submit* method supported by a *sitemap* resource.
|
||
/// It is not used directly, but through a `SitemapMethods` instance.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource method builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// # extern crate hyper;
|
||
/// # extern crate yup_oauth2 as oauth2;
|
||
/// # extern crate google_webmasters3 as webmasters3;
|
||
/// # #[test] fn egal() {
|
||
/// # use std::default::Default;
|
||
/// # use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// # use webmasters3::Webmasters;
|
||
///
|
||
/// # let secret: ApplicationSecret = Default::default();
|
||
/// # let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// # hyper::Client::new(),
|
||
/// # <MemoryStorage as Default>::default(), None);
|
||
/// # let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // You can configure optional parameters by calling the respective setters at will, and
|
||
/// // execute the final call using `doit()`.
|
||
/// // Values shown here are possibly random and not representative !
|
||
/// let result = hub.sitemaps().submit("siteUrl", "feedpath")
|
||
/// .doit();
|
||
/// # }
|
||
/// ```
|
||
pub struct SitemapSubmitCall<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
_site_url: String,
|
||
_feedpath: String,
|
||
_delegate: Option<&'a mut Delegate>,
|
||
_additional_params: HashMap<String, String>,
|
||
_scopes: BTreeMap<String, ()>
|
||
}
|
||
|
||
impl<'a, C, A> CallBuilder for SitemapSubmitCall<'a, C, A> {}
|
||
|
||
impl<'a, C, A> SitemapSubmitCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oauth2::GetToken {
|
||
|
||
|
||
/// Perform the operation you have build so far.
|
||
pub fn doit(mut self) -> Result<hyper::client::Response> {
|
||
use std::io::{Read, Seek};
|
||
use hyper::header::{ContentType, ContentLength, Authorization, UserAgent, Location};
|
||
let mut dd = DefaultDelegate;
|
||
let mut dlg: &mut Delegate = match self._delegate {
|
||
Some(d) => d,
|
||
None => &mut dd
|
||
};
|
||
dlg.begin(MethodInfo { id: "webmasters.sitemaps.submit",
|
||
http_method: hyper::method::Method::Put });
|
||
let mut params: Vec<(&str, String)> = Vec::with_capacity((3 + self._additional_params.len()));
|
||
params.push(("siteUrl", self._site_url.to_string()));
|
||
params.push(("feedpath", self._feedpath.to_string()));
|
||
for &field in ["siteUrl", "feedpath"].iter() {
|
||
if self._additional_params.contains_key(field) {
|
||
dlg.finished(false);
|
||
return Err(Error::FieldClash(field));
|
||
}
|
||
}
|
||
for (name, value) in self._additional_params.iter() {
|
||
params.push((&name, value.clone()));
|
||
}
|
||
|
||
|
||
let mut url = "https://www.googleapis.com/webmasters/v3/sites/{siteUrl}/sitemaps/{feedpath}".to_string();
|
||
if self._scopes.len() == 0 {
|
||
self._scopes.insert(Scope::Full.as_ref().to_string(), ());
|
||
}
|
||
|
||
for &(find_this, param_name) in [("{siteUrl}", "siteUrl"), ("{feedpath}", "feedpath")].iter() {
|
||
let mut replace_with: Option<&str> = None;
|
||
for &(name, ref value) in params.iter() {
|
||
if name == param_name {
|
||
replace_with = Some(value);
|
||
break;
|
||
}
|
||
}
|
||
url = url.replace(find_this, replace_with.expect("to find substitution value in params"));
|
||
}
|
||
{
|
||
let mut indices_for_removal: Vec<usize> = Vec::with_capacity(2);
|
||
for param_name in ["feedpath", "siteUrl"].iter() {
|
||
if let Some(index) = params.iter().position(|t| &t.0 == param_name) {
|
||
indices_for_removal.push(index);
|
||
}
|
||
}
|
||
for &index in indices_for_removal.iter() {
|
||
params.remove(index);
|
||
}
|
||
}
|
||
|
||
if params.len() > 0 {
|
||
url.push('?');
|
||
url.push_str(&url::form_urlencoded::serialize(params));
|
||
}
|
||
|
||
|
||
|
||
loop {
|
||
let token = match self.hub.auth.borrow_mut().token(self._scopes.keys()) {
|
||
Ok(token) => token,
|
||
Err(err) => {
|
||
match dlg.token(&*err) {
|
||
Some(token) => token,
|
||
None => {
|
||
dlg.finished(false);
|
||
return Err(Error::MissingToken(err))
|
||
}
|
||
}
|
||
}
|
||
};
|
||
let auth_header = Authorization(oauth2::Scheme { token_type: oauth2::TokenType::Bearer,
|
||
access_token: token.access_token });
|
||
let mut req_result = {
|
||
let mut client = &mut *self.hub.client.borrow_mut();
|
||
let mut req = client.borrow_mut().request(hyper::method::Method::Put, &url)
|
||
.header(UserAgent(self.hub._user_agent.clone()))
|
||
.header(auth_header.clone());
|
||
|
||
dlg.pre_request();
|
||
req.send()
|
||
};
|
||
|
||
match req_result {
|
||
Err(err) => {
|
||
if let oauth2::Retry::After(d) = dlg.http_error(&err) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return Err(Error::HttpError(err))
|
||
}
|
||
Ok(mut res) => {
|
||
if !res.status.is_success() {
|
||
let mut json_err = String::new();
|
||
res.read_to_string(&mut json_err).unwrap();
|
||
if let oauth2::Retry::After(d) = dlg.http_failure(&res,
|
||
json::from_str(&json_err).ok(),
|
||
json::from_str(&json_err).ok()) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return match json::from_str::<ErrorResponse>(&json_err){
|
||
Err(_) => Err(Error::Failure(res)),
|
||
Ok(serr) => Err(Error::BadRequest(serr))
|
||
}
|
||
}
|
||
let result_value = res;
|
||
|
||
dlg.finished(true);
|
||
return Ok(result_value)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
/// The site's URL, including protocol. For example: http://www.example.com/
|
||
///
|
||
/// Sets the *site url* path property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn site_url(mut self, new_value: &str) -> SitemapSubmitCall<'a, C, A> {
|
||
self._site_url = new_value.to_string();
|
||
self
|
||
}
|
||
/// The URL of the sitemap to add. For example: http://www.example.com/sitemap.xml
|
||
///
|
||
/// Sets the *feedpath* path property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn feedpath(mut self, new_value: &str) -> SitemapSubmitCall<'a, C, A> {
|
||
self._feedpath = new_value.to_string();
|
||
self
|
||
}
|
||
/// The delegate implementation is consulted whenever there is an intermediate result, or if something goes wrong
|
||
/// while executing the actual API request.
|
||
///
|
||
/// It should be used to handle progress information, and to implement a certain level of resilience.
|
||
///
|
||
/// Sets the *delegate* property to the given value.
|
||
pub fn delegate(mut self, new_value: &'a mut Delegate) -> SitemapSubmitCall<'a, C, A> {
|
||
self._delegate = Some(new_value);
|
||
self
|
||
}
|
||
|
||
/// Set any additional parameter of the query string used in the request.
|
||
/// It should be used to set parameters which are not yet available through their own
|
||
/// setters.
|
||
///
|
||
/// Please note that this method must not be used to set any of the known paramters
|
||
/// which have their own setter method. If done anyway, the request will fail.
|
||
///
|
||
/// # Additional Parameters
|
||
///
|
||
/// * *quotaUser* (query-string) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.
|
||
/// * *oauth_token* (query-string) - OAuth 2.0 token for the current user.
|
||
/// * *key* (query-string) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
|
||
/// * *prettyPrint* (query-boolean) - Returns response with indentations and line breaks.
|
||
/// * *userIp* (query-string) - IP address of the site where the request originates. Use this if you want to enforce per-user limits.
|
||
/// * *fields* (query-string) - Selector specifying which fields to include in a partial response.
|
||
/// * *alt* (query-string) - Data format for the response.
|
||
pub fn param<T>(mut self, name: T, value: T) -> SitemapSubmitCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._additional_params.insert(name.as_ref().to_string(), value.as_ref().to_string());
|
||
self
|
||
}
|
||
|
||
/// Identifies the authorization scope for the method you are building.
|
||
///
|
||
/// Use this method to actively specify which scope should be used, instead the default `Scope` variant
|
||
/// `Scope::Full`.
|
||
///
|
||
/// The `scope` will be added to a set of scopes. This is important as one can maintain access
|
||
/// tokens for more than one scope.
|
||
///
|
||
/// Usually there is more than one suitable scope to authorize an operation, some of which may
|
||
/// encompass more rights than others. For example, for listing resources, a *read-only* scope will be
|
||
/// sufficient, a read-write scope will do as well.
|
||
pub fn add_scope<T>(mut self, scope: T) -> SitemapSubmitCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._scopes.insert(scope.as_ref().to_string(), ());
|
||
self
|
||
}
|
||
}
|
||
|
||
|
||
/// Retrieves information about a specific sitemap.
|
||
///
|
||
/// A builder for the *get* method supported by a *sitemap* resource.
|
||
/// It is not used directly, but through a `SitemapMethods` instance.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource method builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// # extern crate hyper;
|
||
/// # extern crate yup_oauth2 as oauth2;
|
||
/// # extern crate google_webmasters3 as webmasters3;
|
||
/// # #[test] fn egal() {
|
||
/// # use std::default::Default;
|
||
/// # use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// # use webmasters3::Webmasters;
|
||
///
|
||
/// # let secret: ApplicationSecret = Default::default();
|
||
/// # let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// # hyper::Client::new(),
|
||
/// # <MemoryStorage as Default>::default(), None);
|
||
/// # let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // You can configure optional parameters by calling the respective setters at will, and
|
||
/// // execute the final call using `doit()`.
|
||
/// // Values shown here are possibly random and not representative !
|
||
/// let result = hub.sitemaps().get("siteUrl", "feedpath")
|
||
/// .doit();
|
||
/// # }
|
||
/// ```
|
||
pub struct SitemapGetCall<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
_site_url: String,
|
||
_feedpath: String,
|
||
_delegate: Option<&'a mut Delegate>,
|
||
_additional_params: HashMap<String, String>,
|
||
_scopes: BTreeMap<String, ()>
|
||
}
|
||
|
||
impl<'a, C, A> CallBuilder for SitemapGetCall<'a, C, A> {}
|
||
|
||
impl<'a, C, A> SitemapGetCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oauth2::GetToken {
|
||
|
||
|
||
/// Perform the operation you have build so far.
|
||
pub fn doit(mut self) -> Result<(hyper::client::Response, WmxSitemap)> {
|
||
use std::io::{Read, Seek};
|
||
use hyper::header::{ContentType, ContentLength, Authorization, UserAgent, Location};
|
||
let mut dd = DefaultDelegate;
|
||
let mut dlg: &mut Delegate = match self._delegate {
|
||
Some(d) => d,
|
||
None => &mut dd
|
||
};
|
||
dlg.begin(MethodInfo { id: "webmasters.sitemaps.get",
|
||
http_method: hyper::method::Method::Get });
|
||
let mut params: Vec<(&str, String)> = Vec::with_capacity((4 + self._additional_params.len()));
|
||
params.push(("siteUrl", self._site_url.to_string()));
|
||
params.push(("feedpath", self._feedpath.to_string()));
|
||
for &field in ["alt", "siteUrl", "feedpath"].iter() {
|
||
if self._additional_params.contains_key(field) {
|
||
dlg.finished(false);
|
||
return Err(Error::FieldClash(field));
|
||
}
|
||
}
|
||
for (name, value) in self._additional_params.iter() {
|
||
params.push((&name, value.clone()));
|
||
}
|
||
|
||
params.push(("alt", "json".to_string()));
|
||
|
||
let mut url = "https://www.googleapis.com/webmasters/v3/sites/{siteUrl}/sitemaps/{feedpath}".to_string();
|
||
if self._scopes.len() == 0 {
|
||
self._scopes.insert(Scope::Readonly.as_ref().to_string(), ());
|
||
}
|
||
|
||
for &(find_this, param_name) in [("{siteUrl}", "siteUrl"), ("{feedpath}", "feedpath")].iter() {
|
||
let mut replace_with: Option<&str> = None;
|
||
for &(name, ref value) in params.iter() {
|
||
if name == param_name {
|
||
replace_with = Some(value);
|
||
break;
|
||
}
|
||
}
|
||
url = url.replace(find_this, replace_with.expect("to find substitution value in params"));
|
||
}
|
||
{
|
||
let mut indices_for_removal: Vec<usize> = Vec::with_capacity(2);
|
||
for param_name in ["feedpath", "siteUrl"].iter() {
|
||
if let Some(index) = params.iter().position(|t| &t.0 == param_name) {
|
||
indices_for_removal.push(index);
|
||
}
|
||
}
|
||
for &index in indices_for_removal.iter() {
|
||
params.remove(index);
|
||
}
|
||
}
|
||
|
||
if params.len() > 0 {
|
||
url.push('?');
|
||
url.push_str(&url::form_urlencoded::serialize(params));
|
||
}
|
||
|
||
|
||
|
||
loop {
|
||
let token = match self.hub.auth.borrow_mut().token(self._scopes.keys()) {
|
||
Ok(token) => token,
|
||
Err(err) => {
|
||
match dlg.token(&*err) {
|
||
Some(token) => token,
|
||
None => {
|
||
dlg.finished(false);
|
||
return Err(Error::MissingToken(err))
|
||
}
|
||
}
|
||
}
|
||
};
|
||
let auth_header = Authorization(oauth2::Scheme { token_type: oauth2::TokenType::Bearer,
|
||
access_token: token.access_token });
|
||
let mut req_result = {
|
||
let mut client = &mut *self.hub.client.borrow_mut();
|
||
let mut req = client.borrow_mut().request(hyper::method::Method::Get, &url)
|
||
.header(UserAgent(self.hub._user_agent.clone()))
|
||
.header(auth_header.clone());
|
||
|
||
dlg.pre_request();
|
||
req.send()
|
||
};
|
||
|
||
match req_result {
|
||
Err(err) => {
|
||
if let oauth2::Retry::After(d) = dlg.http_error(&err) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return Err(Error::HttpError(err))
|
||
}
|
||
Ok(mut res) => {
|
||
if !res.status.is_success() {
|
||
let mut json_err = String::new();
|
||
res.read_to_string(&mut json_err).unwrap();
|
||
if let oauth2::Retry::After(d) = dlg.http_failure(&res,
|
||
json::from_str(&json_err).ok(),
|
||
json::from_str(&json_err).ok()) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return match json::from_str::<ErrorResponse>(&json_err){
|
||
Err(_) => Err(Error::Failure(res)),
|
||
Ok(serr) => Err(Error::BadRequest(serr))
|
||
}
|
||
}
|
||
let result_value = {
|
||
let mut json_response = String::new();
|
||
res.read_to_string(&mut json_response).unwrap();
|
||
match json::from_str(&json_response) {
|
||
Ok(decoded) => (res, decoded),
|
||
Err(err) => {
|
||
dlg.response_json_decode_error(&json_response, &err);
|
||
return Err(Error::JsonDecodeError(json_response, err));
|
||
}
|
||
}
|
||
};
|
||
|
||
dlg.finished(true);
|
||
return Ok(result_value)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
/// The site's URL, including protocol. For example: http://www.example.com/
|
||
///
|
||
/// Sets the *site url* path property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn site_url(mut self, new_value: &str) -> SitemapGetCall<'a, C, A> {
|
||
self._site_url = new_value.to_string();
|
||
self
|
||
}
|
||
/// The URL of the actual sitemap. For example: http://www.example.com/sitemap.xml
|
||
///
|
||
/// Sets the *feedpath* path property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn feedpath(mut self, new_value: &str) -> SitemapGetCall<'a, C, A> {
|
||
self._feedpath = new_value.to_string();
|
||
self
|
||
}
|
||
/// The delegate implementation is consulted whenever there is an intermediate result, or if something goes wrong
|
||
/// while executing the actual API request.
|
||
///
|
||
/// It should be used to handle progress information, and to implement a certain level of resilience.
|
||
///
|
||
/// Sets the *delegate* property to the given value.
|
||
pub fn delegate(mut self, new_value: &'a mut Delegate) -> SitemapGetCall<'a, C, A> {
|
||
self._delegate = Some(new_value);
|
||
self
|
||
}
|
||
|
||
/// Set any additional parameter of the query string used in the request.
|
||
/// It should be used to set parameters which are not yet available through their own
|
||
/// setters.
|
||
///
|
||
/// Please note that this method must not be used to set any of the known paramters
|
||
/// which have their own setter method. If done anyway, the request will fail.
|
||
///
|
||
/// # Additional Parameters
|
||
///
|
||
/// * *quotaUser* (query-string) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.
|
||
/// * *oauth_token* (query-string) - OAuth 2.0 token for the current user.
|
||
/// * *key* (query-string) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
|
||
/// * *prettyPrint* (query-boolean) - Returns response with indentations and line breaks.
|
||
/// * *userIp* (query-string) - IP address of the site where the request originates. Use this if you want to enforce per-user limits.
|
||
/// * *fields* (query-string) - Selector specifying which fields to include in a partial response.
|
||
/// * *alt* (query-string) - Data format for the response.
|
||
pub fn param<T>(mut self, name: T, value: T) -> SitemapGetCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._additional_params.insert(name.as_ref().to_string(), value.as_ref().to_string());
|
||
self
|
||
}
|
||
|
||
/// Identifies the authorization scope for the method you are building.
|
||
///
|
||
/// Use this method to actively specify which scope should be used, instead the default `Scope` variant
|
||
/// `Scope::Readonly`.
|
||
///
|
||
/// The `scope` will be added to a set of scopes. This is important as one can maintain access
|
||
/// tokens for more than one scope.
|
||
///
|
||
/// Usually there is more than one suitable scope to authorize an operation, some of which may
|
||
/// encompass more rights than others. For example, for listing resources, a *read-only* scope will be
|
||
/// sufficient, a read-write scope will do as well.
|
||
pub fn add_scope<T>(mut self, scope: T) -> SitemapGetCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._scopes.insert(scope.as_ref().to_string(), ());
|
||
self
|
||
}
|
||
}
|
||
|
||
|
||
/// Lists the sitemaps-entries submitted for this site, or included in the sitemap index file (if sitemapIndex is specified in the request).
|
||
///
|
||
/// A builder for the *list* method supported by a *sitemap* resource.
|
||
/// It is not used directly, but through a `SitemapMethods` instance.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource method builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// # extern crate hyper;
|
||
/// # extern crate yup_oauth2 as oauth2;
|
||
/// # extern crate google_webmasters3 as webmasters3;
|
||
/// # #[test] fn egal() {
|
||
/// # use std::default::Default;
|
||
/// # use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// # use webmasters3::Webmasters;
|
||
///
|
||
/// # let secret: ApplicationSecret = Default::default();
|
||
/// # let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// # hyper::Client::new(),
|
||
/// # <MemoryStorage as Default>::default(), None);
|
||
/// # let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // You can configure optional parameters by calling the respective setters at will, and
|
||
/// // execute the final call using `doit()`.
|
||
/// // Values shown here are possibly random and not representative !
|
||
/// let result = hub.sitemaps().list("siteUrl")
|
||
/// .sitemap_index("erat")
|
||
/// .doit();
|
||
/// # }
|
||
/// ```
|
||
pub struct SitemapListCall<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
_site_url: String,
|
||
_sitemap_index: Option<String>,
|
||
_delegate: Option<&'a mut Delegate>,
|
||
_additional_params: HashMap<String, String>,
|
||
_scopes: BTreeMap<String, ()>
|
||
}
|
||
|
||
impl<'a, C, A> CallBuilder for SitemapListCall<'a, C, A> {}
|
||
|
||
impl<'a, C, A> SitemapListCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oauth2::GetToken {
|
||
|
||
|
||
/// Perform the operation you have build so far.
|
||
pub fn doit(mut self) -> Result<(hyper::client::Response, SitemapsListResponse)> {
|
||
use std::io::{Read, Seek};
|
||
use hyper::header::{ContentType, ContentLength, Authorization, UserAgent, Location};
|
||
let mut dd = DefaultDelegate;
|
||
let mut dlg: &mut Delegate = match self._delegate {
|
||
Some(d) => d,
|
||
None => &mut dd
|
||
};
|
||
dlg.begin(MethodInfo { id: "webmasters.sitemaps.list",
|
||
http_method: hyper::method::Method::Get });
|
||
let mut params: Vec<(&str, String)> = Vec::with_capacity((4 + self._additional_params.len()));
|
||
params.push(("siteUrl", self._site_url.to_string()));
|
||
if let Some(value) = self._sitemap_index {
|
||
params.push(("sitemapIndex", value.to_string()));
|
||
}
|
||
for &field in ["alt", "siteUrl", "sitemapIndex"].iter() {
|
||
if self._additional_params.contains_key(field) {
|
||
dlg.finished(false);
|
||
return Err(Error::FieldClash(field));
|
||
}
|
||
}
|
||
for (name, value) in self._additional_params.iter() {
|
||
params.push((&name, value.clone()));
|
||
}
|
||
|
||
params.push(("alt", "json".to_string()));
|
||
|
||
let mut url = "https://www.googleapis.com/webmasters/v3/sites/{siteUrl}/sitemaps".to_string();
|
||
if self._scopes.len() == 0 {
|
||
self._scopes.insert(Scope::Readonly.as_ref().to_string(), ());
|
||
}
|
||
|
||
for &(find_this, param_name) in [("{siteUrl}", "siteUrl")].iter() {
|
||
let mut replace_with: Option<&str> = None;
|
||
for &(name, ref value) in params.iter() {
|
||
if name == param_name {
|
||
replace_with = Some(value);
|
||
break;
|
||
}
|
||
}
|
||
url = url.replace(find_this, replace_with.expect("to find substitution value in params"));
|
||
}
|
||
{
|
||
let mut indices_for_removal: Vec<usize> = Vec::with_capacity(1);
|
||
for param_name in ["siteUrl"].iter() {
|
||
if let Some(index) = params.iter().position(|t| &t.0 == param_name) {
|
||
indices_for_removal.push(index);
|
||
}
|
||
}
|
||
for &index in indices_for_removal.iter() {
|
||
params.remove(index);
|
||
}
|
||
}
|
||
|
||
if params.len() > 0 {
|
||
url.push('?');
|
||
url.push_str(&url::form_urlencoded::serialize(params));
|
||
}
|
||
|
||
|
||
|
||
loop {
|
||
let token = match self.hub.auth.borrow_mut().token(self._scopes.keys()) {
|
||
Ok(token) => token,
|
||
Err(err) => {
|
||
match dlg.token(&*err) {
|
||
Some(token) => token,
|
||
None => {
|
||
dlg.finished(false);
|
||
return Err(Error::MissingToken(err))
|
||
}
|
||
}
|
||
}
|
||
};
|
||
let auth_header = Authorization(oauth2::Scheme { token_type: oauth2::TokenType::Bearer,
|
||
access_token: token.access_token });
|
||
let mut req_result = {
|
||
let mut client = &mut *self.hub.client.borrow_mut();
|
||
let mut req = client.borrow_mut().request(hyper::method::Method::Get, &url)
|
||
.header(UserAgent(self.hub._user_agent.clone()))
|
||
.header(auth_header.clone());
|
||
|
||
dlg.pre_request();
|
||
req.send()
|
||
};
|
||
|
||
match req_result {
|
||
Err(err) => {
|
||
if let oauth2::Retry::After(d) = dlg.http_error(&err) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return Err(Error::HttpError(err))
|
||
}
|
||
Ok(mut res) => {
|
||
if !res.status.is_success() {
|
||
let mut json_err = String::new();
|
||
res.read_to_string(&mut json_err).unwrap();
|
||
if let oauth2::Retry::After(d) = dlg.http_failure(&res,
|
||
json::from_str(&json_err).ok(),
|
||
json::from_str(&json_err).ok()) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return match json::from_str::<ErrorResponse>(&json_err){
|
||
Err(_) => Err(Error::Failure(res)),
|
||
Ok(serr) => Err(Error::BadRequest(serr))
|
||
}
|
||
}
|
||
let result_value = {
|
||
let mut json_response = String::new();
|
||
res.read_to_string(&mut json_response).unwrap();
|
||
match json::from_str(&json_response) {
|
||
Ok(decoded) => (res, decoded),
|
||
Err(err) => {
|
||
dlg.response_json_decode_error(&json_response, &err);
|
||
return Err(Error::JsonDecodeError(json_response, err));
|
||
}
|
||
}
|
||
};
|
||
|
||
dlg.finished(true);
|
||
return Ok(result_value)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
/// The site's URL, including protocol. For example: http://www.example.com/
|
||
///
|
||
/// Sets the *site url* path property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn site_url(mut self, new_value: &str) -> SitemapListCall<'a, C, A> {
|
||
self._site_url = new_value.to_string();
|
||
self
|
||
}
|
||
/// A URL of a site's sitemap index. For example: http://www.example.com/sitemapindex.xml
|
||
///
|
||
/// Sets the *sitemap index* query property to the given value.
|
||
pub fn sitemap_index(mut self, new_value: &str) -> SitemapListCall<'a, C, A> {
|
||
self._sitemap_index = Some(new_value.to_string());
|
||
self
|
||
}
|
||
/// The delegate implementation is consulted whenever there is an intermediate result, or if something goes wrong
|
||
/// while executing the actual API request.
|
||
///
|
||
/// It should be used to handle progress information, and to implement a certain level of resilience.
|
||
///
|
||
/// Sets the *delegate* property to the given value.
|
||
pub fn delegate(mut self, new_value: &'a mut Delegate) -> SitemapListCall<'a, C, A> {
|
||
self._delegate = Some(new_value);
|
||
self
|
||
}
|
||
|
||
/// Set any additional parameter of the query string used in the request.
|
||
/// It should be used to set parameters which are not yet available through their own
|
||
/// setters.
|
||
///
|
||
/// Please note that this method must not be used to set any of the known paramters
|
||
/// which have their own setter method. If done anyway, the request will fail.
|
||
///
|
||
/// # Additional Parameters
|
||
///
|
||
/// * *quotaUser* (query-string) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.
|
||
/// * *oauth_token* (query-string) - OAuth 2.0 token for the current user.
|
||
/// * *key* (query-string) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
|
||
/// * *prettyPrint* (query-boolean) - Returns response with indentations and line breaks.
|
||
/// * *userIp* (query-string) - IP address of the site where the request originates. Use this if you want to enforce per-user limits.
|
||
/// * *fields* (query-string) - Selector specifying which fields to include in a partial response.
|
||
/// * *alt* (query-string) - Data format for the response.
|
||
pub fn param<T>(mut self, name: T, value: T) -> SitemapListCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._additional_params.insert(name.as_ref().to_string(), value.as_ref().to_string());
|
||
self
|
||
}
|
||
|
||
/// Identifies the authorization scope for the method you are building.
|
||
///
|
||
/// Use this method to actively specify which scope should be used, instead the default `Scope` variant
|
||
/// `Scope::Readonly`.
|
||
///
|
||
/// The `scope` will be added to a set of scopes. This is important as one can maintain access
|
||
/// tokens for more than one scope.
|
||
///
|
||
/// Usually there is more than one suitable scope to authorize an operation, some of which may
|
||
/// encompass more rights than others. For example, for listing resources, a *read-only* scope will be
|
||
/// sufficient, a read-write scope will do as well.
|
||
pub fn add_scope<T>(mut self, scope: T) -> SitemapListCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._scopes.insert(scope.as_ref().to_string(), ());
|
||
self
|
||
}
|
||
}
|
||
|
||
|
||
/// Retrieves information about specific site.
|
||
///
|
||
/// A builder for the *get* method supported by a *site* resource.
|
||
/// It is not used directly, but through a `SiteMethods` instance.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource method builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// # extern crate hyper;
|
||
/// # extern crate yup_oauth2 as oauth2;
|
||
/// # extern crate google_webmasters3 as webmasters3;
|
||
/// # #[test] fn egal() {
|
||
/// # use std::default::Default;
|
||
/// # use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// # use webmasters3::Webmasters;
|
||
///
|
||
/// # let secret: ApplicationSecret = Default::default();
|
||
/// # let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// # hyper::Client::new(),
|
||
/// # <MemoryStorage as Default>::default(), None);
|
||
/// # let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // You can configure optional parameters by calling the respective setters at will, and
|
||
/// // execute the final call using `doit()`.
|
||
/// // Values shown here are possibly random and not representative !
|
||
/// let result = hub.sites().get("siteUrl")
|
||
/// .doit();
|
||
/// # }
|
||
/// ```
|
||
pub struct SiteGetCall<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
_site_url: String,
|
||
_delegate: Option<&'a mut Delegate>,
|
||
_additional_params: HashMap<String, String>,
|
||
_scopes: BTreeMap<String, ()>
|
||
}
|
||
|
||
impl<'a, C, A> CallBuilder for SiteGetCall<'a, C, A> {}
|
||
|
||
impl<'a, C, A> SiteGetCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oauth2::GetToken {
|
||
|
||
|
||
/// Perform the operation you have build so far.
|
||
pub fn doit(mut self) -> Result<(hyper::client::Response, WmxSite)> {
|
||
use std::io::{Read, Seek};
|
||
use hyper::header::{ContentType, ContentLength, Authorization, UserAgent, Location};
|
||
let mut dd = DefaultDelegate;
|
||
let mut dlg: &mut Delegate = match self._delegate {
|
||
Some(d) => d,
|
||
None => &mut dd
|
||
};
|
||
dlg.begin(MethodInfo { id: "webmasters.sites.get",
|
||
http_method: hyper::method::Method::Get });
|
||
let mut params: Vec<(&str, String)> = Vec::with_capacity((3 + self._additional_params.len()));
|
||
params.push(("siteUrl", self._site_url.to_string()));
|
||
for &field in ["alt", "siteUrl"].iter() {
|
||
if self._additional_params.contains_key(field) {
|
||
dlg.finished(false);
|
||
return Err(Error::FieldClash(field));
|
||
}
|
||
}
|
||
for (name, value) in self._additional_params.iter() {
|
||
params.push((&name, value.clone()));
|
||
}
|
||
|
||
params.push(("alt", "json".to_string()));
|
||
|
||
let mut url = "https://www.googleapis.com/webmasters/v3/sites/{siteUrl}".to_string();
|
||
if self._scopes.len() == 0 {
|
||
self._scopes.insert(Scope::Readonly.as_ref().to_string(), ());
|
||
}
|
||
|
||
for &(find_this, param_name) in [("{siteUrl}", "siteUrl")].iter() {
|
||
let mut replace_with: Option<&str> = None;
|
||
for &(name, ref value) in params.iter() {
|
||
if name == param_name {
|
||
replace_with = Some(value);
|
||
break;
|
||
}
|
||
}
|
||
url = url.replace(find_this, replace_with.expect("to find substitution value in params"));
|
||
}
|
||
{
|
||
let mut indices_for_removal: Vec<usize> = Vec::with_capacity(1);
|
||
for param_name in ["siteUrl"].iter() {
|
||
if let Some(index) = params.iter().position(|t| &t.0 == param_name) {
|
||
indices_for_removal.push(index);
|
||
}
|
||
}
|
||
for &index in indices_for_removal.iter() {
|
||
params.remove(index);
|
||
}
|
||
}
|
||
|
||
if params.len() > 0 {
|
||
url.push('?');
|
||
url.push_str(&url::form_urlencoded::serialize(params));
|
||
}
|
||
|
||
|
||
|
||
loop {
|
||
let token = match self.hub.auth.borrow_mut().token(self._scopes.keys()) {
|
||
Ok(token) => token,
|
||
Err(err) => {
|
||
match dlg.token(&*err) {
|
||
Some(token) => token,
|
||
None => {
|
||
dlg.finished(false);
|
||
return Err(Error::MissingToken(err))
|
||
}
|
||
}
|
||
}
|
||
};
|
||
let auth_header = Authorization(oauth2::Scheme { token_type: oauth2::TokenType::Bearer,
|
||
access_token: token.access_token });
|
||
let mut req_result = {
|
||
let mut client = &mut *self.hub.client.borrow_mut();
|
||
let mut req = client.borrow_mut().request(hyper::method::Method::Get, &url)
|
||
.header(UserAgent(self.hub._user_agent.clone()))
|
||
.header(auth_header.clone());
|
||
|
||
dlg.pre_request();
|
||
req.send()
|
||
};
|
||
|
||
match req_result {
|
||
Err(err) => {
|
||
if let oauth2::Retry::After(d) = dlg.http_error(&err) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return Err(Error::HttpError(err))
|
||
}
|
||
Ok(mut res) => {
|
||
if !res.status.is_success() {
|
||
let mut json_err = String::new();
|
||
res.read_to_string(&mut json_err).unwrap();
|
||
if let oauth2::Retry::After(d) = dlg.http_failure(&res,
|
||
json::from_str(&json_err).ok(),
|
||
json::from_str(&json_err).ok()) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return match json::from_str::<ErrorResponse>(&json_err){
|
||
Err(_) => Err(Error::Failure(res)),
|
||
Ok(serr) => Err(Error::BadRequest(serr))
|
||
}
|
||
}
|
||
let result_value = {
|
||
let mut json_response = String::new();
|
||
res.read_to_string(&mut json_response).unwrap();
|
||
match json::from_str(&json_response) {
|
||
Ok(decoded) => (res, decoded),
|
||
Err(err) => {
|
||
dlg.response_json_decode_error(&json_response, &err);
|
||
return Err(Error::JsonDecodeError(json_response, err));
|
||
}
|
||
}
|
||
};
|
||
|
||
dlg.finished(true);
|
||
return Ok(result_value)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
/// The URI of the property as defined in Search Console. Examples: http://www.example.com/ or android-app://com.example/
|
||
///
|
||
/// Sets the *site url* path property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn site_url(mut self, new_value: &str) -> SiteGetCall<'a, C, A> {
|
||
self._site_url = new_value.to_string();
|
||
self
|
||
}
|
||
/// The delegate implementation is consulted whenever there is an intermediate result, or if something goes wrong
|
||
/// while executing the actual API request.
|
||
///
|
||
/// It should be used to handle progress information, and to implement a certain level of resilience.
|
||
///
|
||
/// Sets the *delegate* property to the given value.
|
||
pub fn delegate(mut self, new_value: &'a mut Delegate) -> SiteGetCall<'a, C, A> {
|
||
self._delegate = Some(new_value);
|
||
self
|
||
}
|
||
|
||
/// Set any additional parameter of the query string used in the request.
|
||
/// It should be used to set parameters which are not yet available through their own
|
||
/// setters.
|
||
///
|
||
/// Please note that this method must not be used to set any of the known paramters
|
||
/// which have their own setter method. If done anyway, the request will fail.
|
||
///
|
||
/// # Additional Parameters
|
||
///
|
||
/// * *quotaUser* (query-string) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.
|
||
/// * *oauth_token* (query-string) - OAuth 2.0 token for the current user.
|
||
/// * *key* (query-string) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
|
||
/// * *prettyPrint* (query-boolean) - Returns response with indentations and line breaks.
|
||
/// * *userIp* (query-string) - IP address of the site where the request originates. Use this if you want to enforce per-user limits.
|
||
/// * *fields* (query-string) - Selector specifying which fields to include in a partial response.
|
||
/// * *alt* (query-string) - Data format for the response.
|
||
pub fn param<T>(mut self, name: T, value: T) -> SiteGetCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._additional_params.insert(name.as_ref().to_string(), value.as_ref().to_string());
|
||
self
|
||
}
|
||
|
||
/// Identifies the authorization scope for the method you are building.
|
||
///
|
||
/// Use this method to actively specify which scope should be used, instead the default `Scope` variant
|
||
/// `Scope::Readonly`.
|
||
///
|
||
/// The `scope` will be added to a set of scopes. This is important as one can maintain access
|
||
/// tokens for more than one scope.
|
||
///
|
||
/// Usually there is more than one suitable scope to authorize an operation, some of which may
|
||
/// encompass more rights than others. For example, for listing resources, a *read-only* scope will be
|
||
/// sufficient, a read-write scope will do as well.
|
||
pub fn add_scope<T>(mut self, scope: T) -> SiteGetCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._scopes.insert(scope.as_ref().to_string(), ());
|
||
self
|
||
}
|
||
}
|
||
|
||
|
||
/// Adds a site to the set of the user's sites in Search Console.
|
||
///
|
||
/// A builder for the *add* method supported by a *site* resource.
|
||
/// It is not used directly, but through a `SiteMethods` instance.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource method builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// # extern crate hyper;
|
||
/// # extern crate yup_oauth2 as oauth2;
|
||
/// # extern crate google_webmasters3 as webmasters3;
|
||
/// # #[test] fn egal() {
|
||
/// # use std::default::Default;
|
||
/// # use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// # use webmasters3::Webmasters;
|
||
///
|
||
/// # let secret: ApplicationSecret = Default::default();
|
||
/// # let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// # hyper::Client::new(),
|
||
/// # <MemoryStorage as Default>::default(), None);
|
||
/// # let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // You can configure optional parameters by calling the respective setters at will, and
|
||
/// // execute the final call using `doit()`.
|
||
/// // Values shown here are possibly random and not representative !
|
||
/// let result = hub.sites().add("siteUrl")
|
||
/// .doit();
|
||
/// # }
|
||
/// ```
|
||
pub struct SiteAddCall<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
_site_url: String,
|
||
_delegate: Option<&'a mut Delegate>,
|
||
_additional_params: HashMap<String, String>,
|
||
_scopes: BTreeMap<String, ()>
|
||
}
|
||
|
||
impl<'a, C, A> CallBuilder for SiteAddCall<'a, C, A> {}
|
||
|
||
impl<'a, C, A> SiteAddCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oauth2::GetToken {
|
||
|
||
|
||
/// Perform the operation you have build so far.
|
||
pub fn doit(mut self) -> Result<hyper::client::Response> {
|
||
use std::io::{Read, Seek};
|
||
use hyper::header::{ContentType, ContentLength, Authorization, UserAgent, Location};
|
||
let mut dd = DefaultDelegate;
|
||
let mut dlg: &mut Delegate = match self._delegate {
|
||
Some(d) => d,
|
||
None => &mut dd
|
||
};
|
||
dlg.begin(MethodInfo { id: "webmasters.sites.add",
|
||
http_method: hyper::method::Method::Put });
|
||
let mut params: Vec<(&str, String)> = Vec::with_capacity((2 + self._additional_params.len()));
|
||
params.push(("siteUrl", self._site_url.to_string()));
|
||
for &field in ["siteUrl"].iter() {
|
||
if self._additional_params.contains_key(field) {
|
||
dlg.finished(false);
|
||
return Err(Error::FieldClash(field));
|
||
}
|
||
}
|
||
for (name, value) in self._additional_params.iter() {
|
||
params.push((&name, value.clone()));
|
||
}
|
||
|
||
|
||
let mut url = "https://www.googleapis.com/webmasters/v3/sites/{siteUrl}".to_string();
|
||
if self._scopes.len() == 0 {
|
||
self._scopes.insert(Scope::Full.as_ref().to_string(), ());
|
||
}
|
||
|
||
for &(find_this, param_name) in [("{siteUrl}", "siteUrl")].iter() {
|
||
let mut replace_with: Option<&str> = None;
|
||
for &(name, ref value) in params.iter() {
|
||
if name == param_name {
|
||
replace_with = Some(value);
|
||
break;
|
||
}
|
||
}
|
||
url = url.replace(find_this, replace_with.expect("to find substitution value in params"));
|
||
}
|
||
{
|
||
let mut indices_for_removal: Vec<usize> = Vec::with_capacity(1);
|
||
for param_name in ["siteUrl"].iter() {
|
||
if let Some(index) = params.iter().position(|t| &t.0 == param_name) {
|
||
indices_for_removal.push(index);
|
||
}
|
||
}
|
||
for &index in indices_for_removal.iter() {
|
||
params.remove(index);
|
||
}
|
||
}
|
||
|
||
if params.len() > 0 {
|
||
url.push('?');
|
||
url.push_str(&url::form_urlencoded::serialize(params));
|
||
}
|
||
|
||
|
||
|
||
loop {
|
||
let token = match self.hub.auth.borrow_mut().token(self._scopes.keys()) {
|
||
Ok(token) => token,
|
||
Err(err) => {
|
||
match dlg.token(&*err) {
|
||
Some(token) => token,
|
||
None => {
|
||
dlg.finished(false);
|
||
return Err(Error::MissingToken(err))
|
||
}
|
||
}
|
||
}
|
||
};
|
||
let auth_header = Authorization(oauth2::Scheme { token_type: oauth2::TokenType::Bearer,
|
||
access_token: token.access_token });
|
||
let mut req_result = {
|
||
let mut client = &mut *self.hub.client.borrow_mut();
|
||
let mut req = client.borrow_mut().request(hyper::method::Method::Put, &url)
|
||
.header(UserAgent(self.hub._user_agent.clone()))
|
||
.header(auth_header.clone());
|
||
|
||
dlg.pre_request();
|
||
req.send()
|
||
};
|
||
|
||
match req_result {
|
||
Err(err) => {
|
||
if let oauth2::Retry::After(d) = dlg.http_error(&err) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return Err(Error::HttpError(err))
|
||
}
|
||
Ok(mut res) => {
|
||
if !res.status.is_success() {
|
||
let mut json_err = String::new();
|
||
res.read_to_string(&mut json_err).unwrap();
|
||
if let oauth2::Retry::After(d) = dlg.http_failure(&res,
|
||
json::from_str(&json_err).ok(),
|
||
json::from_str(&json_err).ok()) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return match json::from_str::<ErrorResponse>(&json_err){
|
||
Err(_) => Err(Error::Failure(res)),
|
||
Ok(serr) => Err(Error::BadRequest(serr))
|
||
}
|
||
}
|
||
let result_value = res;
|
||
|
||
dlg.finished(true);
|
||
return Ok(result_value)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
/// The URL of the site to add.
|
||
///
|
||
/// Sets the *site url* path property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn site_url(mut self, new_value: &str) -> SiteAddCall<'a, C, A> {
|
||
self._site_url = new_value.to_string();
|
||
self
|
||
}
|
||
/// The delegate implementation is consulted whenever there is an intermediate result, or if something goes wrong
|
||
/// while executing the actual API request.
|
||
///
|
||
/// It should be used to handle progress information, and to implement a certain level of resilience.
|
||
///
|
||
/// Sets the *delegate* property to the given value.
|
||
pub fn delegate(mut self, new_value: &'a mut Delegate) -> SiteAddCall<'a, C, A> {
|
||
self._delegate = Some(new_value);
|
||
self
|
||
}
|
||
|
||
/// Set any additional parameter of the query string used in the request.
|
||
/// It should be used to set parameters which are not yet available through their own
|
||
/// setters.
|
||
///
|
||
/// Please note that this method must not be used to set any of the known paramters
|
||
/// which have their own setter method. If done anyway, the request will fail.
|
||
///
|
||
/// # Additional Parameters
|
||
///
|
||
/// * *quotaUser* (query-string) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.
|
||
/// * *oauth_token* (query-string) - OAuth 2.0 token for the current user.
|
||
/// * *key* (query-string) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
|
||
/// * *prettyPrint* (query-boolean) - Returns response with indentations and line breaks.
|
||
/// * *userIp* (query-string) - IP address of the site where the request originates. Use this if you want to enforce per-user limits.
|
||
/// * *fields* (query-string) - Selector specifying which fields to include in a partial response.
|
||
/// * *alt* (query-string) - Data format for the response.
|
||
pub fn param<T>(mut self, name: T, value: T) -> SiteAddCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._additional_params.insert(name.as_ref().to_string(), value.as_ref().to_string());
|
||
self
|
||
}
|
||
|
||
/// Identifies the authorization scope for the method you are building.
|
||
///
|
||
/// Use this method to actively specify which scope should be used, instead the default `Scope` variant
|
||
/// `Scope::Full`.
|
||
///
|
||
/// The `scope` will be added to a set of scopes. This is important as one can maintain access
|
||
/// tokens for more than one scope.
|
||
///
|
||
/// Usually there is more than one suitable scope to authorize an operation, some of which may
|
||
/// encompass more rights than others. For example, for listing resources, a *read-only* scope will be
|
||
/// sufficient, a read-write scope will do as well.
|
||
pub fn add_scope<T>(mut self, scope: T) -> SiteAddCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._scopes.insert(scope.as_ref().to_string(), ());
|
||
self
|
||
}
|
||
}
|
||
|
||
|
||
/// Lists the user's Search Console sites.
|
||
///
|
||
/// A builder for the *list* method supported by a *site* resource.
|
||
/// It is not used directly, but through a `SiteMethods` instance.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource method builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// # extern crate hyper;
|
||
/// # extern crate yup_oauth2 as oauth2;
|
||
/// # extern crate google_webmasters3 as webmasters3;
|
||
/// # #[test] fn egal() {
|
||
/// # use std::default::Default;
|
||
/// # use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// # use webmasters3::Webmasters;
|
||
///
|
||
/// # let secret: ApplicationSecret = Default::default();
|
||
/// # let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// # hyper::Client::new(),
|
||
/// # <MemoryStorage as Default>::default(), None);
|
||
/// # let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // You can configure optional parameters by calling the respective setters at will, and
|
||
/// // execute the final call using `doit()`.
|
||
/// // Values shown here are possibly random and not representative !
|
||
/// let result = hub.sites().list()
|
||
/// .doit();
|
||
/// # }
|
||
/// ```
|
||
pub struct SiteListCall<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
_delegate: Option<&'a mut Delegate>,
|
||
_additional_params: HashMap<String, String>,
|
||
_scopes: BTreeMap<String, ()>
|
||
}
|
||
|
||
impl<'a, C, A> CallBuilder for SiteListCall<'a, C, A> {}
|
||
|
||
impl<'a, C, A> SiteListCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oauth2::GetToken {
|
||
|
||
|
||
/// Perform the operation you have build so far.
|
||
pub fn doit(mut self) -> Result<(hyper::client::Response, SitesListResponse)> {
|
||
use std::io::{Read, Seek};
|
||
use hyper::header::{ContentType, ContentLength, Authorization, UserAgent, Location};
|
||
let mut dd = DefaultDelegate;
|
||
let mut dlg: &mut Delegate = match self._delegate {
|
||
Some(d) => d,
|
||
None => &mut dd
|
||
};
|
||
dlg.begin(MethodInfo { id: "webmasters.sites.list",
|
||
http_method: hyper::method::Method::Get });
|
||
let mut params: Vec<(&str, String)> = Vec::with_capacity((2 + self._additional_params.len()));
|
||
for &field in ["alt"].iter() {
|
||
if self._additional_params.contains_key(field) {
|
||
dlg.finished(false);
|
||
return Err(Error::FieldClash(field));
|
||
}
|
||
}
|
||
for (name, value) in self._additional_params.iter() {
|
||
params.push((&name, value.clone()));
|
||
}
|
||
|
||
params.push(("alt", "json".to_string()));
|
||
|
||
let mut url = "https://www.googleapis.com/webmasters/v3/sites".to_string();
|
||
if self._scopes.len() == 0 {
|
||
self._scopes.insert(Scope::Readonly.as_ref().to_string(), ());
|
||
}
|
||
|
||
|
||
if params.len() > 0 {
|
||
url.push('?');
|
||
url.push_str(&url::form_urlencoded::serialize(params));
|
||
}
|
||
|
||
|
||
|
||
loop {
|
||
let token = match self.hub.auth.borrow_mut().token(self._scopes.keys()) {
|
||
Ok(token) => token,
|
||
Err(err) => {
|
||
match dlg.token(&*err) {
|
||
Some(token) => token,
|
||
None => {
|
||
dlg.finished(false);
|
||
return Err(Error::MissingToken(err))
|
||
}
|
||
}
|
||
}
|
||
};
|
||
let auth_header = Authorization(oauth2::Scheme { token_type: oauth2::TokenType::Bearer,
|
||
access_token: token.access_token });
|
||
let mut req_result = {
|
||
let mut client = &mut *self.hub.client.borrow_mut();
|
||
let mut req = client.borrow_mut().request(hyper::method::Method::Get, &url)
|
||
.header(UserAgent(self.hub._user_agent.clone()))
|
||
.header(auth_header.clone());
|
||
|
||
dlg.pre_request();
|
||
req.send()
|
||
};
|
||
|
||
match req_result {
|
||
Err(err) => {
|
||
if let oauth2::Retry::After(d) = dlg.http_error(&err) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return Err(Error::HttpError(err))
|
||
}
|
||
Ok(mut res) => {
|
||
if !res.status.is_success() {
|
||
let mut json_err = String::new();
|
||
res.read_to_string(&mut json_err).unwrap();
|
||
if let oauth2::Retry::After(d) = dlg.http_failure(&res,
|
||
json::from_str(&json_err).ok(),
|
||
json::from_str(&json_err).ok()) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return match json::from_str::<ErrorResponse>(&json_err){
|
||
Err(_) => Err(Error::Failure(res)),
|
||
Ok(serr) => Err(Error::BadRequest(serr))
|
||
}
|
||
}
|
||
let result_value = {
|
||
let mut json_response = String::new();
|
||
res.read_to_string(&mut json_response).unwrap();
|
||
match json::from_str(&json_response) {
|
||
Ok(decoded) => (res, decoded),
|
||
Err(err) => {
|
||
dlg.response_json_decode_error(&json_response, &err);
|
||
return Err(Error::JsonDecodeError(json_response, err));
|
||
}
|
||
}
|
||
};
|
||
|
||
dlg.finished(true);
|
||
return Ok(result_value)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
/// The delegate implementation is consulted whenever there is an intermediate result, or if something goes wrong
|
||
/// while executing the actual API request.
|
||
///
|
||
/// It should be used to handle progress information, and to implement a certain level of resilience.
|
||
///
|
||
/// Sets the *delegate* property to the given value.
|
||
pub fn delegate(mut self, new_value: &'a mut Delegate) -> SiteListCall<'a, C, A> {
|
||
self._delegate = Some(new_value);
|
||
self
|
||
}
|
||
|
||
/// Set any additional parameter of the query string used in the request.
|
||
/// It should be used to set parameters which are not yet available through their own
|
||
/// setters.
|
||
///
|
||
/// Please note that this method must not be used to set any of the known paramters
|
||
/// which have their own setter method. If done anyway, the request will fail.
|
||
///
|
||
/// # Additional Parameters
|
||
///
|
||
/// * *quotaUser* (query-string) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.
|
||
/// * *oauth_token* (query-string) - OAuth 2.0 token for the current user.
|
||
/// * *key* (query-string) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
|
||
/// * *prettyPrint* (query-boolean) - Returns response with indentations and line breaks.
|
||
/// * *userIp* (query-string) - IP address of the site where the request originates. Use this if you want to enforce per-user limits.
|
||
/// * *fields* (query-string) - Selector specifying which fields to include in a partial response.
|
||
/// * *alt* (query-string) - Data format for the response.
|
||
pub fn param<T>(mut self, name: T, value: T) -> SiteListCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._additional_params.insert(name.as_ref().to_string(), value.as_ref().to_string());
|
||
self
|
||
}
|
||
|
||
/// Identifies the authorization scope for the method you are building.
|
||
///
|
||
/// Use this method to actively specify which scope should be used, instead the default `Scope` variant
|
||
/// `Scope::Readonly`.
|
||
///
|
||
/// The `scope` will be added to a set of scopes. This is important as one can maintain access
|
||
/// tokens for more than one scope.
|
||
///
|
||
/// Usually there is more than one suitable scope to authorize an operation, some of which may
|
||
/// encompass more rights than others. For example, for listing resources, a *read-only* scope will be
|
||
/// sufficient, a read-write scope will do as well.
|
||
pub fn add_scope<T>(mut self, scope: T) -> SiteListCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._scopes.insert(scope.as_ref().to_string(), ());
|
||
self
|
||
}
|
||
}
|
||
|
||
|
||
/// Removes a site from the set of the user's Search Console sites.
|
||
///
|
||
/// A builder for the *delete* method supported by a *site* resource.
|
||
/// It is not used directly, but through a `SiteMethods` instance.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource method builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// # extern crate hyper;
|
||
/// # extern crate yup_oauth2 as oauth2;
|
||
/// # extern crate google_webmasters3 as webmasters3;
|
||
/// # #[test] fn egal() {
|
||
/// # use std::default::Default;
|
||
/// # use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// # use webmasters3::Webmasters;
|
||
///
|
||
/// # let secret: ApplicationSecret = Default::default();
|
||
/// # let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// # hyper::Client::new(),
|
||
/// # <MemoryStorage as Default>::default(), None);
|
||
/// # let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // You can configure optional parameters by calling the respective setters at will, and
|
||
/// // execute the final call using `doit()`.
|
||
/// // Values shown here are possibly random and not representative !
|
||
/// let result = hub.sites().delete("siteUrl")
|
||
/// .doit();
|
||
/// # }
|
||
/// ```
|
||
pub struct SiteDeleteCall<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
_site_url: String,
|
||
_delegate: Option<&'a mut Delegate>,
|
||
_additional_params: HashMap<String, String>,
|
||
_scopes: BTreeMap<String, ()>
|
||
}
|
||
|
||
impl<'a, C, A> CallBuilder for SiteDeleteCall<'a, C, A> {}
|
||
|
||
impl<'a, C, A> SiteDeleteCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oauth2::GetToken {
|
||
|
||
|
||
/// Perform the operation you have build so far.
|
||
pub fn doit(mut self) -> Result<hyper::client::Response> {
|
||
use std::io::{Read, Seek};
|
||
use hyper::header::{ContentType, ContentLength, Authorization, UserAgent, Location};
|
||
let mut dd = DefaultDelegate;
|
||
let mut dlg: &mut Delegate = match self._delegate {
|
||
Some(d) => d,
|
||
None => &mut dd
|
||
};
|
||
dlg.begin(MethodInfo { id: "webmasters.sites.delete",
|
||
http_method: hyper::method::Method::Delete });
|
||
let mut params: Vec<(&str, String)> = Vec::with_capacity((2 + self._additional_params.len()));
|
||
params.push(("siteUrl", self._site_url.to_string()));
|
||
for &field in ["siteUrl"].iter() {
|
||
if self._additional_params.contains_key(field) {
|
||
dlg.finished(false);
|
||
return Err(Error::FieldClash(field));
|
||
}
|
||
}
|
||
for (name, value) in self._additional_params.iter() {
|
||
params.push((&name, value.clone()));
|
||
}
|
||
|
||
|
||
let mut url = "https://www.googleapis.com/webmasters/v3/sites/{siteUrl}".to_string();
|
||
if self._scopes.len() == 0 {
|
||
self._scopes.insert(Scope::Full.as_ref().to_string(), ());
|
||
}
|
||
|
||
for &(find_this, param_name) in [("{siteUrl}", "siteUrl")].iter() {
|
||
let mut replace_with: Option<&str> = None;
|
||
for &(name, ref value) in params.iter() {
|
||
if name == param_name {
|
||
replace_with = Some(value);
|
||
break;
|
||
}
|
||
}
|
||
url = url.replace(find_this, replace_with.expect("to find substitution value in params"));
|
||
}
|
||
{
|
||
let mut indices_for_removal: Vec<usize> = Vec::with_capacity(1);
|
||
for param_name in ["siteUrl"].iter() {
|
||
if let Some(index) = params.iter().position(|t| &t.0 == param_name) {
|
||
indices_for_removal.push(index);
|
||
}
|
||
}
|
||
for &index in indices_for_removal.iter() {
|
||
params.remove(index);
|
||
}
|
||
}
|
||
|
||
if params.len() > 0 {
|
||
url.push('?');
|
||
url.push_str(&url::form_urlencoded::serialize(params));
|
||
}
|
||
|
||
|
||
|
||
loop {
|
||
let token = match self.hub.auth.borrow_mut().token(self._scopes.keys()) {
|
||
Ok(token) => token,
|
||
Err(err) => {
|
||
match dlg.token(&*err) {
|
||
Some(token) => token,
|
||
None => {
|
||
dlg.finished(false);
|
||
return Err(Error::MissingToken(err))
|
||
}
|
||
}
|
||
}
|
||
};
|
||
let auth_header = Authorization(oauth2::Scheme { token_type: oauth2::TokenType::Bearer,
|
||
access_token: token.access_token });
|
||
let mut req_result = {
|
||
let mut client = &mut *self.hub.client.borrow_mut();
|
||
let mut req = client.borrow_mut().request(hyper::method::Method::Delete, &url)
|
||
.header(UserAgent(self.hub._user_agent.clone()))
|
||
.header(auth_header.clone());
|
||
|
||
dlg.pre_request();
|
||
req.send()
|
||
};
|
||
|
||
match req_result {
|
||
Err(err) => {
|
||
if let oauth2::Retry::After(d) = dlg.http_error(&err) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return Err(Error::HttpError(err))
|
||
}
|
||
Ok(mut res) => {
|
||
if !res.status.is_success() {
|
||
let mut json_err = String::new();
|
||
res.read_to_string(&mut json_err).unwrap();
|
||
if let oauth2::Retry::After(d) = dlg.http_failure(&res,
|
||
json::from_str(&json_err).ok(),
|
||
json::from_str(&json_err).ok()) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return match json::from_str::<ErrorResponse>(&json_err){
|
||
Err(_) => Err(Error::Failure(res)),
|
||
Ok(serr) => Err(Error::BadRequest(serr))
|
||
}
|
||
}
|
||
let result_value = res;
|
||
|
||
dlg.finished(true);
|
||
return Ok(result_value)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
/// The URI of the property as defined in Search Console. Examples: http://www.example.com/ or android-app://com.example/
|
||
///
|
||
/// Sets the *site url* path property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn site_url(mut self, new_value: &str) -> SiteDeleteCall<'a, C, A> {
|
||
self._site_url = new_value.to_string();
|
||
self
|
||
}
|
||
/// The delegate implementation is consulted whenever there is an intermediate result, or if something goes wrong
|
||
/// while executing the actual API request.
|
||
///
|
||
/// It should be used to handle progress information, and to implement a certain level of resilience.
|
||
///
|
||
/// Sets the *delegate* property to the given value.
|
||
pub fn delegate(mut self, new_value: &'a mut Delegate) -> SiteDeleteCall<'a, C, A> {
|
||
self._delegate = Some(new_value);
|
||
self
|
||
}
|
||
|
||
/// Set any additional parameter of the query string used in the request.
|
||
/// It should be used to set parameters which are not yet available through their own
|
||
/// setters.
|
||
///
|
||
/// Please note that this method must not be used to set any of the known paramters
|
||
/// which have their own setter method. If done anyway, the request will fail.
|
||
///
|
||
/// # Additional Parameters
|
||
///
|
||
/// * *quotaUser* (query-string) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.
|
||
/// * *oauth_token* (query-string) - OAuth 2.0 token for the current user.
|
||
/// * *key* (query-string) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
|
||
/// * *prettyPrint* (query-boolean) - Returns response with indentations and line breaks.
|
||
/// * *userIp* (query-string) - IP address of the site where the request originates. Use this if you want to enforce per-user limits.
|
||
/// * *fields* (query-string) - Selector specifying which fields to include in a partial response.
|
||
/// * *alt* (query-string) - Data format for the response.
|
||
pub fn param<T>(mut self, name: T, value: T) -> SiteDeleteCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._additional_params.insert(name.as_ref().to_string(), value.as_ref().to_string());
|
||
self
|
||
}
|
||
|
||
/// Identifies the authorization scope for the method you are building.
|
||
///
|
||
/// Use this method to actively specify which scope should be used, instead the default `Scope` variant
|
||
/// `Scope::Full`.
|
||
///
|
||
/// The `scope` will be added to a set of scopes. This is important as one can maintain access
|
||
/// tokens for more than one scope.
|
||
///
|
||
/// Usually there is more than one suitable scope to authorize an operation, some of which may
|
||
/// encompass more rights than others. For example, for listing resources, a *read-only* scope will be
|
||
/// sufficient, a read-write scope will do as well.
|
||
pub fn add_scope<T>(mut self, scope: T) -> SiteDeleteCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._scopes.insert(scope.as_ref().to_string(), ());
|
||
self
|
||
}
|
||
}
|
||
|
||
|
||
/// Query your data with filters and parameters that you define. Returns zero or more rows grouped by the row keys that you define. You must define a date range of one or more days.
|
||
///
|
||
/// When date is one of the group by values, any days without data are omitted from the result list. If you need to know which days have data, issue a broad date range query grouped by date for any metric, and see which day rows are returned.
|
||
///
|
||
/// A builder for the *query* method supported by a *searchanalytic* resource.
|
||
/// It is not used directly, but through a `SearchanalyticMethods` instance.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource method builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// # extern crate hyper;
|
||
/// # extern crate yup_oauth2 as oauth2;
|
||
/// # extern crate google_webmasters3 as webmasters3;
|
||
/// use webmasters3::SearchAnalyticsQueryRequest;
|
||
/// # #[test] fn egal() {
|
||
/// # use std::default::Default;
|
||
/// # use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// # use webmasters3::Webmasters;
|
||
///
|
||
/// # let secret: ApplicationSecret = Default::default();
|
||
/// # let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// # hyper::Client::new(),
|
||
/// # <MemoryStorage as Default>::default(), None);
|
||
/// # let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // As the method needs a request, you would usually fill it with the desired information
|
||
/// // into the respective structure. Some of the parts shown here might not be applicable !
|
||
/// // Values shown here are possibly random and not representative !
|
||
/// let mut req = SearchAnalyticsQueryRequest::default();
|
||
///
|
||
/// // You can configure optional parameters by calling the respective setters at will, and
|
||
/// // execute the final call using `doit()`.
|
||
/// // Values shown here are possibly random and not representative !
|
||
/// let result = hub.searchanalytics().query(req, "siteUrl")
|
||
/// .doit();
|
||
/// # }
|
||
/// ```
|
||
pub struct SearchanalyticQueryCall<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
_request: SearchAnalyticsQueryRequest,
|
||
_site_url: String,
|
||
_delegate: Option<&'a mut Delegate>,
|
||
_additional_params: HashMap<String, String>,
|
||
_scopes: BTreeMap<String, ()>
|
||
}
|
||
|
||
impl<'a, C, A> CallBuilder for SearchanalyticQueryCall<'a, C, A> {}
|
||
|
||
impl<'a, C, A> SearchanalyticQueryCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oauth2::GetToken {
|
||
|
||
|
||
/// Perform the operation you have build so far.
|
||
pub fn doit(mut self) -> Result<(hyper::client::Response, SearchAnalyticsQueryResponse)> {
|
||
use std::io::{Read, Seek};
|
||
use hyper::header::{ContentType, ContentLength, Authorization, UserAgent, Location};
|
||
let mut dd = DefaultDelegate;
|
||
let mut dlg: &mut Delegate = match self._delegate {
|
||
Some(d) => d,
|
||
None => &mut dd
|
||
};
|
||
dlg.begin(MethodInfo { id: "webmasters.searchanalytics.query",
|
||
http_method: hyper::method::Method::Post });
|
||
let mut params: Vec<(&str, String)> = Vec::with_capacity((4 + self._additional_params.len()));
|
||
params.push(("siteUrl", self._site_url.to_string()));
|
||
for &field in ["alt", "siteUrl"].iter() {
|
||
if self._additional_params.contains_key(field) {
|
||
dlg.finished(false);
|
||
return Err(Error::FieldClash(field));
|
||
}
|
||
}
|
||
for (name, value) in self._additional_params.iter() {
|
||
params.push((&name, value.clone()));
|
||
}
|
||
|
||
params.push(("alt", "json".to_string()));
|
||
|
||
let mut url = "https://www.googleapis.com/webmasters/v3/sites/{siteUrl}/searchAnalytics/query".to_string();
|
||
if self._scopes.len() == 0 {
|
||
self._scopes.insert(Scope::Full.as_ref().to_string(), ());
|
||
}
|
||
|
||
for &(find_this, param_name) in [("{siteUrl}", "siteUrl")].iter() {
|
||
let mut replace_with: Option<&str> = None;
|
||
for &(name, ref value) in params.iter() {
|
||
if name == param_name {
|
||
replace_with = Some(value);
|
||
break;
|
||
}
|
||
}
|
||
url = url.replace(find_this, replace_with.expect("to find substitution value in params"));
|
||
}
|
||
{
|
||
let mut indices_for_removal: Vec<usize> = Vec::with_capacity(1);
|
||
for param_name in ["siteUrl"].iter() {
|
||
if let Some(index) = params.iter().position(|t| &t.0 == param_name) {
|
||
indices_for_removal.push(index);
|
||
}
|
||
}
|
||
for &index in indices_for_removal.iter() {
|
||
params.remove(index);
|
||
}
|
||
}
|
||
|
||
if params.len() > 0 {
|
||
url.push('?');
|
||
url.push_str(&url::form_urlencoded::serialize(params));
|
||
}
|
||
|
||
let mut json_mime_type = mime::Mime(mime::TopLevel::Application, mime::SubLevel::Json, Default::default());
|
||
let mut request_value_reader =
|
||
{
|
||
let mut value = json::value::to_value(&self._request);
|
||
remove_json_null_values(&mut value);
|
||
let mut dst = io::Cursor::new(Vec::with_capacity(128));
|
||
json::to_writer(&mut dst, &value).unwrap();
|
||
dst
|
||
};
|
||
let request_size = request_value_reader.seek(io::SeekFrom::End(0)).unwrap();
|
||
request_value_reader.seek(io::SeekFrom::Start(0)).unwrap();
|
||
|
||
|
||
loop {
|
||
let token = match self.hub.auth.borrow_mut().token(self._scopes.keys()) {
|
||
Ok(token) => token,
|
||
Err(err) => {
|
||
match dlg.token(&*err) {
|
||
Some(token) => token,
|
||
None => {
|
||
dlg.finished(false);
|
||
return Err(Error::MissingToken(err))
|
||
}
|
||
}
|
||
}
|
||
};
|
||
let auth_header = Authorization(oauth2::Scheme { token_type: oauth2::TokenType::Bearer,
|
||
access_token: token.access_token });
|
||
request_value_reader.seek(io::SeekFrom::Start(0)).unwrap();
|
||
let mut req_result = {
|
||
let mut client = &mut *self.hub.client.borrow_mut();
|
||
let mut req = client.borrow_mut().request(hyper::method::Method::Post, &url)
|
||
.header(UserAgent(self.hub._user_agent.clone()))
|
||
.header(auth_header.clone())
|
||
.header(ContentType(json_mime_type.clone()))
|
||
.header(ContentLength(request_size as u64))
|
||
.body(&mut request_value_reader);
|
||
|
||
dlg.pre_request();
|
||
req.send()
|
||
};
|
||
|
||
match req_result {
|
||
Err(err) => {
|
||
if let oauth2::Retry::After(d) = dlg.http_error(&err) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return Err(Error::HttpError(err))
|
||
}
|
||
Ok(mut res) => {
|
||
if !res.status.is_success() {
|
||
let mut json_err = String::new();
|
||
res.read_to_string(&mut json_err).unwrap();
|
||
if let oauth2::Retry::After(d) = dlg.http_failure(&res,
|
||
json::from_str(&json_err).ok(),
|
||
json::from_str(&json_err).ok()) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return match json::from_str::<ErrorResponse>(&json_err){
|
||
Err(_) => Err(Error::Failure(res)),
|
||
Ok(serr) => Err(Error::BadRequest(serr))
|
||
}
|
||
}
|
||
let result_value = {
|
||
let mut json_response = String::new();
|
||
res.read_to_string(&mut json_response).unwrap();
|
||
match json::from_str(&json_response) {
|
||
Ok(decoded) => (res, decoded),
|
||
Err(err) => {
|
||
dlg.response_json_decode_error(&json_response, &err);
|
||
return Err(Error::JsonDecodeError(json_response, err));
|
||
}
|
||
}
|
||
};
|
||
|
||
dlg.finished(true);
|
||
return Ok(result_value)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
///
|
||
/// Sets the *request* property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn request(mut self, new_value: SearchAnalyticsQueryRequest) -> SearchanalyticQueryCall<'a, C, A> {
|
||
self._request = new_value;
|
||
self
|
||
}
|
||
/// The site's URL, including protocol. For example: http://www.example.com/
|
||
///
|
||
/// Sets the *site url* path property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn site_url(mut self, new_value: &str) -> SearchanalyticQueryCall<'a, C, A> {
|
||
self._site_url = new_value.to_string();
|
||
self
|
||
}
|
||
/// The delegate implementation is consulted whenever there is an intermediate result, or if something goes wrong
|
||
/// while executing the actual API request.
|
||
///
|
||
/// It should be used to handle progress information, and to implement a certain level of resilience.
|
||
///
|
||
/// Sets the *delegate* property to the given value.
|
||
pub fn delegate(mut self, new_value: &'a mut Delegate) -> SearchanalyticQueryCall<'a, C, A> {
|
||
self._delegate = Some(new_value);
|
||
self
|
||
}
|
||
|
||
/// Set any additional parameter of the query string used in the request.
|
||
/// It should be used to set parameters which are not yet available through their own
|
||
/// setters.
|
||
///
|
||
/// Please note that this method must not be used to set any of the known paramters
|
||
/// which have their own setter method. If done anyway, the request will fail.
|
||
///
|
||
/// # Additional Parameters
|
||
///
|
||
/// * *quotaUser* (query-string) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.
|
||
/// * *oauth_token* (query-string) - OAuth 2.0 token for the current user.
|
||
/// * *key* (query-string) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
|
||
/// * *prettyPrint* (query-boolean) - Returns response with indentations and line breaks.
|
||
/// * *userIp* (query-string) - IP address of the site where the request originates. Use this if you want to enforce per-user limits.
|
||
/// * *fields* (query-string) - Selector specifying which fields to include in a partial response.
|
||
/// * *alt* (query-string) - Data format for the response.
|
||
pub fn param<T>(mut self, name: T, value: T) -> SearchanalyticQueryCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._additional_params.insert(name.as_ref().to_string(), value.as_ref().to_string());
|
||
self
|
||
}
|
||
|
||
/// Identifies the authorization scope for the method you are building.
|
||
///
|
||
/// Use this method to actively specify which scope should be used, instead the default `Scope` variant
|
||
/// `Scope::Full`.
|
||
///
|
||
/// The `scope` will be added to a set of scopes. This is important as one can maintain access
|
||
/// tokens for more than one scope.
|
||
///
|
||
/// Usually there is more than one suitable scope to authorize an operation, some of which may
|
||
/// encompass more rights than others. For example, for listing resources, a *read-only* scope will be
|
||
/// sufficient, a read-write scope will do as well.
|
||
pub fn add_scope<T>(mut self, scope: T) -> SearchanalyticQueryCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._scopes.insert(scope.as_ref().to_string(), ());
|
||
self
|
||
}
|
||
}
|
||
|
||
|
||
/// Retrieves a time series of the number of URL crawl errors per error category and platform.
|
||
///
|
||
/// A builder for the *query* method supported by a *urlcrawlerrorscount* resource.
|
||
/// It is not used directly, but through a `UrlcrawlerrorscountMethods` instance.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource method builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// # extern crate hyper;
|
||
/// # extern crate yup_oauth2 as oauth2;
|
||
/// # extern crate google_webmasters3 as webmasters3;
|
||
/// # #[test] fn egal() {
|
||
/// # use std::default::Default;
|
||
/// # use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// # use webmasters3::Webmasters;
|
||
///
|
||
/// # let secret: ApplicationSecret = Default::default();
|
||
/// # let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// # hyper::Client::new(),
|
||
/// # <MemoryStorage as Default>::default(), None);
|
||
/// # let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // You can configure optional parameters by calling the respective setters at will, and
|
||
/// // execute the final call using `doit()`.
|
||
/// // Values shown here are possibly random and not representative !
|
||
/// let result = hub.urlcrawlerrorscounts().query("siteUrl")
|
||
/// .platform("sadipscing")
|
||
/// .latest_counts_only(true)
|
||
/// .category("ea")
|
||
/// .doit();
|
||
/// # }
|
||
/// ```
|
||
pub struct UrlcrawlerrorscountQueryCall<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
_site_url: String,
|
||
_platform: Option<String>,
|
||
_latest_counts_only: Option<bool>,
|
||
_category: Option<String>,
|
||
_delegate: Option<&'a mut Delegate>,
|
||
_additional_params: HashMap<String, String>,
|
||
_scopes: BTreeMap<String, ()>
|
||
}
|
||
|
||
impl<'a, C, A> CallBuilder for UrlcrawlerrorscountQueryCall<'a, C, A> {}
|
||
|
||
impl<'a, C, A> UrlcrawlerrorscountQueryCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oauth2::GetToken {
|
||
|
||
|
||
/// Perform the operation you have build so far.
|
||
pub fn doit(mut self) -> Result<(hyper::client::Response, UrlCrawlErrorsCountsQueryResponse)> {
|
||
use std::io::{Read, Seek};
|
||
use hyper::header::{ContentType, ContentLength, Authorization, UserAgent, Location};
|
||
let mut dd = DefaultDelegate;
|
||
let mut dlg: &mut Delegate = match self._delegate {
|
||
Some(d) => d,
|
||
None => &mut dd
|
||
};
|
||
dlg.begin(MethodInfo { id: "webmasters.urlcrawlerrorscounts.query",
|
||
http_method: hyper::method::Method::Get });
|
||
let mut params: Vec<(&str, String)> = Vec::with_capacity((6 + self._additional_params.len()));
|
||
params.push(("siteUrl", self._site_url.to_string()));
|
||
if let Some(value) = self._platform {
|
||
params.push(("platform", value.to_string()));
|
||
}
|
||
if let Some(value) = self._latest_counts_only {
|
||
params.push(("latestCountsOnly", value.to_string()));
|
||
}
|
||
if let Some(value) = self._category {
|
||
params.push(("category", value.to_string()));
|
||
}
|
||
for &field in ["alt", "siteUrl", "platform", "latestCountsOnly", "category"].iter() {
|
||
if self._additional_params.contains_key(field) {
|
||
dlg.finished(false);
|
||
return Err(Error::FieldClash(field));
|
||
}
|
||
}
|
||
for (name, value) in self._additional_params.iter() {
|
||
params.push((&name, value.clone()));
|
||
}
|
||
|
||
params.push(("alt", "json".to_string()));
|
||
|
||
let mut url = "https://www.googleapis.com/webmasters/v3/sites/{siteUrl}/urlCrawlErrorsCounts/query".to_string();
|
||
if self._scopes.len() == 0 {
|
||
self._scopes.insert(Scope::Readonly.as_ref().to_string(), ());
|
||
}
|
||
|
||
for &(find_this, param_name) in [("{siteUrl}", "siteUrl")].iter() {
|
||
let mut replace_with: Option<&str> = None;
|
||
for &(name, ref value) in params.iter() {
|
||
if name == param_name {
|
||
replace_with = Some(value);
|
||
break;
|
||
}
|
||
}
|
||
url = url.replace(find_this, replace_with.expect("to find substitution value in params"));
|
||
}
|
||
{
|
||
let mut indices_for_removal: Vec<usize> = Vec::with_capacity(1);
|
||
for param_name in ["siteUrl"].iter() {
|
||
if let Some(index) = params.iter().position(|t| &t.0 == param_name) {
|
||
indices_for_removal.push(index);
|
||
}
|
||
}
|
||
for &index in indices_for_removal.iter() {
|
||
params.remove(index);
|
||
}
|
||
}
|
||
|
||
if params.len() > 0 {
|
||
url.push('?');
|
||
url.push_str(&url::form_urlencoded::serialize(params));
|
||
}
|
||
|
||
|
||
|
||
loop {
|
||
let token = match self.hub.auth.borrow_mut().token(self._scopes.keys()) {
|
||
Ok(token) => token,
|
||
Err(err) => {
|
||
match dlg.token(&*err) {
|
||
Some(token) => token,
|
||
None => {
|
||
dlg.finished(false);
|
||
return Err(Error::MissingToken(err))
|
||
}
|
||
}
|
||
}
|
||
};
|
||
let auth_header = Authorization(oauth2::Scheme { token_type: oauth2::TokenType::Bearer,
|
||
access_token: token.access_token });
|
||
let mut req_result = {
|
||
let mut client = &mut *self.hub.client.borrow_mut();
|
||
let mut req = client.borrow_mut().request(hyper::method::Method::Get, &url)
|
||
.header(UserAgent(self.hub._user_agent.clone()))
|
||
.header(auth_header.clone());
|
||
|
||
dlg.pre_request();
|
||
req.send()
|
||
};
|
||
|
||
match req_result {
|
||
Err(err) => {
|
||
if let oauth2::Retry::After(d) = dlg.http_error(&err) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return Err(Error::HttpError(err))
|
||
}
|
||
Ok(mut res) => {
|
||
if !res.status.is_success() {
|
||
let mut json_err = String::new();
|
||
res.read_to_string(&mut json_err).unwrap();
|
||
if let oauth2::Retry::After(d) = dlg.http_failure(&res,
|
||
json::from_str(&json_err).ok(),
|
||
json::from_str(&json_err).ok()) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return match json::from_str::<ErrorResponse>(&json_err){
|
||
Err(_) => Err(Error::Failure(res)),
|
||
Ok(serr) => Err(Error::BadRequest(serr))
|
||
}
|
||
}
|
||
let result_value = {
|
||
let mut json_response = String::new();
|
||
res.read_to_string(&mut json_response).unwrap();
|
||
match json::from_str(&json_response) {
|
||
Ok(decoded) => (res, decoded),
|
||
Err(err) => {
|
||
dlg.response_json_decode_error(&json_response, &err);
|
||
return Err(Error::JsonDecodeError(json_response, err));
|
||
}
|
||
}
|
||
};
|
||
|
||
dlg.finished(true);
|
||
return Ok(result_value)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
/// The site's URL, including protocol. For example: http://www.example.com/
|
||
///
|
||
/// Sets the *site url* path property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn site_url(mut self, new_value: &str) -> UrlcrawlerrorscountQueryCall<'a, C, A> {
|
||
self._site_url = new_value.to_string();
|
||
self
|
||
}
|
||
/// The user agent type (platform) that made the request. For example: web. If not specified, returns results for all platforms.
|
||
///
|
||
/// Sets the *platform* query property to the given value.
|
||
pub fn platform(mut self, new_value: &str) -> UrlcrawlerrorscountQueryCall<'a, C, A> {
|
||
self._platform = Some(new_value.to_string());
|
||
self
|
||
}
|
||
/// If true, returns only the latest crawl error counts.
|
||
///
|
||
/// Sets the *latest counts only* query property to the given value.
|
||
pub fn latest_counts_only(mut self, new_value: bool) -> UrlcrawlerrorscountQueryCall<'a, C, A> {
|
||
self._latest_counts_only = Some(new_value);
|
||
self
|
||
}
|
||
/// The crawl error category. For example: serverError. If not specified, returns results for all categories.
|
||
///
|
||
/// Sets the *category* query property to the given value.
|
||
pub fn category(mut self, new_value: &str) -> UrlcrawlerrorscountQueryCall<'a, C, A> {
|
||
self._category = Some(new_value.to_string());
|
||
self
|
||
}
|
||
/// The delegate implementation is consulted whenever there is an intermediate result, or if something goes wrong
|
||
/// while executing the actual API request.
|
||
///
|
||
/// It should be used to handle progress information, and to implement a certain level of resilience.
|
||
///
|
||
/// Sets the *delegate* property to the given value.
|
||
pub fn delegate(mut self, new_value: &'a mut Delegate) -> UrlcrawlerrorscountQueryCall<'a, C, A> {
|
||
self._delegate = Some(new_value);
|
||
self
|
||
}
|
||
|
||
/// Set any additional parameter of the query string used in the request.
|
||
/// It should be used to set parameters which are not yet available through their own
|
||
/// setters.
|
||
///
|
||
/// Please note that this method must not be used to set any of the known paramters
|
||
/// which have their own setter method. If done anyway, the request will fail.
|
||
///
|
||
/// # Additional Parameters
|
||
///
|
||
/// * *quotaUser* (query-string) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.
|
||
/// * *oauth_token* (query-string) - OAuth 2.0 token for the current user.
|
||
/// * *key* (query-string) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
|
||
/// * *prettyPrint* (query-boolean) - Returns response with indentations and line breaks.
|
||
/// * *userIp* (query-string) - IP address of the site where the request originates. Use this if you want to enforce per-user limits.
|
||
/// * *fields* (query-string) - Selector specifying which fields to include in a partial response.
|
||
/// * *alt* (query-string) - Data format for the response.
|
||
pub fn param<T>(mut self, name: T, value: T) -> UrlcrawlerrorscountQueryCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._additional_params.insert(name.as_ref().to_string(), value.as_ref().to_string());
|
||
self
|
||
}
|
||
|
||
/// Identifies the authorization scope for the method you are building.
|
||
///
|
||
/// Use this method to actively specify which scope should be used, instead the default `Scope` variant
|
||
/// `Scope::Readonly`.
|
||
///
|
||
/// The `scope` will be added to a set of scopes. This is important as one can maintain access
|
||
/// tokens for more than one scope.
|
||
///
|
||
/// Usually there is more than one suitable scope to authorize an operation, some of which may
|
||
/// encompass more rights than others. For example, for listing resources, a *read-only* scope will be
|
||
/// sufficient, a read-write scope will do as well.
|
||
pub fn add_scope<T>(mut self, scope: T) -> UrlcrawlerrorscountQueryCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._scopes.insert(scope.as_ref().to_string(), ());
|
||
self
|
||
}
|
||
}
|
||
|
||
|
||
/// Retrieves details about crawl errors for a site's sample URL.
|
||
///
|
||
/// A builder for the *get* method supported by a *urlcrawlerrorssample* resource.
|
||
/// It is not used directly, but through a `UrlcrawlerrorssampleMethods` instance.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource method builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// # extern crate hyper;
|
||
/// # extern crate yup_oauth2 as oauth2;
|
||
/// # extern crate google_webmasters3 as webmasters3;
|
||
/// # #[test] fn egal() {
|
||
/// # use std::default::Default;
|
||
/// # use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// # use webmasters3::Webmasters;
|
||
///
|
||
/// # let secret: ApplicationSecret = Default::default();
|
||
/// # let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// # hyper::Client::new(),
|
||
/// # <MemoryStorage as Default>::default(), None);
|
||
/// # let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // You can configure optional parameters by calling the respective setters at will, and
|
||
/// // execute the final call using `doit()`.
|
||
/// // Values shown here are possibly random and not representative !
|
||
/// let result = hub.urlcrawlerrorssamples().get("siteUrl", "url", "category", "platform")
|
||
/// .doit();
|
||
/// # }
|
||
/// ```
|
||
pub struct UrlcrawlerrorssampleGetCall<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
_site_url: String,
|
||
_url: String,
|
||
_category: String,
|
||
_platform: String,
|
||
_delegate: Option<&'a mut Delegate>,
|
||
_additional_params: HashMap<String, String>,
|
||
_scopes: BTreeMap<String, ()>
|
||
}
|
||
|
||
impl<'a, C, A> CallBuilder for UrlcrawlerrorssampleGetCall<'a, C, A> {}
|
||
|
||
impl<'a, C, A> UrlcrawlerrorssampleGetCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oauth2::GetToken {
|
||
|
||
|
||
/// Perform the operation you have build so far.
|
||
pub fn doit(mut self) -> Result<(hyper::client::Response, UrlCrawlErrorsSample)> {
|
||
use std::io::{Read, Seek};
|
||
use hyper::header::{ContentType, ContentLength, Authorization, UserAgent, Location};
|
||
let mut dd = DefaultDelegate;
|
||
let mut dlg: &mut Delegate = match self._delegate {
|
||
Some(d) => d,
|
||
None => &mut dd
|
||
};
|
||
dlg.begin(MethodInfo { id: "webmasters.urlcrawlerrorssamples.get",
|
||
http_method: hyper::method::Method::Get });
|
||
let mut params: Vec<(&str, String)> = Vec::with_capacity((6 + self._additional_params.len()));
|
||
params.push(("siteUrl", self._site_url.to_string()));
|
||
params.push(("url", self._url.to_string()));
|
||
params.push(("category", self._category.to_string()));
|
||
params.push(("platform", self._platform.to_string()));
|
||
for &field in ["alt", "siteUrl", "url", "category", "platform"].iter() {
|
||
if self._additional_params.contains_key(field) {
|
||
dlg.finished(false);
|
||
return Err(Error::FieldClash(field));
|
||
}
|
||
}
|
||
for (name, value) in self._additional_params.iter() {
|
||
params.push((&name, value.clone()));
|
||
}
|
||
|
||
params.push(("alt", "json".to_string()));
|
||
|
||
let mut url = "https://www.googleapis.com/webmasters/v3/sites/{siteUrl}/urlCrawlErrorsSamples/{url}".to_string();
|
||
if self._scopes.len() == 0 {
|
||
self._scopes.insert(Scope::Readonly.as_ref().to_string(), ());
|
||
}
|
||
|
||
for &(find_this, param_name) in [("{siteUrl}", "siteUrl"), ("{url}", "url")].iter() {
|
||
let mut replace_with: Option<&str> = None;
|
||
for &(name, ref value) in params.iter() {
|
||
if name == param_name {
|
||
replace_with = Some(value);
|
||
break;
|
||
}
|
||
}
|
||
url = url.replace(find_this, replace_with.expect("to find substitution value in params"));
|
||
}
|
||
{
|
||
let mut indices_for_removal: Vec<usize> = Vec::with_capacity(2);
|
||
for param_name in ["url", "siteUrl"].iter() {
|
||
if let Some(index) = params.iter().position(|t| &t.0 == param_name) {
|
||
indices_for_removal.push(index);
|
||
}
|
||
}
|
||
for &index in indices_for_removal.iter() {
|
||
params.remove(index);
|
||
}
|
||
}
|
||
|
||
if params.len() > 0 {
|
||
url.push('?');
|
||
url.push_str(&url::form_urlencoded::serialize(params));
|
||
}
|
||
|
||
|
||
|
||
loop {
|
||
let token = match self.hub.auth.borrow_mut().token(self._scopes.keys()) {
|
||
Ok(token) => token,
|
||
Err(err) => {
|
||
match dlg.token(&*err) {
|
||
Some(token) => token,
|
||
None => {
|
||
dlg.finished(false);
|
||
return Err(Error::MissingToken(err))
|
||
}
|
||
}
|
||
}
|
||
};
|
||
let auth_header = Authorization(oauth2::Scheme { token_type: oauth2::TokenType::Bearer,
|
||
access_token: token.access_token });
|
||
let mut req_result = {
|
||
let mut client = &mut *self.hub.client.borrow_mut();
|
||
let mut req = client.borrow_mut().request(hyper::method::Method::Get, &url)
|
||
.header(UserAgent(self.hub._user_agent.clone()))
|
||
.header(auth_header.clone());
|
||
|
||
dlg.pre_request();
|
||
req.send()
|
||
};
|
||
|
||
match req_result {
|
||
Err(err) => {
|
||
if let oauth2::Retry::After(d) = dlg.http_error(&err) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return Err(Error::HttpError(err))
|
||
}
|
||
Ok(mut res) => {
|
||
if !res.status.is_success() {
|
||
let mut json_err = String::new();
|
||
res.read_to_string(&mut json_err).unwrap();
|
||
if let oauth2::Retry::After(d) = dlg.http_failure(&res,
|
||
json::from_str(&json_err).ok(),
|
||
json::from_str(&json_err).ok()) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return match json::from_str::<ErrorResponse>(&json_err){
|
||
Err(_) => Err(Error::Failure(res)),
|
||
Ok(serr) => Err(Error::BadRequest(serr))
|
||
}
|
||
}
|
||
let result_value = {
|
||
let mut json_response = String::new();
|
||
res.read_to_string(&mut json_response).unwrap();
|
||
match json::from_str(&json_response) {
|
||
Ok(decoded) => (res, decoded),
|
||
Err(err) => {
|
||
dlg.response_json_decode_error(&json_response, &err);
|
||
return Err(Error::JsonDecodeError(json_response, err));
|
||
}
|
||
}
|
||
};
|
||
|
||
dlg.finished(true);
|
||
return Ok(result_value)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
/// The site's URL, including protocol. For example: http://www.example.com/
|
||
///
|
||
/// Sets the *site url* path property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn site_url(mut self, new_value: &str) -> UrlcrawlerrorssampleGetCall<'a, C, A> {
|
||
self._site_url = new_value.to_string();
|
||
self
|
||
}
|
||
/// The relative path (without the site) of the sample URL. It must be one of the URLs returned by list(). For example, for the URL https://www.example.com/pagename on the site https://www.example.com/, the url value is pagename
|
||
///
|
||
/// Sets the *url* path property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn url(mut self, new_value: &str) -> UrlcrawlerrorssampleGetCall<'a, C, A> {
|
||
self._url = new_value.to_string();
|
||
self
|
||
}
|
||
/// The crawl error category. For example: authPermissions
|
||
///
|
||
/// Sets the *category* query property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn category(mut self, new_value: &str) -> UrlcrawlerrorssampleGetCall<'a, C, A> {
|
||
self._category = new_value.to_string();
|
||
self
|
||
}
|
||
/// The user agent type (platform) that made the request. For example: web
|
||
///
|
||
/// Sets the *platform* query property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn platform(mut self, new_value: &str) -> UrlcrawlerrorssampleGetCall<'a, C, A> {
|
||
self._platform = new_value.to_string();
|
||
self
|
||
}
|
||
/// The delegate implementation is consulted whenever there is an intermediate result, or if something goes wrong
|
||
/// while executing the actual API request.
|
||
///
|
||
/// It should be used to handle progress information, and to implement a certain level of resilience.
|
||
///
|
||
/// Sets the *delegate* property to the given value.
|
||
pub fn delegate(mut self, new_value: &'a mut Delegate) -> UrlcrawlerrorssampleGetCall<'a, C, A> {
|
||
self._delegate = Some(new_value);
|
||
self
|
||
}
|
||
|
||
/// Set any additional parameter of the query string used in the request.
|
||
/// It should be used to set parameters which are not yet available through their own
|
||
/// setters.
|
||
///
|
||
/// Please note that this method must not be used to set any of the known paramters
|
||
/// which have their own setter method. If done anyway, the request will fail.
|
||
///
|
||
/// # Additional Parameters
|
||
///
|
||
/// * *quotaUser* (query-string) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.
|
||
/// * *oauth_token* (query-string) - OAuth 2.0 token for the current user.
|
||
/// * *key* (query-string) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
|
||
/// * *prettyPrint* (query-boolean) - Returns response with indentations and line breaks.
|
||
/// * *userIp* (query-string) - IP address of the site where the request originates. Use this if you want to enforce per-user limits.
|
||
/// * *fields* (query-string) - Selector specifying which fields to include in a partial response.
|
||
/// * *alt* (query-string) - Data format for the response.
|
||
pub fn param<T>(mut self, name: T, value: T) -> UrlcrawlerrorssampleGetCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._additional_params.insert(name.as_ref().to_string(), value.as_ref().to_string());
|
||
self
|
||
}
|
||
|
||
/// Identifies the authorization scope for the method you are building.
|
||
///
|
||
/// Use this method to actively specify which scope should be used, instead the default `Scope` variant
|
||
/// `Scope::Readonly`.
|
||
///
|
||
/// The `scope` will be added to a set of scopes. This is important as one can maintain access
|
||
/// tokens for more than one scope.
|
||
///
|
||
/// Usually there is more than one suitable scope to authorize an operation, some of which may
|
||
/// encompass more rights than others. For example, for listing resources, a *read-only* scope will be
|
||
/// sufficient, a read-write scope will do as well.
|
||
pub fn add_scope<T>(mut self, scope: T) -> UrlcrawlerrorssampleGetCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._scopes.insert(scope.as_ref().to_string(), ());
|
||
self
|
||
}
|
||
}
|
||
|
||
|
||
/// Lists a site's sample URLs for the specified crawl error category and platform.
|
||
///
|
||
/// A builder for the *list* method supported by a *urlcrawlerrorssample* resource.
|
||
/// It is not used directly, but through a `UrlcrawlerrorssampleMethods` instance.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource method builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// # extern crate hyper;
|
||
/// # extern crate yup_oauth2 as oauth2;
|
||
/// # extern crate google_webmasters3 as webmasters3;
|
||
/// # #[test] fn egal() {
|
||
/// # use std::default::Default;
|
||
/// # use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// # use webmasters3::Webmasters;
|
||
///
|
||
/// # let secret: ApplicationSecret = Default::default();
|
||
/// # let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// # hyper::Client::new(),
|
||
/// # <MemoryStorage as Default>::default(), None);
|
||
/// # let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // You can configure optional parameters by calling the respective setters at will, and
|
||
/// // execute the final call using `doit()`.
|
||
/// // Values shown here are possibly random and not representative !
|
||
/// let result = hub.urlcrawlerrorssamples().list("siteUrl", "category", "platform")
|
||
/// .doit();
|
||
/// # }
|
||
/// ```
|
||
pub struct UrlcrawlerrorssampleListCall<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
_site_url: String,
|
||
_category: String,
|
||
_platform: String,
|
||
_delegate: Option<&'a mut Delegate>,
|
||
_additional_params: HashMap<String, String>,
|
||
_scopes: BTreeMap<String, ()>
|
||
}
|
||
|
||
impl<'a, C, A> CallBuilder for UrlcrawlerrorssampleListCall<'a, C, A> {}
|
||
|
||
impl<'a, C, A> UrlcrawlerrorssampleListCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oauth2::GetToken {
|
||
|
||
|
||
/// Perform the operation you have build so far.
|
||
pub fn doit(mut self) -> Result<(hyper::client::Response, UrlCrawlErrorsSamplesListResponse)> {
|
||
use std::io::{Read, Seek};
|
||
use hyper::header::{ContentType, ContentLength, Authorization, UserAgent, Location};
|
||
let mut dd = DefaultDelegate;
|
||
let mut dlg: &mut Delegate = match self._delegate {
|
||
Some(d) => d,
|
||
None => &mut dd
|
||
};
|
||
dlg.begin(MethodInfo { id: "webmasters.urlcrawlerrorssamples.list",
|
||
http_method: hyper::method::Method::Get });
|
||
let mut params: Vec<(&str, String)> = Vec::with_capacity((5 + self._additional_params.len()));
|
||
params.push(("siteUrl", self._site_url.to_string()));
|
||
params.push(("category", self._category.to_string()));
|
||
params.push(("platform", self._platform.to_string()));
|
||
for &field in ["alt", "siteUrl", "category", "platform"].iter() {
|
||
if self._additional_params.contains_key(field) {
|
||
dlg.finished(false);
|
||
return Err(Error::FieldClash(field));
|
||
}
|
||
}
|
||
for (name, value) in self._additional_params.iter() {
|
||
params.push((&name, value.clone()));
|
||
}
|
||
|
||
params.push(("alt", "json".to_string()));
|
||
|
||
let mut url = "https://www.googleapis.com/webmasters/v3/sites/{siteUrl}/urlCrawlErrorsSamples".to_string();
|
||
if self._scopes.len() == 0 {
|
||
self._scopes.insert(Scope::Readonly.as_ref().to_string(), ());
|
||
}
|
||
|
||
for &(find_this, param_name) in [("{siteUrl}", "siteUrl")].iter() {
|
||
let mut replace_with: Option<&str> = None;
|
||
for &(name, ref value) in params.iter() {
|
||
if name == param_name {
|
||
replace_with = Some(value);
|
||
break;
|
||
}
|
||
}
|
||
url = url.replace(find_this, replace_with.expect("to find substitution value in params"));
|
||
}
|
||
{
|
||
let mut indices_for_removal: Vec<usize> = Vec::with_capacity(1);
|
||
for param_name in ["siteUrl"].iter() {
|
||
if let Some(index) = params.iter().position(|t| &t.0 == param_name) {
|
||
indices_for_removal.push(index);
|
||
}
|
||
}
|
||
for &index in indices_for_removal.iter() {
|
||
params.remove(index);
|
||
}
|
||
}
|
||
|
||
if params.len() > 0 {
|
||
url.push('?');
|
||
url.push_str(&url::form_urlencoded::serialize(params));
|
||
}
|
||
|
||
|
||
|
||
loop {
|
||
let token = match self.hub.auth.borrow_mut().token(self._scopes.keys()) {
|
||
Ok(token) => token,
|
||
Err(err) => {
|
||
match dlg.token(&*err) {
|
||
Some(token) => token,
|
||
None => {
|
||
dlg.finished(false);
|
||
return Err(Error::MissingToken(err))
|
||
}
|
||
}
|
||
}
|
||
};
|
||
let auth_header = Authorization(oauth2::Scheme { token_type: oauth2::TokenType::Bearer,
|
||
access_token: token.access_token });
|
||
let mut req_result = {
|
||
let mut client = &mut *self.hub.client.borrow_mut();
|
||
let mut req = client.borrow_mut().request(hyper::method::Method::Get, &url)
|
||
.header(UserAgent(self.hub._user_agent.clone()))
|
||
.header(auth_header.clone());
|
||
|
||
dlg.pre_request();
|
||
req.send()
|
||
};
|
||
|
||
match req_result {
|
||
Err(err) => {
|
||
if let oauth2::Retry::After(d) = dlg.http_error(&err) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return Err(Error::HttpError(err))
|
||
}
|
||
Ok(mut res) => {
|
||
if !res.status.is_success() {
|
||
let mut json_err = String::new();
|
||
res.read_to_string(&mut json_err).unwrap();
|
||
if let oauth2::Retry::After(d) = dlg.http_failure(&res,
|
||
json::from_str(&json_err).ok(),
|
||
json::from_str(&json_err).ok()) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return match json::from_str::<ErrorResponse>(&json_err){
|
||
Err(_) => Err(Error::Failure(res)),
|
||
Ok(serr) => Err(Error::BadRequest(serr))
|
||
}
|
||
}
|
||
let result_value = {
|
||
let mut json_response = String::new();
|
||
res.read_to_string(&mut json_response).unwrap();
|
||
match json::from_str(&json_response) {
|
||
Ok(decoded) => (res, decoded),
|
||
Err(err) => {
|
||
dlg.response_json_decode_error(&json_response, &err);
|
||
return Err(Error::JsonDecodeError(json_response, err));
|
||
}
|
||
}
|
||
};
|
||
|
||
dlg.finished(true);
|
||
return Ok(result_value)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
/// The site's URL, including protocol. For example: http://www.example.com/
|
||
///
|
||
/// Sets the *site url* path property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn site_url(mut self, new_value: &str) -> UrlcrawlerrorssampleListCall<'a, C, A> {
|
||
self._site_url = new_value.to_string();
|
||
self
|
||
}
|
||
/// The crawl error category. For example: authPermissions
|
||
///
|
||
/// Sets the *category* query property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn category(mut self, new_value: &str) -> UrlcrawlerrorssampleListCall<'a, C, A> {
|
||
self._category = new_value.to_string();
|
||
self
|
||
}
|
||
/// The user agent type (platform) that made the request. For example: web
|
||
///
|
||
/// Sets the *platform* query property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn platform(mut self, new_value: &str) -> UrlcrawlerrorssampleListCall<'a, C, A> {
|
||
self._platform = new_value.to_string();
|
||
self
|
||
}
|
||
/// The delegate implementation is consulted whenever there is an intermediate result, or if something goes wrong
|
||
/// while executing the actual API request.
|
||
///
|
||
/// It should be used to handle progress information, and to implement a certain level of resilience.
|
||
///
|
||
/// Sets the *delegate* property to the given value.
|
||
pub fn delegate(mut self, new_value: &'a mut Delegate) -> UrlcrawlerrorssampleListCall<'a, C, A> {
|
||
self._delegate = Some(new_value);
|
||
self
|
||
}
|
||
|
||
/// Set any additional parameter of the query string used in the request.
|
||
/// It should be used to set parameters which are not yet available through their own
|
||
/// setters.
|
||
///
|
||
/// Please note that this method must not be used to set any of the known paramters
|
||
/// which have their own setter method. If done anyway, the request will fail.
|
||
///
|
||
/// # Additional Parameters
|
||
///
|
||
/// * *quotaUser* (query-string) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.
|
||
/// * *oauth_token* (query-string) - OAuth 2.0 token for the current user.
|
||
/// * *key* (query-string) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
|
||
/// * *prettyPrint* (query-boolean) - Returns response with indentations and line breaks.
|
||
/// * *userIp* (query-string) - IP address of the site where the request originates. Use this if you want to enforce per-user limits.
|
||
/// * *fields* (query-string) - Selector specifying which fields to include in a partial response.
|
||
/// * *alt* (query-string) - Data format for the response.
|
||
pub fn param<T>(mut self, name: T, value: T) -> UrlcrawlerrorssampleListCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._additional_params.insert(name.as_ref().to_string(), value.as_ref().to_string());
|
||
self
|
||
}
|
||
|
||
/// Identifies the authorization scope for the method you are building.
|
||
///
|
||
/// Use this method to actively specify which scope should be used, instead the default `Scope` variant
|
||
/// `Scope::Readonly`.
|
||
///
|
||
/// The `scope` will be added to a set of scopes. This is important as one can maintain access
|
||
/// tokens for more than one scope.
|
||
///
|
||
/// Usually there is more than one suitable scope to authorize an operation, some of which may
|
||
/// encompass more rights than others. For example, for listing resources, a *read-only* scope will be
|
||
/// sufficient, a read-write scope will do as well.
|
||
pub fn add_scope<T>(mut self, scope: T) -> UrlcrawlerrorssampleListCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._scopes.insert(scope.as_ref().to_string(), ());
|
||
self
|
||
}
|
||
}
|
||
|
||
|
||
/// Marks the provided site's sample URL as fixed, and removes it from the samples list.
|
||
///
|
||
/// A builder for the *markAsFixed* method supported by a *urlcrawlerrorssample* resource.
|
||
/// It is not used directly, but through a `UrlcrawlerrorssampleMethods` instance.
|
||
///
|
||
/// # Example
|
||
///
|
||
/// Instantiate a resource method builder
|
||
///
|
||
/// ```test_harness,no_run
|
||
/// # extern crate hyper;
|
||
/// # extern crate yup_oauth2 as oauth2;
|
||
/// # extern crate google_webmasters3 as webmasters3;
|
||
/// # #[test] fn egal() {
|
||
/// # use std::default::Default;
|
||
/// # use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
|
||
/// # use webmasters3::Webmasters;
|
||
///
|
||
/// # let secret: ApplicationSecret = Default::default();
|
||
/// # let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
|
||
/// # hyper::Client::new(),
|
||
/// # <MemoryStorage as Default>::default(), None);
|
||
/// # let mut hub = Webmasters::new(hyper::Client::new(), auth);
|
||
/// // You can configure optional parameters by calling the respective setters at will, and
|
||
/// // execute the final call using `doit()`.
|
||
/// // Values shown here are possibly random and not representative !
|
||
/// let result = hub.urlcrawlerrorssamples().mark_as_fixed("siteUrl", "url", "category", "platform")
|
||
/// .doit();
|
||
/// # }
|
||
/// ```
|
||
pub struct UrlcrawlerrorssampleMarkAsFixedCall<'a, C, A>
|
||
where C: 'a, A: 'a {
|
||
|
||
hub: &'a Webmasters<C, A>,
|
||
_site_url: String,
|
||
_url: String,
|
||
_category: String,
|
||
_platform: String,
|
||
_delegate: Option<&'a mut Delegate>,
|
||
_additional_params: HashMap<String, String>,
|
||
_scopes: BTreeMap<String, ()>
|
||
}
|
||
|
||
impl<'a, C, A> CallBuilder for UrlcrawlerrorssampleMarkAsFixedCall<'a, C, A> {}
|
||
|
||
impl<'a, C, A> UrlcrawlerrorssampleMarkAsFixedCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oauth2::GetToken {
|
||
|
||
|
||
/// Perform the operation you have build so far.
|
||
pub fn doit(mut self) -> Result<hyper::client::Response> {
|
||
use std::io::{Read, Seek};
|
||
use hyper::header::{ContentType, ContentLength, Authorization, UserAgent, Location};
|
||
let mut dd = DefaultDelegate;
|
||
let mut dlg: &mut Delegate = match self._delegate {
|
||
Some(d) => d,
|
||
None => &mut dd
|
||
};
|
||
dlg.begin(MethodInfo { id: "webmasters.urlcrawlerrorssamples.markAsFixed",
|
||
http_method: hyper::method::Method::Delete });
|
||
let mut params: Vec<(&str, String)> = Vec::with_capacity((5 + self._additional_params.len()));
|
||
params.push(("siteUrl", self._site_url.to_string()));
|
||
params.push(("url", self._url.to_string()));
|
||
params.push(("category", self._category.to_string()));
|
||
params.push(("platform", self._platform.to_string()));
|
||
for &field in ["siteUrl", "url", "category", "platform"].iter() {
|
||
if self._additional_params.contains_key(field) {
|
||
dlg.finished(false);
|
||
return Err(Error::FieldClash(field));
|
||
}
|
||
}
|
||
for (name, value) in self._additional_params.iter() {
|
||
params.push((&name, value.clone()));
|
||
}
|
||
|
||
|
||
let mut url = "https://www.googleapis.com/webmasters/v3/sites/{siteUrl}/urlCrawlErrorsSamples/{url}".to_string();
|
||
if self._scopes.len() == 0 {
|
||
self._scopes.insert(Scope::Full.as_ref().to_string(), ());
|
||
}
|
||
|
||
for &(find_this, param_name) in [("{siteUrl}", "siteUrl"), ("{url}", "url")].iter() {
|
||
let mut replace_with: Option<&str> = None;
|
||
for &(name, ref value) in params.iter() {
|
||
if name == param_name {
|
||
replace_with = Some(value);
|
||
break;
|
||
}
|
||
}
|
||
url = url.replace(find_this, replace_with.expect("to find substitution value in params"));
|
||
}
|
||
{
|
||
let mut indices_for_removal: Vec<usize> = Vec::with_capacity(2);
|
||
for param_name in ["url", "siteUrl"].iter() {
|
||
if let Some(index) = params.iter().position(|t| &t.0 == param_name) {
|
||
indices_for_removal.push(index);
|
||
}
|
||
}
|
||
for &index in indices_for_removal.iter() {
|
||
params.remove(index);
|
||
}
|
||
}
|
||
|
||
if params.len() > 0 {
|
||
url.push('?');
|
||
url.push_str(&url::form_urlencoded::serialize(params));
|
||
}
|
||
|
||
|
||
|
||
loop {
|
||
let token = match self.hub.auth.borrow_mut().token(self._scopes.keys()) {
|
||
Ok(token) => token,
|
||
Err(err) => {
|
||
match dlg.token(&*err) {
|
||
Some(token) => token,
|
||
None => {
|
||
dlg.finished(false);
|
||
return Err(Error::MissingToken(err))
|
||
}
|
||
}
|
||
}
|
||
};
|
||
let auth_header = Authorization(oauth2::Scheme { token_type: oauth2::TokenType::Bearer,
|
||
access_token: token.access_token });
|
||
let mut req_result = {
|
||
let mut client = &mut *self.hub.client.borrow_mut();
|
||
let mut req = client.borrow_mut().request(hyper::method::Method::Delete, &url)
|
||
.header(UserAgent(self.hub._user_agent.clone()))
|
||
.header(auth_header.clone());
|
||
|
||
dlg.pre_request();
|
||
req.send()
|
||
};
|
||
|
||
match req_result {
|
||
Err(err) => {
|
||
if let oauth2::Retry::After(d) = dlg.http_error(&err) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return Err(Error::HttpError(err))
|
||
}
|
||
Ok(mut res) => {
|
||
if !res.status.is_success() {
|
||
let mut json_err = String::new();
|
||
res.read_to_string(&mut json_err).unwrap();
|
||
if let oauth2::Retry::After(d) = dlg.http_failure(&res,
|
||
json::from_str(&json_err).ok(),
|
||
json::from_str(&json_err).ok()) {
|
||
sleep(d);
|
||
continue;
|
||
}
|
||
dlg.finished(false);
|
||
return match json::from_str::<ErrorResponse>(&json_err){
|
||
Err(_) => Err(Error::Failure(res)),
|
||
Ok(serr) => Err(Error::BadRequest(serr))
|
||
}
|
||
}
|
||
let result_value = res;
|
||
|
||
dlg.finished(true);
|
||
return Ok(result_value)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
/// The site's URL, including protocol. For example: http://www.example.com/
|
||
///
|
||
/// Sets the *site url* path property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn site_url(mut self, new_value: &str) -> UrlcrawlerrorssampleMarkAsFixedCall<'a, C, A> {
|
||
self._site_url = new_value.to_string();
|
||
self
|
||
}
|
||
/// The relative path (without the site) of the sample URL. It must be one of the URLs returned by list(). For example, for the URL https://www.example.com/pagename on the site https://www.example.com/, the url value is pagename
|
||
///
|
||
/// Sets the *url* path property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn url(mut self, new_value: &str) -> UrlcrawlerrorssampleMarkAsFixedCall<'a, C, A> {
|
||
self._url = new_value.to_string();
|
||
self
|
||
}
|
||
/// The crawl error category. For example: authPermissions
|
||
///
|
||
/// Sets the *category* query property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn category(mut self, new_value: &str) -> UrlcrawlerrorssampleMarkAsFixedCall<'a, C, A> {
|
||
self._category = new_value.to_string();
|
||
self
|
||
}
|
||
/// The user agent type (platform) that made the request. For example: web
|
||
///
|
||
/// Sets the *platform* query property to the given value.
|
||
///
|
||
/// Even though the property as already been set when instantiating this call,
|
||
/// we provide this method for API completeness.
|
||
pub fn platform(mut self, new_value: &str) -> UrlcrawlerrorssampleMarkAsFixedCall<'a, C, A> {
|
||
self._platform = new_value.to_string();
|
||
self
|
||
}
|
||
/// The delegate implementation is consulted whenever there is an intermediate result, or if something goes wrong
|
||
/// while executing the actual API request.
|
||
///
|
||
/// It should be used to handle progress information, and to implement a certain level of resilience.
|
||
///
|
||
/// Sets the *delegate* property to the given value.
|
||
pub fn delegate(mut self, new_value: &'a mut Delegate) -> UrlcrawlerrorssampleMarkAsFixedCall<'a, C, A> {
|
||
self._delegate = Some(new_value);
|
||
self
|
||
}
|
||
|
||
/// Set any additional parameter of the query string used in the request.
|
||
/// It should be used to set parameters which are not yet available through their own
|
||
/// setters.
|
||
///
|
||
/// Please note that this method must not be used to set any of the known paramters
|
||
/// which have their own setter method. If done anyway, the request will fail.
|
||
///
|
||
/// # Additional Parameters
|
||
///
|
||
/// * *quotaUser* (query-string) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.
|
||
/// * *oauth_token* (query-string) - OAuth 2.0 token for the current user.
|
||
/// * *key* (query-string) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
|
||
/// * *prettyPrint* (query-boolean) - Returns response with indentations and line breaks.
|
||
/// * *userIp* (query-string) - IP address of the site where the request originates. Use this if you want to enforce per-user limits.
|
||
/// * *fields* (query-string) - Selector specifying which fields to include in a partial response.
|
||
/// * *alt* (query-string) - Data format for the response.
|
||
pub fn param<T>(mut self, name: T, value: T) -> UrlcrawlerrorssampleMarkAsFixedCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._additional_params.insert(name.as_ref().to_string(), value.as_ref().to_string());
|
||
self
|
||
}
|
||
|
||
/// Identifies the authorization scope for the method you are building.
|
||
///
|
||
/// Use this method to actively specify which scope should be used, instead the default `Scope` variant
|
||
/// `Scope::Full`.
|
||
///
|
||
/// The `scope` will be added to a set of scopes. This is important as one can maintain access
|
||
/// tokens for more than one scope.
|
||
///
|
||
/// Usually there is more than one suitable scope to authorize an operation, some of which may
|
||
/// encompass more rights than others. For example, for listing resources, a *read-only* scope will be
|
||
/// sufficient, a read-write scope will do as well.
|
||
pub fn add_scope<T>(mut self, scope: T) -> UrlcrawlerrorssampleMarkAsFixedCall<'a, C, A>
|
||
where T: AsRef<str> {
|
||
self._scopes.insert(scope.as_ref().to_string(), ());
|
||
self
|
||
}
|
||
}
|
||
|
||
|