mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Move char_limiter to utils and rename
This commit is contained in:
parent
afc9acd925
commit
4d1492831d
2 changed files with 21 additions and 17 deletions
|
@ -23,6 +23,7 @@ import (
|
||||||
"code.gitea.io/gitea/modules/setting"
|
"code.gitea.io/gitea/modules/setting"
|
||||||
"code.gitea.io/gitea/modules/util"
|
"code.gitea.io/gitea/modules/util"
|
||||||
"code.gitea.io/gitea/modules/web"
|
"code.gitea.io/gitea/modules/web"
|
||||||
|
"code.gitea.io/routers/utils"
|
||||||
"github.com/google/uuid"
|
"github.com/google/uuid"
|
||||||
|
|
||||||
ap "github.com/go-ap/activitypub"
|
ap "github.com/go-ap/activitypub"
|
||||||
|
@ -206,7 +207,7 @@ func createUserFromAP(ctx *context.APIContext, personId forgefed.PersonId) (*use
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return &user_model.User{}, err
|
return &user_model.User{}, err
|
||||||
}
|
}
|
||||||
log.Info("RepositoryInbox: got body: %v", char_limiter(string(body), 120))
|
log.Info("RepositoryInbox: got body: %v", utils.CharLimiter(string(body), 120))
|
||||||
|
|
||||||
person := ap.Person{}
|
person := ap.Person{}
|
||||||
err = person.UnmarshalJSON(body)
|
err = person.UnmarshalJSON(body)
|
||||||
|
@ -249,19 +250,3 @@ func createUserFromAP(ctx *context.APIContext, personId forgefed.PersonId) (*use
|
||||||
|
|
||||||
return user, nil
|
return user, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Thanks to https://www.socketloop.com/tutorials/golang-characters-limiter-example
|
|
||||||
func char_limiter(s string, limit int) string {
|
|
||||||
|
|
||||||
reader := strings.NewReader(s)
|
|
||||||
|
|
||||||
buff := make([]byte, limit)
|
|
||||||
|
|
||||||
n, _ := io.ReadAtLeast(reader, buff, limit)
|
|
||||||
|
|
||||||
if n != 0 {
|
|
||||||
return fmt.Sprint(string(buff), "...")
|
|
||||||
} else {
|
|
||||||
return s
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -4,7 +4,9 @@
|
||||||
package utils
|
package utils
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"html"
|
"html"
|
||||||
|
"io"
|
||||||
"net/url"
|
"net/url"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
@ -28,3 +30,20 @@ func IsExternalURL(rawURL string) bool {
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Limit number of characters in a string (useful to prevent log injection attacks and overly long log outputs)
|
||||||
|
// Thanks to https://www.socketloop.com/tutorials/golang-characters-limiter-example
|
||||||
|
func CharLimiter(s string, limit int) string {
|
||||||
|
|
||||||
|
reader := strings.NewReader(s)
|
||||||
|
|
||||||
|
buff := make([]byte, limit)
|
||||||
|
|
||||||
|
n, _ := io.ReadAtLeast(reader, buff, limit)
|
||||||
|
|
||||||
|
if n != 0 {
|
||||||
|
return fmt.Sprint(string(buff), "...")
|
||||||
|
} else {
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue