1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480
/// Represents any of the ways storing something in Google Cloud Storage can fail.
#[derive(Debug)]
pub enum Error {
/// If the error is caused by a non 2xx response by Google, this variant is returned.
Google(GoogleErrorResponse),
/// If another network error causes something to fail, this variant is used.
Reqwest(reqwest::Error),
/// If we encounter a problem decoding the private key, this variant is used.
#[cfg(feature = "ring")]
Pem(pem::PemError),
/// If we encounter a problem parsing the private key, this variant is used.
#[cfg(feature = "ring")]
KeyRejected(ring::error::KeyRejected),
/// If we encounter a problem signing a request, this variant is used.
#[cfg(feature = "ring")]
Signing(ring::error::Unspecified),
/// If we encouter a SSL error, for example an invalid certificate, this variant is used.
#[cfg(feature = "openssl")]
Ssl(openssl::error::ErrorStack),
/// If we have problems creating or parsing a json web token, this variant is used.
Jwt(jsonwebtoken::errors::Error),
/// If we cannot deserialize one of the repsonses sent by Google, this variant is used.
Serialization(serde_json::error::Error),
/// If another failure causes the error, this variant is populated.
Other(String),
}
impl Error {
pub(crate) fn new(msg: &str) -> Error {
Error::Other(msg.to_string())
}
}
impl std::fmt::Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
writeln!(f, "{:?}", self)
}
}
impl std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
Self::Google(e) => Some(e),
Self::Reqwest(e) => Some(e),
#[cfg(feature = "openssl")]
Self::Ssl(e) => Some(e),
#[cfg(feature = "ring")]
Self::Pem(e) => Some(e),
#[cfg(feature = "ring")]
Self::KeyRejected(e) => Some(e),
#[cfg(feature = "ring")]
Self::Signing(e) => Some(e),
Self::Jwt(e) => Some(e),
Self::Serialization(e) => Some(e),
Self::Other(_) => None,
}
}
}
impl From<reqwest::Error> for Error {
fn from(err: reqwest::Error) -> Self {
Self::Reqwest(err)
}
}
#[cfg(feature = "openssl")]
impl From<openssl::error::ErrorStack> for Error {
fn from(err: openssl::error::ErrorStack) -> Self {
Self::Ssl(err)
}
}
#[cfg(feature = "ring")]
impl From<pem::PemError> for Error {
fn from(err: pem::PemError) -> Self {
Self::Pem(err)
}
}
#[cfg(feature = "ring")]
impl From<ring::error::KeyRejected> for Error {
fn from(err: ring::error::KeyRejected) -> Self {
Self::KeyRejected(err)
}
}
#[cfg(feature = "ring")]
impl From<ring::error::Unspecified> for Error {
fn from(err: ring::error::Unspecified) -> Self {
Self::Signing(err)
}
}
impl From<jsonwebtoken::errors::Error> for Error {
fn from(err: jsonwebtoken::errors::Error) -> Self {
Self::Jwt(err)
}
}
impl From<serde_json::error::Error> for Error {
fn from(err: serde_json::error::Error) -> Self {
Self::Serialization(err)
}
}
impl From<reqwest::header::InvalidHeaderValue> for Error {
fn from(err: reqwest::header::InvalidHeaderValue) -> Self {
Self::Other(err.to_string())
}
}
impl From<std::io::Error> for Error {
fn from(err: std::io::Error) -> Self {
Self::Other(err.to_string())
}
}
#[derive(Debug, serde::Deserialize)]
#[serde(rename = "camelCase")]
#[serde(untagged)]
pub(crate) enum GoogleResponse<T> {
Success(T),
Error(GoogleErrorResponse),
}
// TODO comment this in when try_trait (#42327) get stabilized and enjoy the nicer handling of
// errors
//
// impl<T> std::ops::Try for GoogleResponse<T> {
// type Ok = T;
// type Error = Error;
//
// fn into_result(self) -> Result<Self::Ok, Error> {
// match self {
// GoogleResponse::Success(t) => Ok(t),
// GoogleResponse::Error(error) => Err(Error::Google(error)),
// }
// }
//
// fn from_error(_a: Error) -> Self {
// unimplemented!()
// }
//
// fn from_ok(t: T) -> Self {
// GoogleResponse::Success(t)
// }
// }
/// The structure of a error response returned by Google.
#[derive(Debug, serde::Deserialize)]
#[serde(rename = "camelCase")]
pub struct GoogleErrorResponse {
/// A container for the error information.
pub error: ErrorList,
}
impl GoogleErrorResponse {
/// Return list of errors returned by Google
pub fn errors(&self) -> &[GoogleError] {
&self.error.errors
}
/// Check whether errors contain given reason
pub fn errors_has_reason(&self, reason: &Reason) -> bool {
self.errors()
.iter()
.any(|google_error| google_error.is_reason(reason))
}
}
impl std::fmt::Display for GoogleErrorResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
writeln!(f, "{:?}", self)
}
}
impl std::error::Error for GoogleErrorResponse {}
/// A container for the error information.
#[derive(Debug, serde::Deserialize)]
#[serde(rename = "camelCase")]
pub struct ErrorList {
/// A container for the error details.
pub errors: Vec<GoogleError>,
/// An HTTP status code value, without the textual description.
///
/// Example values include: 400 (Bad Request), 401 (Unauthorized), and 404 (Not Found).
pub code: u16,
/// Description of the error. Same as errors.message.
pub message: String,
}
/// Google Error structure
#[derive(Debug, serde::Deserialize)]
#[serde(rename = "camelCase")]
pub struct GoogleError {
/// The scope of the error. Example values include: global and push.
pub domain: String,
/// Example values include `invalid`, `invalidParameter`, and `required`.
pub reason: Reason,
/// Description of the error.
///
/// Example values include `Invalid argument`, `Login required`, and `Required parameter:
/// project`.
pub message: String,
/// The location or part of the request that caused the error. Use with `location` to pinpoint
/// the error. For example, if you specify an invalid value for a parameter, the `locationType`
/// will be parameter and the location will be the name of the parameter.
///
/// Example values include `header` and `parameter`.
pub location_type: Option<String>,
/// The specific item within the `locationType` that caused the error. For example, if you
/// specify an invalid value for a parameter, the `location` will be the name of the parameter.
///
/// Example values include: `Authorization`, `project`, and `projection`.
pub location: Option<String>,
}
impl std::fmt::Display for GoogleError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.message)
}
}
impl std::error::Error for GoogleError {}
impl GoogleError {
/// Check what was the reason of error
pub fn is_reason(&self, reason: &Reason) -> bool {
self.reason == *reason
}
}
impl From<GoogleErrorResponse> for Error {
fn from(err: GoogleErrorResponse) -> Self {
Self::Google(err)
}
}
/// Google provides a list of codes, but testing indicates that this list is not exhaustive.
#[derive(Debug, PartialEq, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum Reason {
/// When requesting a download using alt=media URL parameter, the direct URL path to use is
/// prefixed by /download. If this is omitted, the service will issue this redirect with the
/// appropriate media download path in the Location header.
MediaDownloadRedirect,
/// The conditional request would have been successful, but the condition was false, so no body
/// was sent.
NotModified,
/// Resource temporarily located elsewhere according to the Location header. Among other
/// reasons, this can occur when cookie-based authentication is being used, e.g., when using the
/// Storage Browser, and it receives a request to download content.
TemporaryRedirect,
// /// Indicates an incomplete resumable upload and provides the range of bytes already received by
// /// Cloud Storage. Responses with this status do not contain a body.
// ResumeIncomplete,
// <bad requests>
/// Undocumeten variant that is sometimes returned by Google.
Invalid,
/// The request cannot be completed based on your current Cloud Storage settings. For example,
/// you cannot lock a retention policy if the requested bucket doesn't have a retention policy,
/// and you cannot set ACLs if the requested bucket has Bucket Policy Only enabled.
BadRequest,
/// The retention period on a locked bucket cannot be reduced.
BadRequestException,
/// Bad Cloud KMS key.
CloudKmsBadKey,
/// Cloud KMS key name cannot be changed.
CloudKmsCannotChangeKeyName,
/// Resource's Cloud KMS decryption key not found.
CloudKmsDecryptionKeyNotFound,
/// Cloud KMS key is disabled, destroyed, or scheduled to be destroyed.
CloudKmsDisabledKey,
/// Cloud KMS encryption key not found.
CloudKmsEncryptionKeyNotFound,
/// Cloud KMS key location not allowed.
CloudKmsKeyLocationNotAllowed,
/// Missing an encryption algorithm, or the provided algorithm is not "AE256."
CustomerEncryptionAlgorithmIsInvalid,
/// Missing an encryption key, or it is not Base64 encoded, or it does not meet the required
/// length of the encryption algorithm.
CustomerEncryptionKeyFormatIsInvalid,
/// The provided encryption key is incorrect.
CustomerEncryptionKeyIsIncorrect,
/// Missing a SHA256 hash of the encryption key, or it is not Base64 encoded, or it does not
/// match the encryption key.
CustomerEncryptionKeySha256IsInvalid,
/// The value for the alt URL parameter was not recognized.
InvalidAltValue,
/// The value for one of fields in the request body was invalid.
InvalidArgument,
/// The value for one of the URL parameters was invalid. In addition to normal URL parameter
/// validation, any URL parameters that have a corresponding value in provided JSON request
/// bodies must match if they are both specified. If using JSONP, you will get this error if you
/// provide an alt parameter that is not json.
InvalidParameter,
/// Uploads or normal API request was sent to a `/download/*` path. Use the same path, but
/// without the /download prefix.
NotDownload,
/// Downloads or normal API request was sent to an `/upload/*` path. Use the same path, but
/// without the `/upload` prefix.
NotUpload,
/// Could not parse the body of the request according to the provided Content-Type.
ParseError,
/// Channel id must match the following regular expression: `[A-Za-z0-9\\-_\\+/=]+`.
#[serde(rename = "push.channelIdInvalid")]
PushChannelIdInvalid,
/// `storage.objects.watchAll`'s id property must be unique across channels.
#[serde(rename = "push.channelIdNotUnique")]
PushChannelIdNotUnique,
/// `storage.objects.watchAll`'s address property must contain a valid URL.
#[serde(rename = "push.webhookUrlNoHostOrAddress")]
PushWebhookUrlNoHostOrAddress,
/// `storage.objects.watchAll`'s address property must be an HTTPS URL.
#[serde(rename = "push.webhookUrlNotHttps")]
PushWebhookUrlNotHttps,
/// A required URL parameter or required request body JSON property is missing.
Required,
/// The resource is encrypted with a customer-supplied encryption key, but the request did not
/// provide one.
ResourceIsEncryptedWithCustomerEncryptionKey,
/// The resource is not encrypted with a customer-supplied encryption key, but the request
/// provided one.
ResourceNotEncryptedWithCustomerEncryptionKey,
/// A request was made to an API version that has been turned down. Clients will need to update
/// to a supported version.
TurnedDown,
/// The user project specified in the request does not match the user project specifed in an
/// earlier, related request.
UserProjectInconsistent,
/// The user project specified in the request is invalid, either because it is a malformed
/// project id or because it refers to a non-existent project.
UserProjectInvalid,
/// The requested bucket has Requester Pays enabled, the requester is not an owner of the
/// bucket, and no user project was present in the request.
UserProjectMissing,
/// storage.objects.insert must be invoked as an upload rather than a metadata.
WrongUrlForUpload,
// </bad requests>
// <unauthorized>
/// Access to a Requester Pays bucket requires authentication.
#[serde(rename = "AuthenticationRequiredRequesterPays")]
AuthenticationRequiredRequesterPays,
/// This error indicates a problem with the authorization provided in the request to Cloud
/// Storage. The following are some situations where that will occur:
///
/// * The OAuth access token has expired and needs to be refreshed. This can be avoided by
/// refreshing the access token early, but code can also catch this error, refresh the token
/// and retry automatically.
/// * Multiple non-matching authorizations were provided; choose one mode only.
/// * The OAuth access token's bound project does not match the project associated with the
/// provided developer key.
/// * The Authorization header was of an unrecognized format or uses an unsupported credential
/// type.
AuthError,
/// When downloading content from a cookie-authenticated site, e.g., using the Storage Browser,
/// the response will redirect to a temporary domain. This error will occur if access to said
/// domain occurs after the domain expires. Issue the original request again, and receive a new
/// redirect.
LockedDomainExpired,
/// Requests to storage.objects.watchAll will fail unless you verify you own the domain.
#[serde(rename = "push.webhookUrlUnauthorized")]
PushWebhookUrlUnauthorized,
// /// Access to a non-public method that requires authorization was made, but none was provided in
// /// the Authorization header or through other means.
// Required,
// </unauthorized>
// <forbidden>
/// The account associated with the project that owns the bucket or object has been disabled. Check the Google Cloud Console to see if there is a problem with billing, and if not, contact account support.
AccountDisabled,
/// The Cloud Storage JSON API is restricted by law from operating with certain countries.
CountryBlocked,
/// According to access control policy, the current user does not have access to perform the requested action. This code applies even if the resource being acted on doesn't exist.
Forbidden,
/// According to access control policy, the current user does not have access to perform the requested action. This code applies even if the resource being acted on doesn't exist.
InsufficientPermissions,
/// Object overwrite or deletion is not allowed due to an active hold on the object.
ObjectUnderActiveHold,
/// The Cloud Storage rate limit was exceeded. Retry using exponential backoff.
RateLimitExceeded,
/// Object overwrite or deletion is not allowed until the object meets the retention period set by the retention policy on the bucket.
RetentionPolicyNotMet,
/// Requests to this API require SSL.
SslRequired,
/// Calls to storage.channels.stop require that the caller own the channel.
StopChannelCallerNotOwner,
/// This error implies that for the project associated with the OAuth token or the developer key provided, access to Cloud Storage JSON API is not enabled. This is most commonly because Cloud Storage JSON API is not enabled in the Google Cloud Console, though there are other cases where the project is blocked or has been deleted when this can occur.
#[serde(rename = "UsageLimits.accessNotConfigured")]
UsageLimitsAccessNotConfigured,
/// The requester is not authorized to use the project specified in their request. The
/// requester must have either the serviceusage.services.use permission or the Editor role for
/// the specified project.
#[serde(rename = "UserProjectAccessDenied")]
UserProjectAccessDenied,
/// There is a problem with the project used in the request that prevents the operation from
/// completing successfully. One issue could be billing. Check the billing page to see if you
/// have a past due balance or if the credit card (or other payment mechanism) on your account is expired. For project creation, see the Projects page in the Google Cloud Console. For other problems, see the Resources and Support page.
#[serde(rename = "UserProjectAccountProblem")]
UserProjectAccountProblem,
/// The developer-specified per-user rate quota was exceeded. If you are the developer, then
/// you can view these quotas at Quotas pane in the Google Cloud Console.
UserRateLimitExceeded,
/// Seems to indicate the same thing
// NONEXHAUST
QuotaExceeded,
// </forbidden>
/// Either there is no API method associated with the URL path of the request, or the request
/// refers to one or more resources that were not found.
NotFound,
/// Either there is no API method associated with the URL path of the request, or the request
/// refers to one or more resources that were not found.
MethodNotAllowed,
/// The request timed out. Please try again using truncated exponential backoff.
UploadBrokenConnection,
/// A request to change a resource, usually a storage.*.update or storage.*.patch method, failed
/// to commit the change due to a conflicting concurrent change to the same resource. The
/// request can be retried, though care should be taken to consider the new state of the
/// resource to avoid blind overwriting of other agent's changes.
Conflict,
/// You have attempted to use a resumable upload session that is no longer available. If the
/// reported status code was not successful and you still wish to upload the file, you must
/// start a new session.
Gone,
// /// You must provide the Content-Length HTTP header. This error has no response body.
// LengthRequired,
// <precondition failed>
/// At least one of the pre-conditions you specified did not hold.
ConditionNotMet,
/// Request violates an OrgPolicy constraint.
OrgPolicyConstraintFailed,
// </precondition failed>
/// The Cloud Storage JSON API supports up to 5 TB objects.
///
/// This error may, alternatively, arise if copying objects between locations and/or storage
/// classes can not complete within 30 seconds. In this case, use the `Object::rewrite` method
/// instead.
UploadTooLarge,
/// The requested Range cannot be satisfied.
RequestedRangeNotSatisfiable,
/// A [Cloud Storage JSON API usage limit](https://cloud.google.com/storage/quotas) was
/// exceeded. If your application tries to use more than its limit, additional requests will
/// fail. Throttle your client's requests, and/or use truncated exponential backoff.
#[serde(rename = "usageLimits.rateLimitExceeded")]
UsageLimitsRateLimitExceeded,
// <internal server error>
/// We encountered an internal error. Please try again using truncated exponential backoff.
BackendError,
/// We encountered an internal error. Please try again using truncated exponential backoff.
InternalError,
// </internal server error>
/// May be returned by Google, meaning undocumented.
// NONEXHAUST
GatewayTimeout,
}
#[derive(Debug, serde::Deserialize)]
#[serde(rename = "camelCase")]
enum BadRequest {}
#[derive(Debug, serde::Deserialize)]
#[serde(rename = "camelCase")]
enum Unauthorized {}
#[derive(Debug, serde::Deserialize)]
#[serde(rename = "camelCase")]
enum Forbidden {}
#[derive(Debug, serde::Deserialize)]
#[serde(rename = "camelCase")]
enum PreconditionFailed {}
#[derive(Debug, serde::Deserialize)]
#[serde(rename = "camelCase")]
enum InternalServerError {}