-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
153 additions
and
151 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,133 @@ | ||
package starr | ||
|
||
import ( | ||
"crypto/tls" | ||
"fmt" | ||
"net/http" | ||
"strconv" | ||
"strings" | ||
"time" | ||
|
||
"golift.io/starr/debuglog" | ||
) | ||
|
||
// App can be used to satisfy a context value key. | ||
// It is not used in this library; provided for convenience. | ||
type App string | ||
|
||
// These constants are just here for convenience. | ||
const ( | ||
Emby App = "Emby" | ||
Lidarr App = "Lidarr" | ||
Plex App = "Plex" | ||
Prowlarr App = "Prowlarr" | ||
Radarr App = "Radarr" | ||
Readarr App = "Readarr" | ||
Sonarr App = "Sonarr" | ||
Whisparr App = "Whisparr" | ||
) | ||
|
||
// String turns an App name into a string. | ||
func (a App) String() string { | ||
return string(a) | ||
} | ||
|
||
// Lower turns an App name into a lowercase string. | ||
func (a App) Lower() string { | ||
return strings.ToLower(string(a)) | ||
} | ||
|
||
// Client returns the default client, and is used if one is not passed in. | ||
func Client(timeout time.Duration, verifySSL bool) *http.Client { | ||
return &http.Client{ | ||
Timeout: timeout, | ||
CheckRedirect: func(_ *http.Request, _ []*http.Request) error { | ||
return http.ErrUseLastResponse | ||
}, | ||
Transport: &http.Transport{ | ||
TLSClientConfig: &tls.Config{InsecureSkipVerify: !verifySSL}, //nolint:gosec | ||
}, | ||
} | ||
} | ||
|
||
// ClientWithDebug returns an http client with a debug logger enabled. | ||
func ClientWithDebug(timeout time.Duration, verifySSL bool, logConfig debuglog.Config) *http.Client { | ||
client := Client(timeout, verifySSL) | ||
client.Transport = debuglog.NewLoggingRoundTripper(logConfig, client.Transport) | ||
|
||
return client | ||
} | ||
|
||
// Itoa converts an int64 to a string. | ||
// Deprecated: Use starr.Str() instead. | ||
func Itoa(v int64) string { | ||
return Str(v) | ||
} | ||
|
||
// Str converts numbers and booleans to a string. | ||
func Str[I int | int64 | float64 | bool](val I) string { | ||
const ( | ||
base10 = 10 | ||
bits64 = 64 | ||
) | ||
|
||
switch val := any(val).(type) { | ||
case int: | ||
return strconv.Itoa(val) | ||
case bool: | ||
return strconv.FormatBool(val) | ||
case int64: | ||
return strconv.FormatInt(val, base10) | ||
case float64: | ||
return strconv.FormatFloat(val, 'f', -1, bits64) | ||
default: | ||
return fmt.Sprint(val) | ||
} | ||
} | ||
|
||
// None can be used to return only an error condition. The opposite of Must(). | ||
// If the last argument is an error, that's what gets returned, otherwise nil. | ||
func None(input ...any) error { | ||
if len(input) > 0 { | ||
err, _ := input[len(input)-1].(error) | ||
return err | ||
} | ||
|
||
return nil | ||
} | ||
|
||
// Must can be used to avoid checking an error you'll never run into. | ||
func Must[S any](input S, err error) S { | ||
if err != nil { | ||
panic("Must failed: " + err.Error()) | ||
} | ||
|
||
return input | ||
} | ||
|
||
// Ptr returns a pointer to the provided "whatever". | ||
func Ptr[P any](p P) *P { | ||
return &p | ||
} | ||
|
||
// True returns a pointer to a true boolean. | ||
func True() *bool { | ||
return Ptr(true) | ||
} | ||
|
||
// False returns a pointer to a false boolean. | ||
func False() *bool { | ||
return Ptr(false) | ||
} | ||
|
||
// String returns a pointer to a string. | ||
// Deprecated: Use Ptr() function instead. | ||
func String(s string) *string { | ||
return &s | ||
} | ||
|
||
// Int64 returns a pointer to the provided integer. | ||
// Deprecated: Use Ptr() function instead. | ||
func Int64(s int64) *int64 { | ||
return &s | ||
} |
This file was deleted.
Oops, something went wrong.
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
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
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