mongodao.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. package dao
  2. import (
  3. "context"
  4. "crypto/md5"
  5. "fmt"
  6. "io"
  7. "log"
  8. "strings"
  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/bson/primitive"
  15. "go.mongodb.org/mongo-driver/mongo"
  16. "go.mongodb.org/mongo-driver/mongo/gridfs"
  17. "go.mongodb.org/mongo-driver/mongo/options"
  18. )
  19. const timeout = 1 * time.Minute
  20. const attachmentsCollectionName = "attachments"
  21. const schematicsCollectionName = "schematics"
  22. const tagsCollectionName = "tags"
  23. const manufacturersCollectionName = "manufacturers"
  24. const usersCollectionName = "users"
  25. var client *mongo.Client
  26. var mongoConfig config.MongoDB
  27. var bucket gridfs.Bucket
  28. var database mongo.Database
  29. var tags []string
  30. var manufacturers []string
  31. var users map[string]string
  32. // InitDB initialise the mongodb connection, build up all collections and indexes
  33. func InitDB(MongoConfig config.MongoDB) {
  34. mongoConfig = MongoConfig
  35. // uri := fmt.Sprintf("mongodb://%s:%s@%s:%d", mongoConfig.Username, mongoConfig.Password, mongoConfig.Host, mongoConfig.Port)
  36. uri := fmt.Sprintf("mongodb://%s:%d", mongoConfig.Host, mongoConfig.Port)
  37. clientOptions := options.Client()
  38. clientOptions.ApplyURI(uri)
  39. clientOptions.Auth = &options.Credential{Username: mongoConfig.Username, Password: mongoConfig.Password, AuthSource: mongoConfig.AuthDB}
  40. var err error
  41. client, err = mongo.NewClient(clientOptions)
  42. if err != nil {
  43. fmt.Printf("error: %s\n", err.Error())
  44. }
  45. ctx, cancel := context.WithTimeout(context.Background(), timeout)
  46. defer cancel()
  47. err = client.Connect(ctx)
  48. if err != nil {
  49. fmt.Printf("error: %s\n", err.Error())
  50. }
  51. database = *client.Database(mongoConfig.Database)
  52. myBucket, err := gridfs.NewBucket(&database, options.GridFSBucket().SetName(attachmentsCollectionName))
  53. if err != nil {
  54. fmt.Printf("error: %s\n", err.Error())
  55. }
  56. bucket = *myBucket
  57. initIndexSchematics()
  58. initIndexTags()
  59. initIndexManufacturers()
  60. tags = make([]string, 0)
  61. manufacturers = make([]string, 0)
  62. users = make(map[string]string)
  63. initTags()
  64. initManufacturers()
  65. initUsers()
  66. }
  67. func initIndexSchematics() {
  68. collection := database.Collection(schematicsCollectionName)
  69. indexView := collection.Indexes()
  70. ctx, _ := context.WithTimeout(context.Background(), timeout)
  71. cursor, err := indexView.List(ctx)
  72. if err != nil {
  73. log.Fatal(err)
  74. }
  75. defer cursor.Close(ctx)
  76. myIndexes := make([]string, 0)
  77. for cursor.Next(ctx) {
  78. var index bson.M
  79. if err = cursor.Decode(&index); err != nil {
  80. log.Fatal(err)
  81. }
  82. myIndexes = append(myIndexes, index["name"].(string))
  83. }
  84. for _, name := range myIndexes {
  85. log.Println(name)
  86. }
  87. if !slicesutils.Contains(myIndexes, "manufaturer") {
  88. ctx, _ = context.WithTimeout(context.Background(), timeout)
  89. models := []mongo.IndexModel{
  90. {
  91. Keys: bson.D{{"manufacturer", 1}},
  92. Options: options.Index().SetName("manufacturer").SetCollation(&options.Collation{Locale: "en", Strength: 2}),
  93. },
  94. {
  95. Keys: bson.D{{"model", 1}},
  96. Options: options.Index().SetName("model").SetCollation(&options.Collation{Locale: "en", Strength: 2}),
  97. },
  98. {
  99. Keys: bson.D{{"tags", 1}},
  100. Options: options.Index().SetName("tags").SetCollation(&options.Collation{Locale: "en", Strength: 2}),
  101. },
  102. {
  103. Keys: bson.D{{"subtitle", 1}},
  104. Options: options.Index().SetName("subtitle").SetCollation(&options.Collation{Locale: "en", Strength: 2}),
  105. },
  106. {
  107. Keys: bson.D{{"manufacturer", "text"}, {"model", "text"}, {"tags", "text"}, {"subtitle", "text"}, {"description", "text"}, {"owner", "text"}},
  108. Options: options.Index().SetName("$text"),
  109. },
  110. }
  111. // Specify the MaxTime option to limit the amount of time the operation can run on the server
  112. opts := options.CreateIndexes().SetMaxTime(2 * time.Second)
  113. names, err := indexView.CreateMany(context.TODO(), models, opts)
  114. if err != nil {
  115. log.Fatal(err)
  116. }
  117. log.Print("create indexes:")
  118. for _, name := range names {
  119. log.Println(name)
  120. }
  121. }
  122. }
  123. func initIndexTags() {
  124. collection := database.Collection(tagsCollectionName)
  125. indexView := collection.Indexes()
  126. ctx, _ := context.WithTimeout(context.Background(), timeout)
  127. cursor, err := indexView.List(ctx)
  128. if err != nil {
  129. log.Fatal(err)
  130. }
  131. defer cursor.Close(ctx)
  132. myIndexes := make([]string, 0)
  133. for cursor.Next(ctx) {
  134. var index bson.M
  135. if err = cursor.Decode(&index); err != nil {
  136. log.Fatal(err)
  137. }
  138. myIndexes = append(myIndexes, index["name"].(string))
  139. }
  140. for _, name := range myIndexes {
  141. log.Println(name)
  142. }
  143. if !slicesutils.Contains(myIndexes, "name") {
  144. ctx, _ = context.WithTimeout(context.Background(), timeout)
  145. models := []mongo.IndexModel{
  146. {
  147. Keys: bson.D{{"name", 1}},
  148. Options: options.Index().SetUnique(true).SetName("name").SetCollation(&options.Collation{Locale: "en", Strength: 2}),
  149. },
  150. }
  151. // Specify the MaxTime option to limit the amount of time the operation can run on the server
  152. opts := options.CreateIndexes().SetMaxTime(2 * time.Second)
  153. names, err := indexView.CreateMany(context.TODO(), models, opts)
  154. if err != nil {
  155. log.Fatal(err)
  156. }
  157. log.Print("create indexes:")
  158. for _, name := range names {
  159. log.Println(name)
  160. }
  161. }
  162. }
  163. func initIndexManufacturers() {
  164. collection := database.Collection(manufacturersCollectionName)
  165. indexView := collection.Indexes()
  166. ctx, _ := context.WithTimeout(context.Background(), timeout)
  167. cursor, err := indexView.List(ctx)
  168. if err != nil {
  169. log.Fatal(err)
  170. }
  171. defer cursor.Close(ctx)
  172. myIndexes := make([]string, 0)
  173. for cursor.Next(ctx) {
  174. var index bson.M
  175. if err = cursor.Decode(&index); err != nil {
  176. log.Fatal(err)
  177. }
  178. myIndexes = append(myIndexes, index["name"].(string))
  179. }
  180. for _, name := range myIndexes {
  181. log.Println(name)
  182. }
  183. if !slicesutils.Contains(myIndexes, "name") {
  184. ctx, _ = context.WithTimeout(context.Background(), timeout)
  185. models := []mongo.IndexModel{
  186. {
  187. Keys: bson.D{{"name", 1}},
  188. Options: options.Index().SetUnique(true).SetName("name").SetCollation(&options.Collation{Locale: "en", Strength: 2}),
  189. },
  190. }
  191. // Specify the MaxTime option to limit the amount of time the operation can run on the server
  192. opts := options.CreateIndexes().SetMaxTime(2 * time.Second)
  193. names, err := indexView.CreateMany(context.TODO(), models, opts)
  194. if err != nil {
  195. log.Fatal(err)
  196. }
  197. log.Print("create indexes:")
  198. for _, name := range names {
  199. log.Println(name)
  200. }
  201. }
  202. }
  203. func initTags() {
  204. ctx, _ := context.WithTimeout(context.Background(), timeout)
  205. tagsCollection := database.Collection(tagsCollectionName)
  206. cursor, err := tagsCollection.Find(ctx, bson.M{})
  207. if err != nil {
  208. log.Fatal(err)
  209. }
  210. defer cursor.Close(ctx)
  211. for cursor.Next(ctx) {
  212. var tag bson.M
  213. if err = cursor.Decode(&tag); err != nil {
  214. log.Fatal(err)
  215. } else {
  216. tags = append(tags, tag["name"].(string))
  217. }
  218. }
  219. }
  220. func initManufacturers() {
  221. ctx, _ := context.WithTimeout(context.Background(), timeout)
  222. manufacturersCollection := database.Collection(manufacturersCollectionName)
  223. cursor, err := manufacturersCollection.Find(ctx, bson.M{})
  224. if err != nil {
  225. log.Fatal(err)
  226. }
  227. defer cursor.Close(ctx)
  228. for cursor.Next(ctx) {
  229. var manufacturer bson.M
  230. if err = cursor.Decode(&manufacturer); err != nil {
  231. log.Fatal(err)
  232. } else {
  233. manufacturers = append(manufacturers, manufacturer["name"].(string))
  234. }
  235. }
  236. }
  237. func initUsers() {
  238. ctx, _ := context.WithTimeout(context.Background(), timeout)
  239. usersCollection := database.Collection(usersCollectionName)
  240. cursor, err := usersCollection.Find(ctx, bson.M{})
  241. if err != nil {
  242. log.Fatal(err)
  243. }
  244. defer cursor.Close(ctx)
  245. for cursor.Next(ctx) {
  246. var user bson.M
  247. if err = cursor.Decode(&user); err != nil {
  248. log.Fatal(err)
  249. } else {
  250. username := user["name"].(string)
  251. password := user["password"].(string)
  252. if !strings.HasPrefix(password, "md5:") {
  253. hash := md5.Sum([]byte(password))
  254. password = fmt.Sprintf("md5:%x", hash)
  255. }
  256. users[username] = password
  257. }
  258. }
  259. }
  260. // AddFile adding a file to the storage, stream like
  261. func AddFile(filename string, reader io.Reader) (string, error) {
  262. uploadOpts := options.GridFSUpload().SetMetadata(bson.D{{"tag", "tag"}})
  263. fileID, err := bucket.UploadFromStream(filename, reader, uploadOpts)
  264. if err != nil {
  265. fmt.Printf("error: %s\n", err.Error())
  266. return "", err
  267. }
  268. log.Printf("Write file to DB was successful. File id: %s \n", fileID)
  269. id := fileID.Hex()
  270. return id, nil
  271. }
  272. // CreateSchematic creating a new schematic in the database
  273. func CreateSchematic(schematic model.Schematic) (string, error) {
  274. for _, tag := range schematic.Tags {
  275. if !slicesutils.Contains(tags, tag) {
  276. CreateTag(tag)
  277. }
  278. }
  279. if !slicesutils.Contains(manufacturers, schematic.Manufacturer) {
  280. CreateManufacturer(schematic.Manufacturer)
  281. }
  282. ctx, _ := context.WithTimeout(context.Background(), timeout)
  283. collection := database.Collection(schematicsCollectionName)
  284. result, err := collection.InsertOne(ctx, schematic)
  285. if err != nil {
  286. fmt.Printf("error: %s\n", err.Error())
  287. return "", err
  288. }
  289. filter := bson.M{"_id": result.InsertedID}
  290. err = collection.FindOne(ctx, filter).Decode(&schematic)
  291. if err != nil {
  292. fmt.Printf("error: %s\n", err.Error())
  293. return "", err
  294. }
  295. switch v := result.InsertedID.(type) {
  296. case primitive.ObjectID:
  297. return v.Hex(), nil
  298. }
  299. return "", nil
  300. }
  301. // GetSchematic getting a sdingle schematic
  302. func GetSchematic(schematicID string) (model.Schematic, error) {
  303. ctx, _ := context.WithTimeout(context.Background(), timeout)
  304. schematicCollection := database.Collection(schematicsCollectionName)
  305. objectId, _ := primitive.ObjectIDFromHex(schematicID)
  306. result := schematicCollection.FindOne(ctx, bson.M{"_id": objectId})
  307. var schematic model.Schematic
  308. if err := result.Decode(&schematic); err != nil {
  309. log.Print(err)
  310. return model.Schematic{}, err
  311. } else {
  312. return schematic, nil
  313. }
  314. }
  315. func GetFile(fileid string, stream io.Writer) error {
  316. objectID, err := primitive.ObjectIDFromHex(fileid)
  317. if err != nil {
  318. log.Print(err)
  319. return err
  320. }
  321. dStream, err := bucket.DownloadToStream(objectID, stream)
  322. if err != nil {
  323. log.Print(err)
  324. return err
  325. }
  326. fmt.Printf("File size to download: %v \n", dStream)
  327. return nil
  328. }
  329. // GetSchematics getting a sdingle schematic
  330. func GetSchematics(query string, offset int, limit int, owner string) ([]model.Schematic, error) {
  331. ctx, _ := context.WithTimeout(context.Background(), timeout)
  332. schematicCollection := database.Collection(schematicsCollectionName)
  333. queryDoc := bson.M{}
  334. err := bson.UnmarshalExtJSON([]byte(query), false, queryDoc)
  335. if err != nil {
  336. log.Print(err)
  337. return nil, err
  338. }
  339. cursor, err := schematicCollection.Find(ctx, queryDoc, &options.FindOptions{Collation: &options.Collation{Locale: "en", Strength: 2}})
  340. if err != nil {
  341. log.Print(err)
  342. return nil, err
  343. }
  344. defer cursor.Close(ctx)
  345. schematics := make([]model.Schematic, 0)
  346. count := 0
  347. docs := 0
  348. for cursor.Next(ctx) {
  349. if count >= offset {
  350. if docs < limit {
  351. var schematic model.Schematic
  352. if err = cursor.Decode(&schematic); err != nil {
  353. log.Print(err)
  354. return nil, err
  355. } else {
  356. if !schematic.PrivateFile || schematic.Owner == owner {
  357. schematics = append(schematics, schematic)
  358. docs++
  359. }
  360. }
  361. } else {
  362. break
  363. }
  364. }
  365. count++
  366. }
  367. return schematics, nil
  368. }
  369. // CreateTag create a new tag in the storage
  370. func CreateTag(tag string) error {
  371. tag = strings.ToLower(tag)
  372. ctx, _ := context.WithTimeout(context.Background(), timeout)
  373. collection := database.Collection(tagsCollectionName)
  374. tagModel := bson.M{"name": tag}
  375. _, err := collection.InsertOne(ctx, tagModel)
  376. if err != nil {
  377. fmt.Printf("error: %s\n", err.Error())
  378. return err
  379. }
  380. tags = append(tags, tag)
  381. return nil
  382. }
  383. // CreateManufacturer create a new manufacturer in the storage
  384. func CreateManufacturer(manufacturer string) error {
  385. ctx, _ := context.WithTimeout(context.Background(), timeout)
  386. collection := database.Collection(manufacturersCollectionName)
  387. manufacturerModel := bson.M{"name": manufacturer}
  388. _, err := collection.InsertOne(ctx, manufacturerModel)
  389. if err != nil {
  390. fmt.Printf("error: %s\n", err.Error())
  391. return err
  392. }
  393. manufacturers = append(manufacturers, manufacturer)
  394. return nil
  395. }
  396. func GetTags() []string {
  397. return tags
  398. }
  399. func GetManufacturers() []string {
  400. return manufacturers
  401. }
  402. func GetTagsCount() int {
  403. return len(tags)
  404. }
  405. func GetManufacturersCount() int {
  406. return len(manufacturers)
  407. }
  408. func CheckUser(username string, password string) bool {
  409. pwd, ok := users[username]
  410. if ok {
  411. if pwd == password {
  412. return true
  413. }
  414. }
  415. return false
  416. }
  417. func DropAll() {
  418. ctx, _ := context.WithTimeout(context.Background(), timeout)
  419. collectionNames, err := database.ListCollectionNames(ctx, bson.D{}, &options.ListCollectionsOptions{})
  420. if err != nil {
  421. log.Fatal(err)
  422. }
  423. for _, name := range collectionNames {
  424. collection := database.Collection(name)
  425. err = collection.Drop(ctx)
  426. if err != nil {
  427. log.Fatal(err)
  428. }
  429. }
  430. }