mirror of
https://github.com/WJQSERVER-STUDIO/ghproxy.git
synced 2026-02-03 08:11:11 +08:00
update nest: use dispatcher to get lower allocs(4.3.5-rc.0)
This commit is contained in:
parent
3adc110298
commit
3d05902824
7 changed files with 299 additions and 86 deletions
|
|
@ -7,6 +7,33 @@ import (
|
|||
"github.com/infinite-iroha/touka"
|
||||
)
|
||||
|
||||
// buildRoutingPath 使用 strings.Builder 来高效地构建最终的 URL.
|
||||
// 这避免了使用标准字符串拼接时发生的多次内存分配.
|
||||
func buildRoutingPath(rawPath, matcher string) string {
|
||||
var sb strings.Builder
|
||||
// 预分配内存以提高性能
|
||||
// (This comment is in Chinese as requested by the user)
|
||||
sb.Grow(len(rawPath) + 30)
|
||||
sb.WriteString("https://")
|
||||
|
||||
if matcher == "blob" {
|
||||
sb.WriteString("raw.githubusercontent.com")
|
||||
if len(rawPath) > 10 { // len("github.com")
|
||||
pathSegment := rawPath[10:]
|
||||
if i := strings.Index(pathSegment, "/blob/"); i != -1 {
|
||||
sb.WriteString(pathSegment[:i])
|
||||
sb.WriteString("/")
|
||||
sb.WriteString(pathSegment[i+len("/blob/"):])
|
||||
} else {
|
||||
sb.WriteString(pathSegment)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
sb.WriteString(rawPath)
|
||||
}
|
||||
return sb.String()
|
||||
}
|
||||
|
||||
func RoutingHandler(cfg *config.Config) touka.HandlerFunc {
|
||||
return func(c *touka.Context) {
|
||||
|
||||
|
|
@ -44,17 +71,11 @@ func RoutingHandler(cfg *config.Config) touka.HandlerFunc {
|
|||
return
|
||||
}
|
||||
|
||||
// 处理blob/raw路径
|
||||
rawPath = buildRoutingPath(rawPath, matcher)
|
||||
if matcher == "blob" {
|
||||
rawPath = rawPath[10:]
|
||||
rawPath = "raw.githubusercontent.com" + rawPath
|
||||
rawPath = strings.Replace(rawPath, "/blob/", "/", 1)
|
||||
matcher = "raw"
|
||||
}
|
||||
|
||||
// 为rawpath加入https:// 头
|
||||
rawPath = "https://" + rawPath
|
||||
|
||||
switch matcher {
|
||||
case "releases", "blob", "raw", "gist", "api":
|
||||
ChunkedProxyRequest(ctx, c, rawPath, cfg, matcher)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue