Created
December 13, 2015 18:06
-
-
Save p4tin/9bfb778fa7089a82030c to your computer and use it in GitHub Desktop.
Golang Mongo CRUD Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package mongo | |
import ( | |
"time" | |
"log" | |
"gopkg.in/mgo.v2" | |
"gopkg.in/mgo.v2/bson" | |
) | |
// Profile - is the memory representation of one user profile | |
type Profile struct { | |
Name string `json: "username"` | |
Password string `json: "password"` | |
Age int `json: "age"` | |
LastUpdated time.Time | |
} | |
// GetProfiles - Returns all the profile in the Profiles Collection | |
func GetProfiles() []Profile { | |
session, err := mgo.Dial("localhost:27017") | |
if err != nil { | |
log.Println("Could not connect to mongo: ", err.Error()) | |
return nil | |
} | |
defer session.Close() | |
// Optional. Switch the session to a monotonic behavior. | |
session.SetMode(mgo.Monotonic, true) | |
c := session.DB("ProfileService").C("Profiles") | |
var profiles []Profile | |
err = c.Find(bson.M{}).All(&profiles) | |
return profiles | |
} | |
// ShowProfile - Returns the profile in the Profiles Collection with name equal to the id parameter (id == name) | |
func ShowProfile(id string) Profile { | |
session, err := mgo.Dial("localhost:27017") | |
if err != nil { | |
log.Println("Could not connect to mongo: ", err.Error()) | |
return Profile{} | |
} | |
defer session.Close() | |
// Optional. Switch the session to a monotonic behavior. | |
session.SetMode(mgo.Monotonic, true) | |
c := session.DB("ProfileService").C("Profiles") | |
profile := Profile{} | |
err = c.Find(bson.M{"name": id}).One(&profile) | |
return profile | |
} | |
// DeleteProfile - Deletes the profile in the Profiles Collection with name equal to the id parameter (id == name) | |
func DeleteProfile(id string) bool { | |
session, err := mgo.Dial("localhost:27017") | |
if err != nil { | |
log.Println("Could not connect to mongo: ", err.Error()) | |
return false | |
} | |
defer session.Close() | |
// Optional. Switch the session to a monotonic behavior. | |
session.SetMode(mgo.Monotonic, true) | |
c := session.DB("ProfileService").C("Profiles") | |
err = c.RemoveId(id) | |
return true | |
} | |
// CreateOrUpdateProfile - Creates or Updates (Upsert) the profile in the Profiles Collection with id parameter | |
func (p *Profile) CreateOrUpdateProfile() bool { | |
session, err := mgo.Dial("localhost:27017") | |
if err != nil { | |
log.Println("Could not connect to mongo: ", err.Error()) | |
return false | |
} | |
defer session.Close() | |
// Optional. Switch the session to a monotonic behavior. | |
session.SetMode(mgo.Monotonic, true) | |
c := session.DB("ProfileService").C("Profiles") | |
_ , err = c.UpsertId( p.Name, p ) | |
if err != nil { | |
log.Println("Error creating Profile: ", err.Error()) | |
return false | |
} | |
return true | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@smilelikeshit - this GIST is very old and the official mongo driver has replace MGO so I would not use thiss GIST as a starting point for anything.