func (a *ApplicationController) CreateApplicationHandler(c *gin.Context) { body := &ApplicationModel{} if err := c.Bind(body); err != nil { RestError(c, err) return } if body.Name == "" { RestErrorInvalidBody(c) return } d := db.NewAppsDbService(c.MustGet("user").(string)) username := c.MustGet("user").(string) doc := models.JSON{ "name": body.Name, "owner": username, "types": []string{"users"}, "createdAt": time.Now(), "masterKey": utils.GetCleanUUID(), } if err := d.Insert(doc); err != nil { RestError(c, err) return } RespondId(doc["_id"], c) }
func (d *dbService) Insert(doc map[string]interface{}) error { if _, ok := doc["_id"]; !ok { doc["_id"] = utils.GetCleanUUID() } session, collection := d.GetCollection() defer session.Close() return collection.Insert(doc) }