-
Notifications
You must be signed in to change notification settings - Fork 9
/
demo.go
executable file
·210 lines (181 loc) · 5.37 KB
/
demo.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
/**
* Copyright 2015 @ 56x.net.
* name :
* author : jarryliu
* date : 2015-04-27 00:53
* description :
* history :
*/
package main
import (
"fmt"
"github.com/ixre/gof"
"github.com/ixre/gof/db"
"github.com/ixre/gof/log"
"github.com/ixre/gof/storage"
"github.com/ixre/gof/web"
"github.com/ixre/gof/web/mvc"
"net/http"
"strings"
)
var _ gof.App = new(HttpApp)
// 实现gof.App接口,以支持配置(config)、DB、ORM、日志(logger)、
// 模版(template)、存储(storage)的访问。同时可以扩展,以支持自定义
// 的需求。App接口在应用上下文中可以获取到。
type HttpApp struct {
config *gof.Config
dbConn db.Connector
template *gof.Template
logger log.ILogger
}
func (h *HttpApp) Registry() *gof.Registry {
return &gof.Registry{}
}
// 配置,支持从文件中加载。用于文件存储某些简单数据。
func (h *HttpApp) Config() *gof.Config {
if h.config == nil {
h.config = gof.NewConfig()
h.config.Set("SYS_NAME", "GOF DEMO")
h.config.Set("MYSQL_HOST", "127.0.0.1")
h.config.Set("MYSQL_PORT", 3306)
h.config.Set("MYSQL_MAXCONN", 1000)
h.config.Set("MYSQL_USR", "root")
h.config.Set("MYSQL_PWD", "")
h.config.Set("MYSQL_DBNAME", "")
}
return h.config
}
// 数据库连接器、Connector.ORM()可以访问ORM
func (h *HttpApp) Db() db.Connector {
if h.dbConn == nil {
source := fmt.Sprintf("%s:%s@tcp(%s:%d)/%s?charset=utf-8&loc=Local",
h.Config().GetString("MYSQL_USR"),
h.Config().GetString("MYSQL_PWD"),
h.Config().GetString("MYSQL_HOST"),
h.Config().GetInt("MYSQL_PORT"),
h.Config().GetString("MYSQL_DBNAME"),
)
h.dbConn, _ = db.NewConnector("mysql", source, h.Log(), false)
}
return h.dbConn
}
// 模板
func (h *HttpApp) Template() *gof.Template {
if h.template == nil {
h.template = &gof.Template{
Init: func(v *gof.TemplateDataMap) {
(*v)["SYS_NAME"] = h.Config().GetString("SYS_NAME")
},
}
}
return h.template
}
// 是否调试
func (h *HttpApp) Debug() bool {
return false
}
// 存储,通常用来存储全局的变量。或缓存一些共享的数据。
func (h *HttpApp) Storage() storage.Interface {
// 使用一个Redis存储数据
return storage.NewRedisStorage(nil)
}
// 日志
func (h *HttpApp) Log() log.ILogger {
if h.logger == nil {
var flag = 0
if h.Debug() {
flag = log.LOpen | log.LESource | log.LStdFlags
}
// 可创建文件的io.Writer,将日志存储到文件。
h.logger = log.NewLogger(nil, " O2O", flag)
}
return h.logger
}
// 获取Http请求代理处理程序
func getInterceptor(a gof.App, routes web.Route) *web.Interceptor {
var in = web.NewInterceptor(a, getHttpExecFunc(routes))
// 处理发生的异常
in.Except = web.HandleDefaultHttpExcept
in.Before = nil
in.After = nil
return in
}
// 获取执行方法
func getHttpExecFunc(routes web.Route) web.RequestHandler {
return func(ctx *web.Context) {
r, w := ctx.Request, ctx.Response
switch host, f := r.Host, strings.HasPrefix; {
//静态文件,处理http://static.domain.com的请求。
case f(host, "static."):
http.ServeFile(w, r, "./static"+r.URL.Path)
default:
routes.Handle(ctx)
}
}
}
// 控制器(任意类型)
type testController struct {
}
// 控制器可以实现mvc.Filter接口
var _ mvc.Filter = new(testController)
// 控制器生成器
func testControllerGenerator() mvc.Controller {
return &testController{}
}
// 请求时执行函数,返回true继续执行,返回false即中止。
// 可以做验证如:判断用户登录这类的逻辑。
func (h *testController) Requesting(ctx *web.Context) bool {
return true
}
// 请求结束时执行。
// 可以做统一设置Header,gzip压缩,页面执行时间此类逻辑
func (h *testController) RequestEnd(ctx *web.Context) {
ctx.Response.Write([]byte("\r\nRequest End."))
}
// Index动作,GET请求。来源URL:/test/index
// Index为默认的动作,即也可以通过/test访问呢。
// 如果为POST请求,约定在动作名称后添加"_post",即"Index_post"
func (h *testController) Index(ctx *web.Context) {
ctx.Response.Write([]byte("\r\nRequesting....."))
}
func main() {
app := &HttpApp{}
// MVC路由表
routes := mvc.NewRoute(nil)
// 注册控制器,test与/test/index中的test对应
routes.NormalRegister("test", testControllerGenerator)
// 注册单例控制器
routes.Register("test_all", &testController{})
// 除了控制器,可以添加自定义的路由规则(正则表达式)
routes.Add("^/[0-9]$", func(ctx *web.Context) {
// 直接输出内容
ctx.Response.Write([]byte("数字路径"))
})
// 默认页路由
routes.Add("/", func(ctx *web.Context) {
// sysName := ctx.App.Config().GetString("SYS_NAME")
// ctx.ResponseWriter.Write([]byte("Hello," + sysName + "!"))
// return
// 使用模板
//data := gof.TemplateDataMap{
// "变量名": "变量值",
//}
// ctx.App.Template().Execute(ctx.Response, data, "template.html")
return
// 使用会话
//ctx.Session().Set("user", "jarrysix")
//ctx.Session().Save()
// 使用DB和ORM
//db := ctx.App.Db()
//orm := db.o
//_ = orm.Version()
})
// 使用一个拦截器,来拦截请求。
// 拦截器里可以决定,访问对应的路由表。
// 一个系统通常有多个子系统,每个子系统对应一个路由表。
var in = getInterceptor(app, routes)
go http.ListenAndServe(":8080", in)
log.Println("[ OK] - web is listening on port :8080.")
var ch = make(chan int, 1)
<-ch
}