1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

add example for package gres

This commit is contained in:
John 2020-03-28 21:32:29 +08:00
parent 4c610b4f58
commit 8ecd62d3de
10 changed files with 61 additions and 40 deletions

View File

@ -1,16 +0,0 @@
package main
import (
"github.com/gogf/gf/os/gres"
_ "github.com/gogf/gf/os/gres/testdata"
)
func main() {
gres.Dump()
//file := gres.Get("www")
//fmt.Println(file.Open())
//g.Dump(gres.ScanDir("/root/image", "*"))
//g.Dump(gres.Scan("/root/image/", "*", true))
//g.Dump(gres.Scan("/template", "*"))
//g.Dump(gres.Scan("/template/layout2", "*.html", true))
}

View File

@ -0,0 +1,19 @@
package main
import (
"github.com/gogf/gf/frame/g"
"github.com/gogf/gf/net/ghttp"
_ "github.com/gogf/gf/os/gres/testdata/example/boot"
)
func main() {
s := g.Server()
s.Group("/", func(group *ghttp.RouterGroup) {
group.GET("/template", func(r *ghttp.Request) {
r.Response.WriteTplDefault(g.Map{
"name": "GoFrame",
})
})
})
s.Run()
}

View File

@ -1,31 +1,25 @@
package main
import (
"github.com/gogf/gf/frame/g"
"github.com/gogf/gf/frame/gins"
"github.com/gogf/gf/os/glog"
"github.com/gogf/gf/crypto/gaes"
"github.com/gogf/gf/os/gfile"
"github.com/gogf/gf/os/gres"
)
func getNameLogger(name, path string) *glog.Logger {
inst := gins.Get(name)
if inst == nil {
logger := g.Log(name)
logConf := map[string]interface{}{
"Path": path,
"Level": "ALL",
}
if err := logger.SetConfigWithMap(logConf); err != nil {
panic(err)
}
return logger
}
return inst.(*glog.Logger)
}
var (
CryptoKey = []byte("x76cgqt36i9c863bzmotuf8626dxiwu0")
)
func main() {
alog := getNameLogger("logger.日志1", "c:/logger1")
alog.Print(1)
blog := getNameLogger("logger.日志2", "c:/logger2")
blog.Print(2)
binContent, err := gres.Pack("public,config")
if err != nil {
panic(err)
}
binContent, err = gaes.Encrypt(binContent, CryptoKey)
if err != nil {
panic(err)
}
if err := gfile.PutBytes("data.bin", binContent); err != nil {
panic(err)
}
}

View File

@ -7,13 +7,14 @@
package gres_test
import (
_ "github.com/gogf/gf/os/gres/testdata/data"
"testing"
"github.com/gogf/gf/frame/g"
"github.com/gogf/gf/test/gtest"
"github.com/gogf/gf/os/gres"
_ "github.com/gogf/gf/os/gres/testdata/data"
)
func Test_Basic(t *testing.T) {

9
os/gres/testdata/example/boot/data.go vendored Normal file
View File

@ -0,0 +1,9 @@
package boot
import "github.com/gogf/gf/os/gres"
func init() {
if err := gres.Add("1f8b08000000000002ff0af066661161e060606048cea809604002420c9c0cc9f9796999e9fa104aaf243f37273484958191cbbb3e8e2bba38b5a82cb528964b414141c13125a528b5b818c4b45550b2b2b0b0b050024b04831505e5e79780240a4a9372329395b8b8a2cb3253cb619a5d52d3124b734adc327352418a32f352522bf44a0a7294a0b23999b99925a945c520b315a29554aa957414946a9562b9b8b8b802bcd939b81c64d7b63330308030c23fad68fe6183fb07ec072feffa389066642508cdd6e9a89a05193819208ed787382fa3041a16973cebe33c527372f21541a6859dd19acb06b68c905320a611e1940c2cf152929a5b90935892aa0f0f2bb041a2de50b728a854ebe525e6a6d6821d75255b6e263f0303033f5e477120998bc7598c4c22cc8804831cf42087c1c09246108927f9201b842d7860c1cee070016e1092ab109a4131851cea8228aee06564c0136fc43b221a6e0e564780e2083994518362062303be18c3e70a0e14577c403208c91dac6c1007b3314c666460d06702f100010000ffffc7c852f1d8030000"); err != nil {
panic(err)
}
}

View File

@ -0,0 +1,11 @@
[server]
Address = ":8888"
ServerRoot = "public"
[viewer]
DefaultFile = "index.tpl"
Delimiters = ["${", "}"]

View File

@ -0,0 +1 @@
Hello!

View File

@ -0,0 +1 @@
Hello ${.name}!

View File

@ -40,6 +40,7 @@ func MapPossibleItemByKey(data map[string]interface{}, key string) (string, inte
}
// Loop for check.
for k, v := range data {
// Remove all special chars and compare with case insensitive.
if strings.EqualFold(replaceCharReg.ReplaceAllString(k, ""), replacedKey) {
return k, v
}