mongodao.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package dao
  2. import (
  3. "context"
  4. "fmt"
  5. "time"
  6. "github.com/willie68/schematic-service-go/model"
  7. "go.mongodb.org/mongo-driver/bson"
  8. "go.mongodb.org/mongo-driver/mongo"
  9. "go.mongodb.org/mongo-driver/mongo/options"
  10. )
  11. const dbPort = 32768
  12. const host = "192.168.178.12"
  13. const username = "admin"
  14. const password = "akteon00"
  15. const database = "schematic"
  16. const timeout = 1 * time.Minute
  17. var client *mongo.Client
  18. func init() {
  19. uri := fmt.Sprintf("mongodb://%s:%s@%s:%d", username, password, host, dbPort)
  20. clientOptions := options.Client()
  21. clientOptions.ApplyURI(uri)
  22. clientOptions.Auth = &options.Credential{Username: username, Password: password, AuthSource: "admin"}
  23. var err error
  24. client, err = mongo.NewClient(clientOptions)
  25. if err != nil {
  26. fmt.Printf("error: %s\n", err.Error())
  27. }
  28. ctx, cancel := context.WithTimeout(context.Background(), timeout)
  29. defer cancel()
  30. err = client.Connect(ctx)
  31. if err != nil {
  32. fmt.Printf("error: %s\n", err.Error())
  33. }
  34. }
  35. func CreateSchematic(schematic model.Schematic) (string, error) {
  36. ctx, _ := context.WithTimeout(context.Background(), timeout)
  37. collection := client.Database(database).Collection("schematic")
  38. result, err := collection.InsertOne(ctx, schematic)
  39. if err != nil {
  40. fmt.Printf("error: %s\n", err.Error())
  41. return "", err
  42. }
  43. filter := bson.M{"_id": result.InsertedID}
  44. err = collection.FindOne(ctx, filter).Decode(&schematic)
  45. if err != nil {
  46. fmt.Printf("error: %s\n", err.Error())
  47. return "", err
  48. }
  49. return result.InsertedID.(string), nil
  50. }