-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add utility for parsing Retry-After header
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// Copyright (c) 2021 Dillon Dixon | ||
// Copyright (c) 2023 Tulir Asokan | ||
// | ||
// This Source Code Form is subject to the terms of the Mozilla Public | ||
// License, v. 2.0. If a copy of the MPL was not distributed with this | ||
// file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
// Package retryafter contains a utility function for parsing the Retry-After HTTP header. | ||
package retryafter | ||
|
||
import ( | ||
"net/http" | ||
"strconv" | ||
"time" | ||
) | ||
|
||
// Parse parses the backoff time specified in the Retry-After header if present. | ||
// See https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After. | ||
// | ||
// The second parameter is the fallback duration to use if the header is not present or invalid. | ||
// | ||
// Example: | ||
// | ||
// time.Sleep(retryafter.Parse(resp.Header.Get("Retry-After"), 5*time.Second)) | ||
func Parse(retryAfter string, fallback time.Duration) time.Duration { | ||
if retryAfter == "" { | ||
return fallback | ||
} else if t, err := time.Parse(http.TimeFormat, retryAfter); err == nil { | ||
return time.Until(t) | ||
} else if seconds, err := strconv.Atoi(retryAfter); err == nil { | ||
return time.Duration(seconds) * time.Second | ||
} | ||
|
||
return fallback | ||
} | ||
|
||
// Should returns true if the given status code indicates that the request should be retried. | ||
// | ||
// if retryafter.Should(resp.StatusCode, true) { | ||
// time.Sleep(retryafter.Parse(resp.Header.Get("Retry-After"), 5*time.Second)) | ||
// } | ||
func Should(statusCode int, retryOnRateLimit bool) bool { | ||
switch statusCode { | ||
case http.StatusBadGateway, http.StatusServiceUnavailable, http.StatusGatewayTimeout: | ||
return true | ||
case http.StatusTooManyRequests: | ||
return retryOnRateLimit | ||
default: | ||
return false | ||
} | ||
} |