コード例 #1
0
ファイル: todo_resource.go プロジェクト: Jungju/go-todo
func (tr *TodoResource) PatchTodo(c *gin.Context) {
	var json []api.Patch
	if c.Bind(&json) != nil {
		c.JSON(400, api.NewError("problem decoding body"))
		return
	}

	id, err := tr.getId(c)
	if err != nil {
		c.JSON(400, api.NewError("problem decoding id sent"))
		return
	}
	var todo api.Todo

	if tr.db.First(&todo, id).RecordNotFound() {
		c.JSON(404, api.NewError("not found"))
	} else {
		todo.Status = json[0].Value

		tr.db.Save(&todo)
		c.JSON(200, todo)
	}

	c.Bind(&json)
}
コード例 #2
0
ファイル: todo_resource.go プロジェクト: Jungju/go-todo
func (tr *TodoResource) DeleteTodo(c *gin.Context) {
	id, err := tr.getId(c)
	if err != nil {
		c.JSON(400, api.NewError("problem decoding id sent"))
		return
	}

	var todo api.Todo

	if tr.db.First(&todo, id).RecordNotFound() {
		c.JSON(404, api.NewError("not found"))
	} else {
		tr.db.Delete(&todo)
		c.Data(204, "application/json", make([]byte, 0))
	}
}
コード例 #3
0
ファイル: todo_resource.go プロジェクト: Jungju/go-todo
func (tr *TodoResource) UpdateTodo(c *gin.Context) {
	id, err := tr.getId(c)
	if err != nil {
		c.JSON(400, api.NewError("problem decoding id sent"))
		return
	}
	var todo api.Todo

	if c.Bind(&todo) != nil {
		c.JSON(400, api.NewError("problem decoding body"))
		return
	}
	todo.Id = int32(id)
	var existing api.Todo
	if tr.db.First(&existing, id).RecordNotFound() {
		c.JSON(404, api.NewError("not found"))
	} else {
		tr.db.Save(&todo)
		c.JSON(200, todo)
	}

}
コード例 #4
0
ファイル: todo_resource.go プロジェクト: Jungju/go-todo
func (tr *TodoResource) CreateTodo(c *gin.Context) {
	var todo api.Todo
	if c.Bind(&todo) != nil {
		c.JSON(400, api.NewError("problem decoding body"))
		return
	}
	todo.Status = api.TodoStatus
	todo.Created = int32(time.Now().Unix())

	tr.db.Save(&todo)

	c.JSON(201, todo)
}
コード例 #5
0
ファイル: todo_resource.go プロジェクト: Jungju/go-todo
func (tr *TodoResource) GetTodo(c *gin.Context) {
	id, err := tr.getId(c)
	if err != nil {
		c.JSON(400, api.NewError("problem decoding id sent"))
		return
	}

	var todo api.Todo

	if tr.db.First(&todo, id).RecordNotFound() {
		c.JSON(404, gin.H{"error": "not found"})
	} else {
		c.JSON(200, todo)
	}
}