Example #1
0
func PostMenu(c *gin.Context) {
	var menu Menu
	c.Bind(&menu)

	if menu.Name != "" {
		if insert, _ := dbmap.Exec(`insert into menu (name, data) values ($1, $2)`,
			menu.Name, menu.Data); insert != nil {

			content := &Menu{
				Id:   0,
				Name: menu.Name,
				Data: menu.Data,
			}
			c.JSON(201, content)
		}
	} else {
		c.JSON(422, gin.H{"error": "fields are empty"})
	}
}
Example #2
0
func PostRecipe(c *gin.Context) {
	var recipe Recipe
	c.Bind(&recipe)

	if recipe.Name != "" {
		if insert, _ := dbmap.Exec(`insert into recipe (userid, name, description, link, category, notes) values ($1, $2, $3, $4, $5, $6)`,
			recipe.UserId, recipe.Name, recipe.Description, recipe.Link, recipe.Category, recipe.Notes); insert != nil {

			content := &Recipe{
				Id:          0,
				UserId:      recipe.UserId,
				Name:        recipe.Name,
				Description: recipe.Description,
				Link:        recipe.Link,
				Category:    recipe.Category,
				Notes:       recipe.Notes,
			}
			c.JSON(201, content)
		}
	} else {
		c.JSON(422, gin.H{"error": "fields are empty"})
	}
}
Example #3
0
func UpdateRecipe(c *gin.Context) {
	id := c.Params.ByName("id")
	var recipe Recipe
	err := dbmap.SelectOne(&recipe, "select * from recipe where id =$1", id)

	if err == nil {
		var json Recipe
		c.Bind(&json)

		recipe_id, _ := strconv.ParseInt(id, 0, 64)

		recipe := Recipe{
			Id:          recipe_id,
			UserId:      json.UserId,
			Name:        json.Name,
			Description: json.Description,
			Link:        json.Link,
			Category:    json.Category,
			Notes:       json.Notes,
		}

		if recipe.Name != "" {
			_, err := dbmap.Update(&recipe)

			if err == nil {
				c.JSON(200, recipe)
			} else {
				checkErr(err, "Updated failed")
			}

		} else {
			c.JSON(422, gin.H{"error": "fields are empty"})
		}
	} else {
		c.JSON(404, gin.H{"error": "item not found"})
	}
}