Fix: email address should be lowercase for requesting Gravatar (#758)

pull/765/head
Cinhi Young 4 years ago committed by GitHub
parent 3b22b4fd25
commit 9c78515c72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,6 +7,7 @@ import (
"net/url"
"os"
"path/filepath"
"strings"
model "github.com/cloudreve/Cloudreve/v3/models"
"github.com/cloudreve/Cloudreve/v3/pkg/serializer"
@ -200,8 +201,8 @@ func (service *AvatarService) Get(c *gin.Context) serializer.Response {
if err != nil {
return serializer.Err(serializer.CodeInternalSetting, "无法解析 Gravatar 服务器地址", err)
}
has := md5.Sum([]byte(user.Email))
email_lowered := strings.ToLower(user.Email)
has := md5.Sum([]byte(email_lowered))
avatar, _ := url.Parse(fmt.Sprintf("/avatar/%x?d=mm&s=%s", has, sizes[service.Size]))
return serializer.Response{

Loading…
Cancel
Save