db.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package db
  2. import (
  3. "context"
  4. "log"
  5. "time"
  6. "go.mongodb.org/mongo-driver/mongo"
  7. "go.mongodb.org/mongo-driver/mongo/options"
  8. )
  9. const (
  10. MONGODB_URI = "mongodb://root:boxcost@124.71.139.24:37030/box-cost?authSource=admin"
  11. DB_NAME = "box-cost"
  12. COLL_NAME = "product-plan"
  13. )
  14. var (
  15. client *mongo.Client
  16. collection *mongo.Collection
  17. )
  18. // 初始化MongoDB连接
  19. func InitMongoConn() {
  20. // 创建一个新的上下文
  21. ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
  22. defer cancel()
  23. // 连接到MongoDB
  24. var err error
  25. client, err = mongo.Connect(ctx, options.Client().ApplyURI(MONGODB_URI))
  26. if err != nil {
  27. log.Fatal(err)
  28. }
  29. // 选择数据库和集合
  30. collection = client.Database(DB_NAME).Collection(COLL_NAME)
  31. }
  32. // 获取已初始化的集合
  33. func GetCollection() *mongo.Collection {
  34. if collection == nil {
  35. log.Fatal("MongoDB connection not initialized")
  36. }
  37. return collection
  38. }
  39. // 关闭MongoDB连接
  40. func CloseMongoConn() {
  41. if client != nil {
  42. // 创建一个新的上下文
  43. ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
  44. defer cancel()
  45. // 关闭连接
  46. err := client.Disconnect(ctx)
  47. if err != nil {
  48. log.Fatal(err)
  49. }
  50. }
  51. }