add api demo

This commit is contained in:
miraclesu 2013-07-08 17:56:48 +08:00
parent 91c467505a
commit 6bfd839b68
1 changed files with 67 additions and 9 deletions

View File

@ -43,46 +43,100 @@ import (
) )
func main() { func main() {
beego.Router("/", &controllers.MainController{}) beego.Router("/{{.Version}}/users/:objectId", &controllers.UserController{})
beego.Router("/{{.Version}}/users", &controllers.UserController{})
beego.Run() beego.Run()
} }
` `
var apiModels = `package models var apiModels = `package models
type User struct { type User struct {
Id interface{}
Name string Name string
Email string Email string
} }
func (this *User) One(id interface{}) (user User, err error) {
// get user from DB
// user, err = query(id)
user = User{id, "astaxie", "astaxie@gmail.com"}
return
}
func (this *User) All() (users []User, err error) { func (this *User) All() (users []User, err error) {
// get all users from DB // get all users from DB
// users, err = queryAll() // users, err = queryAll()
users = append([]User{}, User{"astaxie", "astaxie@gmail.com"}) users = append([]User{}, User{1, "astaxie", "astaxie@gmail.com"})
users = append(users, User{2, "someone", "someone@gmail.com"})
return return
} }
func (this *User) Update(id interface{}) (err error) {
// user, err = update(id, this)
return
}
` `
var apiControllers = `package controllers var apiControllers = `package controllers
import ( import (
"encoding/json"
"{{.Appname}}/models" "{{.Appname}}/models"
"github.com/astaxie/beego" "github.com/astaxie/beego"
"io/ioutil"
) )
type MainController struct { type UserController struct {
beego.Controller beego.Controller
} }
func (this *MainController) Get() { func (this *UserController) Get() {
var user models.User var user models.User
users, err := user.All() objectId := this.Ctx.Params[":objectId"]
if err != nil { if objectId != "" {
this.Data["json"] = err user, err := user.One(objectId)
if err != nil {
this.Data["json"] = err
} else {
this.Data["json"] = user
}
} else { } else {
this.Data["json"] = users users, err := user.All()
if err != nil {
this.Data["json"] = err
} else {
this.Data["json"] = users
}
} }
this.ServeJson() this.ServeJson()
} }
func (this *UserController) Put() {
defer this.ServeJson()
var user models.User
objectId := this.Ctx.Params[":objectId"]
body, err := ioutil.ReadAll(this.Ctx.Request.Body)
if err != nil {
this.Data["json"] = err
return
}
this.Ctx.Request.Body.Close()
if err = json.Unmarshal(body, &user); err != nil {
this.Data["json"] = err
return
}
err = user.Update(objectId)
if err != nil {
this.Data["json"] = err
} else {
this.Data["json"] = "update success!"
}
}
` `
func init() { func init() {
@ -90,7 +144,10 @@ func init() {
} }
func createapi(cmd *Command, args []string) { func createapi(cmd *Command, args []string) {
if len(args) != 1 { version := "1"
if len(args) == 2 {
version = args[1]
} else if len(args) != 1 {
fmt.Println("error args") fmt.Println("error args")
os.Exit(2) os.Exit(2)
} }
@ -120,6 +177,7 @@ func createapi(cmd *Command, args []string) {
writetofile(path.Join(apppath, "models", "default.go"), apiModels) writetofile(path.Join(apppath, "models", "default.go"), apiModels)
fmt.Println("create main.go:", path.Join(apppath, "main.go")) fmt.Println("create main.go:", path.Join(apppath, "main.go"))
apiMaingo = strings.Replace(apiMaingo, "{{.Version}}", version, -1)
writetofile(path.Join(apppath, "main.go"), writetofile(path.Join(apppath, "main.go"),
strings.Replace(apiMaingo, "{{.Appname}}", packpath, -1)) strings.Replace(apiMaingo, "{{.Appname}}", packpath, -1))
} }