mirror of
https://git.phreedom.club/localhost_frssoft/bloat.git
synced 2024-10-31 18:57:16 +00:00
75 lines
1.4 KiB
Go
75 lines
1.4 KiB
Go
package mastodon
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"os"
|
|
)
|
|
|
|
type Error struct {
|
|
code int
|
|
err string
|
|
}
|
|
|
|
func (e Error) Error() string {
|
|
return e.err
|
|
}
|
|
|
|
func (e Error) IsAuthError() bool {
|
|
switch e.code {
|
|
case http.StatusForbidden, http.StatusUnauthorized:
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// Base64EncodeFileName returns the base64 data URI format string of the file with the file name.
|
|
func Base64EncodeFileName(filename string) (string, error) {
|
|
file, err := os.Open(filename)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
defer file.Close()
|
|
|
|
return Base64Encode(file)
|
|
}
|
|
|
|
// Base64Encode returns the base64 data URI format string of the file.
|
|
func Base64Encode(file *os.File) (string, error) {
|
|
fi, err := file.Stat()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
d := make([]byte, fi.Size())
|
|
_, err = file.Read(d)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return "data:" + http.DetectContentType(d) +
|
|
";base64," + base64.StdEncoding.EncodeToString(d), nil
|
|
}
|
|
|
|
// String is a helper function to get the pointer value of a string.
|
|
func String(v string) *string { return &v }
|
|
|
|
func parseAPIError(prefix string, resp *http.Response) error {
|
|
errMsg := fmt.Sprintf("%s: %s", prefix, resp.Status)
|
|
var e struct {
|
|
Error string `json:"error"`
|
|
}
|
|
|
|
json.NewDecoder(resp.Body).Decode(&e)
|
|
if e.Error != "" {
|
|
errMsg = fmt.Sprintf("%s: %s", errMsg, e.Error)
|
|
}
|
|
|
|
return Error{
|
|
code: resp.StatusCode,
|
|
err: errMsg,
|
|
}
|
|
}
|