mongodao.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. package dao
  2. import (
  3. "bufio"
  4. "context"
  5. "fmt"
  6. "log"
  7. "os"
  8. "path/filepath"
  9. "time"
  10. "github.com/willie68/schematic-service-go/config"
  11. slicesutils "github.com/willie68/schematic-service-go/internal"
  12. "github.com/willie68/schematic-service-go/model"
  13. "go.mongodb.org/mongo-driver/bson"
  14. "go.mongodb.org/mongo-driver/mongo"
  15. "go.mongodb.org/mongo-driver/mongo/gridfs"
  16. "go.mongodb.org/mongo-driver/mongo/options"
  17. )
  18. const timeout = 1 * time.Minute
  19. var client *mongo.Client
  20. var mongoConfig config.MongoDB
  21. var bucket gridfs.Bucket
  22. var database mongo.Database
  23. func InitDB(MongoConfig config.MongoDB) {
  24. mongoConfig = MongoConfig
  25. // uri := fmt.Sprintf("mongodb://%s:%s@%s:%d", mongoConfig.Username, mongoConfig.Password, mongoConfig.Host, mongoConfig.Port)
  26. uri := fmt.Sprintf("mongodb://%s:%d", mongoConfig.Host, mongoConfig.Port)
  27. clientOptions := options.Client()
  28. clientOptions.ApplyURI(uri)
  29. clientOptions.Auth = &options.Credential{Username: mongoConfig.Username, Password: mongoConfig.Password, AuthSource: mongoConfig.AuthDB}
  30. var err error
  31. client, err = mongo.NewClient(clientOptions)
  32. if err != nil {
  33. fmt.Printf("error: %s\n", err.Error())
  34. }
  35. ctx, cancel := context.WithTimeout(context.Background(), timeout)
  36. defer cancel()
  37. err = client.Connect(ctx)
  38. if err != nil {
  39. fmt.Printf("error: %s\n", err.Error())
  40. }
  41. database = *client.Database(mongoConfig.Database)
  42. myBucket, err := gridfs.NewBucket(&database, options.GridFSBucket().SetName("attachment"))
  43. if err != nil {
  44. fmt.Printf("error: %s\n", err.Error())
  45. }
  46. bucket = *myBucket
  47. initIndex()
  48. }
  49. func initIndex() {
  50. collection := database.Collection("schematic")
  51. indexView := collection.Indexes()
  52. ctx, _ := context.WithTimeout(context.Background(), timeout)
  53. cursor, err := indexView.List(ctx)
  54. if err != nil {
  55. log.Fatal(err)
  56. }
  57. defer cursor.Close(ctx)
  58. myIndexes := make([]string, 0)
  59. for cursor.Next(ctx) {
  60. var index bson.M
  61. if err = cursor.Decode(&index); err != nil {
  62. log.Fatal(err)
  63. }
  64. myIndexes = append(myIndexes, index["name"].(string))
  65. }
  66. for _, name := range myIndexes {
  67. log.Println(name)
  68. }
  69. if !slicesutils.Contains(myIndexes, "manufaturer") {
  70. ctx, _ = context.WithTimeout(context.Background(), timeout)
  71. models := []mongo.IndexModel{
  72. {
  73. Keys: bson.D{{"manufacturer", 1}},
  74. Options: options.Index().SetName("manufacturer").SetCollation(&options.Collation{Locale: "en", Strength: 2}),
  75. },
  76. {
  77. Keys: bson.D{{"model", 1}},
  78. Options: options.Index().SetName("model").SetCollation(&options.Collation{Locale: "en", Strength: 2}),
  79. },
  80. {
  81. Keys: bson.D{{"tags", 1}},
  82. Options: options.Index().SetName("tags").SetCollation(&options.Collation{Locale: "en", Strength: 2}),
  83. },
  84. {
  85. Keys: bson.D{{"subtitle", 1}},
  86. Options: options.Index().SetName("subtitle").SetCollation(&options.Collation{Locale: "en", Strength: 2}),
  87. },
  88. }
  89. // Specify the MaxTime option to limit the amount of time the operation can run on the server
  90. opts := options.CreateIndexes().SetMaxTime(2 * time.Second)
  91. names, err := indexView.CreateMany(context.TODO(), models, opts)
  92. if err != nil {
  93. log.Fatal(err)
  94. }
  95. for _, name := range names {
  96. log.Println(name)
  97. }
  98. }
  99. /*
  100. db.collection.createIndex( { "key" : 1 },
  101. { collation: {
  102. locale : <locale>,
  103. strength : <strength>
  104. }
  105. } )
  106. */
  107. }
  108. func AddFile(File string) (string, error) {
  109. filename := filepath.Base(File)
  110. uploadOpts := options.GridFSUpload().SetMetadata(bson.D{{"tag", "tag"}})
  111. f, err := os.Open(File)
  112. if err != nil {
  113. fmt.Printf("error: %s\n", err.Error())
  114. return "", err
  115. }
  116. defer f.Close()
  117. reader := bufio.NewReader(f)
  118. fileID, err := bucket.UploadFromStream(filename, reader, uploadOpts)
  119. if err != nil {
  120. fmt.Printf("error: %s\n", err.Error())
  121. return "", err
  122. }
  123. log.Printf("Write file to DB was successful. File id: %s \n", fileID)
  124. id := fileID.String()
  125. return id, nil
  126. }
  127. func CreateSchematic(schematic model.Schematic) (string, error) {
  128. ctx, _ := context.WithTimeout(context.Background(), timeout)
  129. collection := database.Collection("schematic")
  130. result, err := collection.InsertOne(ctx, schematic)
  131. if err != nil {
  132. fmt.Printf("error: %s\n", err.Error())
  133. return "", err
  134. }
  135. filter := bson.M{"_id": result.InsertedID}
  136. err = collection.FindOne(ctx, filter).Decode(&schematic)
  137. if err != nil {
  138. fmt.Printf("error: %s\n", err.Error())
  139. return "", err
  140. }
  141. return result.InsertedID.(string), nil
  142. }