stash/pkg/utils/image.go

66 lines
1.7 KiB
Go
Raw Normal View History

2019-02-09 12:30:49 +00:00
package utils
import (
"crypto/md5"
2019-02-09 12:30:49 +00:00
"encoding/base64"
"fmt"
"net/http"
2019-02-09 12:30:49 +00:00
"regexp"
"strings"
2019-02-09 12:30:49 +00:00
)
// ProcessBase64Image transforms a base64 encoded string from a form post and returns the MD5 hash of the data and the
// image itself as a byte slice.
2019-02-09 12:30:49 +00:00
func ProcessBase64Image(imageString string) (string, []byte, error) {
if imageString == "" {
return "", nil, fmt.Errorf("empty image string")
}
regex := regexp.MustCompile(`^data:.+\/(.+);base64,(.*)$`)
matches := regex.FindStringSubmatch(imageString)
var encodedString string
if len(matches) > 2 {
encodedString = regex.FindStringSubmatch(imageString)[2]
} else {
encodedString = imageString
}
imageData, err := GetDataFromBase64String(encodedString)
if err != nil {
return "", nil, err
}
return MD5FromBytes(imageData), imageData, nil
}
// GetDataFromBase64String returns the given base64 encoded string as a byte slice
2019-02-09 12:30:49 +00:00
func GetDataFromBase64String(encodedString string) ([]byte, error) {
return base64.StdEncoding.DecodeString(encodedString)
}
// GetBase64StringFromData returns the given byte slice as a base64 encoded string
2019-02-09 12:30:49 +00:00
func GetBase64StringFromData(data []byte) string {
return base64.StdEncoding.EncodeToString(data)
// Really slow
//result = regexp.MustCompile(`(.{60})`).ReplaceAllString(result, "$1\n")
//if result[len(result)-1:] != "\n" {
// result += "\n"
//}
//return result
}
func ServeImage(image []byte, w http.ResponseWriter, r *http.Request) error {
etag := fmt.Sprintf("%x", md5.Sum(image))
if match := r.Header.Get("If-None-Match"); match != "" {
if strings.Contains(match, etag) {
w.WriteHeader(http.StatusNotModified)
return nil
}
}
w.Header().Add("Etag", etag)
_, err := w.Write(image)
return err
}