2013-09-03 17:23:58 +00:00
|
|
|
// Copyright 2013 bee authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License"): you may
|
|
|
|
// not use this file except in compliance with the License. You may obtain
|
|
|
|
// a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing permissions and limitations
|
|
|
|
// under the License.
|
|
|
|
|
2013-07-24 11:20:30 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
path "path/filepath"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
var cmdNew = &Command{
|
|
|
|
UsageLine: "new [appname]",
|
|
|
|
Short: "create an application base on beego framework",
|
|
|
|
Long: `
|
|
|
|
create an application base on beego framework,
|
|
|
|
|
|
|
|
which in the current path with folder named [appname].
|
|
|
|
|
|
|
|
The [appname] folder has following structure:
|
|
|
|
|
|
|
|
|- main.go
|
|
|
|
|- conf
|
|
|
|
|- app.conf
|
|
|
|
|- controllers
|
|
|
|
|- default.go
|
|
|
|
|- models
|
2013-12-23 15:45:15 +00:00
|
|
|
|- routers
|
2014-06-24 09:01:31 +00:00
|
|
|
|- router.go
|
2013-12-23 15:28:31 +00:00
|
|
|
|- tests
|
|
|
|
|- default_test.go
|
|
|
|
|- static
|
2013-07-24 11:20:30 +00:00
|
|
|
|- js
|
|
|
|
|- css
|
2014-06-24 09:01:31 +00:00
|
|
|
|- img
|
2013-07-24 11:20:30 +00:00
|
|
|
|- views
|
2014-06-24 09:01:31 +00:00
|
|
|
index.tpl
|
2013-07-24 11:20:30 +00:00
|
|
|
|
|
|
|
`,
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
cmdNew.Run = createApp
|
|
|
|
}
|
|
|
|
|
|
|
|
func createApp(cmd *Command, args []string) {
|
|
|
|
curpath, _ := os.Getwd()
|
|
|
|
if len(args) != 1 {
|
2013-10-30 23:39:44 +00:00
|
|
|
ColorLog("[ERRO] Argument [appname] is missing\n")
|
2013-07-24 11:20:30 +00:00
|
|
|
os.Exit(2)
|
|
|
|
}
|
|
|
|
|
|
|
|
gopath := os.Getenv("GOPATH")
|
|
|
|
Debugf("gopath:%s", gopath)
|
|
|
|
if gopath == "" {
|
2013-10-30 23:39:44 +00:00
|
|
|
ColorLog("[ERRO] $GOPATH not found\n")
|
|
|
|
ColorLog("[HINT] Set $GOPATH in your environment vairables\n")
|
2013-07-24 11:20:30 +00:00
|
|
|
os.Exit(2)
|
|
|
|
}
|
|
|
|
haspath := false
|
|
|
|
appsrcpath := ""
|
|
|
|
|
|
|
|
wgopath := path.SplitList(gopath)
|
|
|
|
for _, wg := range wgopath {
|
2013-08-12 04:38:57 +00:00
|
|
|
wg, _ = path.EvalSymlinks(path.Join(wg, "src"))
|
2013-07-24 11:20:30 +00:00
|
|
|
|
2013-08-12 00:43:00 +00:00
|
|
|
if strings.HasPrefix(strings.ToLower(curpath), strings.ToLower(wg)) {
|
2013-07-24 11:20:30 +00:00
|
|
|
haspath = true
|
|
|
|
appsrcpath = wg
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !haspath {
|
2013-10-30 23:39:44 +00:00
|
|
|
ColorLog("[ERRO] Unable to create an application outside of $GOPATH(%s)\n", gopath)
|
|
|
|
ColorLog("[HINT] Change your work directory by `cd ($GOPATH%ssrc)`\n", string(path.Separator))
|
2013-07-24 11:20:30 +00:00
|
|
|
os.Exit(2)
|
|
|
|
}
|
|
|
|
|
|
|
|
apppath := path.Join(curpath, args[0])
|
|
|
|
|
|
|
|
if _, err := os.Stat(apppath); os.IsNotExist(err) == false {
|
|
|
|
fmt.Printf("[ERRO] Path(%s) has alreay existed\n", apppath)
|
|
|
|
os.Exit(2)
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println("[INFO] Creating application...")
|
|
|
|
|
|
|
|
os.MkdirAll(apppath, 0755)
|
|
|
|
fmt.Println(apppath + string(path.Separator))
|
|
|
|
os.Mkdir(path.Join(apppath, "conf"), 0755)
|
|
|
|
fmt.Println(path.Join(apppath, "conf") + string(path.Separator))
|
|
|
|
os.Mkdir(path.Join(apppath, "controllers"), 0755)
|
|
|
|
fmt.Println(path.Join(apppath, "controllers") + string(path.Separator))
|
|
|
|
os.Mkdir(path.Join(apppath, "models"), 0755)
|
|
|
|
fmt.Println(path.Join(apppath, "models") + string(path.Separator))
|
2013-12-23 15:45:15 +00:00
|
|
|
os.Mkdir(path.Join(apppath, "routers"), 0755)
|
|
|
|
fmt.Println(path.Join(apppath, "routers") + string(path.Separator))
|
2013-12-23 15:28:31 +00:00
|
|
|
os.Mkdir(path.Join(apppath, "tests"), 0755)
|
|
|
|
fmt.Println(path.Join(apppath, "tests") + string(path.Separator))
|
2013-07-24 11:20:30 +00:00
|
|
|
os.Mkdir(path.Join(apppath, "static"), 0755)
|
|
|
|
fmt.Println(path.Join(apppath, "static") + string(path.Separator))
|
|
|
|
os.Mkdir(path.Join(apppath, "static", "js"), 0755)
|
|
|
|
fmt.Println(path.Join(apppath, "static", "js") + string(path.Separator))
|
|
|
|
os.Mkdir(path.Join(apppath, "static", "css"), 0755)
|
|
|
|
fmt.Println(path.Join(apppath, "static", "css") + string(path.Separator))
|
|
|
|
os.Mkdir(path.Join(apppath, "static", "img"), 0755)
|
|
|
|
fmt.Println(path.Join(apppath, "static", "img") + string(path.Separator))
|
|
|
|
fmt.Println(path.Join(apppath, "views") + string(path.Separator))
|
|
|
|
os.Mkdir(path.Join(apppath, "views"), 0755)
|
|
|
|
fmt.Println(path.Join(apppath, "conf", "app.conf"))
|
|
|
|
writetofile(path.Join(apppath, "conf", "app.conf"), strings.Replace(appconf, "{{.Appname}}", args[0], -1))
|
|
|
|
|
|
|
|
fmt.Println(path.Join(apppath, "controllers", "default.go"))
|
|
|
|
writetofile(path.Join(apppath, "controllers", "default.go"), controllers)
|
|
|
|
|
|
|
|
fmt.Println(path.Join(apppath, "views", "index.tpl"))
|
|
|
|
writetofile(path.Join(apppath, "views", "index.tpl"), indextpl)
|
|
|
|
|
2013-12-23 15:28:31 +00:00
|
|
|
fmt.Println(path.Join(apppath, "routers", "router.go"))
|
|
|
|
writetofile(path.Join(apppath, "routers", "router.go"), strings.Replace(router, "{{.Appname}}", strings.Join(strings.Split(apppath[len(appsrcpath)+1:], string(path.Separator)), "/"), -1))
|
|
|
|
|
|
|
|
fmt.Println(path.Join(apppath, "tests", "default_test.go"))
|
|
|
|
writetofile(path.Join(apppath, "tests", "default_test.go"), strings.Replace(test, "{{.Appname}}", strings.Join(strings.Split(apppath[len(appsrcpath)+1:], string(path.Separator)), "/"), -1))
|
|
|
|
|
2013-07-24 11:20:30 +00:00
|
|
|
fmt.Println(path.Join(apppath, "main.go"))
|
2013-09-12 11:20:48 +00:00
|
|
|
writetofile(path.Join(apppath, "main.go"), strings.Replace(maingo, "{{.Appname}}", strings.Join(strings.Split(apppath[len(appsrcpath)+1:], string(path.Separator)), "/"), -1))
|
2013-07-24 11:20:30 +00:00
|
|
|
|
2013-10-30 23:39:44 +00:00
|
|
|
ColorLog("[SUCC] New application successfully created!\n")
|
2013-07-24 11:20:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var appconf = `appname = {{.Appname}}
|
|
|
|
httpport = 8080
|
|
|
|
runmode = dev
|
|
|
|
`
|
|
|
|
|
|
|
|
var maingo = `package main
|
|
|
|
|
|
|
|
import (
|
2013-12-23 16:00:52 +00:00
|
|
|
_ "{{.Appname}}/routers"
|
2013-07-24 11:20:30 +00:00
|
|
|
"github.com/astaxie/beego"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
beego.Run()
|
|
|
|
}
|
|
|
|
|
|
|
|
`
|
2013-12-23 16:00:52 +00:00
|
|
|
var router = `package routers
|
2013-12-23 15:28:31 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"{{.Appname}}/controllers"
|
|
|
|
"github.com/astaxie/beego"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
beego.Router("/", &controllers.MainController{})
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
var test = `package test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
2014-04-03 08:46:47 +00:00
|
|
|
"runtime"
|
|
|
|
"path/filepath"
|
2013-12-23 16:00:52 +00:00
|
|
|
_ "{{.Appname}}/routers"
|
2014-06-24 09:01:31 +00:00
|
|
|
|
2013-12-23 15:28:31 +00:00
|
|
|
"github.com/astaxie/beego"
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
|
|
)
|
|
|
|
|
2014-04-03 08:41:44 +00:00
|
|
|
func init() {
|
|
|
|
_, file, _, _ := runtime.Caller(1)
|
2014-06-24 09:01:31 +00:00
|
|
|
apppath, _ := filepath.Abs(filepath.Dir(filepath.Join(file, ".." + string(filepath.Separator))))
|
2014-04-03 08:41:44 +00:00
|
|
|
beego.TestBeegoInit(apppath)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-23 15:28:31 +00:00
|
|
|
// TestMain is a sample to run an endpoint test
|
|
|
|
func TestMain(t *testing.T) {
|
2013-12-23 16:11:13 +00:00
|
|
|
r, _ := http.NewRequest("GET", "/", nil)
|
2013-12-23 15:28:31 +00:00
|
|
|
w := httptest.NewRecorder()
|
|
|
|
beego.BeeApp.Handlers.ServeHTTP(w, r)
|
2014-06-24 09:01:31 +00:00
|
|
|
|
2013-12-23 15:28:31 +00:00
|
|
|
beego.Trace("testing", "TestMain", "Code[%d]\n%s", w.Code, w.Body.String())
|
2014-06-24 09:01:31 +00:00
|
|
|
|
2013-12-23 15:28:31 +00:00
|
|
|
Convey("Subject: Test Station Endpoint\n", t, func() {
|
|
|
|
Convey("Status Code Should Be 200", func() {
|
|
|
|
So(w.Code, ShouldEqual, 200)
|
|
|
|
})
|
|
|
|
Convey("The Result Should Not Be Empty", func() {
|
|
|
|
So(w.Body.Len(), ShouldBeGreaterThan, 0)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
`
|
|
|
|
|
2013-07-24 11:20:30 +00:00
|
|
|
var controllers = `package controllers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/astaxie/beego"
|
|
|
|
)
|
|
|
|
|
|
|
|
type MainController struct {
|
|
|
|
beego.Controller
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *MainController) Get() {
|
|
|
|
this.Data["Website"] = "beego.me"
|
|
|
|
this.Data["Email"] = "astaxie@gmail.com"
|
|
|
|
this.TplNames = "index.tpl"
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
var indextpl = `<!DOCTYPE html>
|
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Beego</title>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
2014-06-24 09:01:31 +00:00
|
|
|
|
2013-09-26 03:22:35 +00:00
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
|
|
margin: 0px;
|
|
|
|
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 20px;
|
|
|
|
color: rgb(51, 51, 51);
|
|
|
|
background-color: rgb(255, 255, 255);
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero-unit {
|
|
|
|
padding: 60px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
border-radius: 6px 6px 6px 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
width: 940px;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.row {
|
|
|
|
margin-left: -20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin: 10px 0px;
|
|
|
|
font-family: inherit;
|
|
|
|
font-weight: bold;
|
|
|
|
text-rendering: optimizelegibility;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero-unit h1 {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
font-size: 60px;
|
|
|
|
line-height: 1;
|
|
|
|
letter-spacing: -1px;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.description {
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-left: 5px;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 200;
|
|
|
|
line-height: 30px;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0px 0px 10px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
2014-06-24 09:01:31 +00:00
|
|
|
|
2013-07-24 11:20:30 +00:00
|
|
|
<body>
|
|
|
|
<header class="hero-unit" style="background-color:#A9F16C">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="hero-text">
|
|
|
|
<h1>Welcome to Beego!</h1>
|
|
|
|
<p class="description">
|
|
|
|
Beego is a simple & powerful Go web framework which is inspired by tornado and sinatra.
|
|
|
|
<br />
|
|
|
|
Official website: <a href="http://{{.Website}}">{{.Website}}</a>
|
|
|
|
<br />
|
2013-10-04 14:29:43 +00:00
|
|
|
Contact me: {{.Email}}
|
2013-07-24 11:20:30 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
`
|
|
|
|
|
|
|
|
func writetofile(filename, content string) {
|
|
|
|
f, err := os.Create(filename)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
f.WriteString(content)
|
|
|
|
}
|