|
@@ -7,6 +7,7 @@ import (
|
|
|
"fmt"
|
|
|
"io"
|
|
|
"log"
|
|
|
+ "sort"
|
|
|
"strings"
|
|
|
"time"
|
|
|
|
|
@@ -37,8 +38,8 @@ type MongoDAO struct {
|
|
|
mongoConfig config.MongoDB
|
|
|
bucket gridfs.Bucket
|
|
|
database mongo.Database
|
|
|
- tags []string
|
|
|
- manufacturers []string
|
|
|
+ tags model.Tags
|
|
|
+ manufacturers model.Manufacturers
|
|
|
users map[string]string
|
|
|
ticker time.Ticker
|
|
|
done chan bool
|
|
@@ -76,8 +77,8 @@ func (m *MongoDAO) InitDAO(MongoConfig config.MongoDB) {
|
|
|
m.initIndexTags()
|
|
|
m.initIndexManufacturers()
|
|
|
|
|
|
- m.tags = make([]string, 0)
|
|
|
- m.manufacturers = make([]string, 0)
|
|
|
+ m.tags = model.NewTags()
|
|
|
+ m.manufacturers = model.NewManufacturers()
|
|
|
m.users = make(map[string]string)
|
|
|
m.initTags()
|
|
|
m.initManufacturers()
|
|
@@ -103,10 +104,7 @@ func (m *MongoDAO) initIndexSchematics() {
|
|
|
myIndexes = append(myIndexes, index["name"].(string))
|
|
|
}
|
|
|
|
|
|
- for _, name := range myIndexes {
|
|
|
- log.Println(name)
|
|
|
- }
|
|
|
- if !slicesutils.Contains(myIndexes, "manufaturer") {
|
|
|
+ if !slicesutils.Contains(myIndexes, "manufacturer") {
|
|
|
ctx, _ = context.WithTimeout(context.Background(), timeout)
|
|
|
models := []mongo.IndexModel{
|
|
|
{
|
|
@@ -162,9 +160,6 @@ func (m *MongoDAO) initIndexTags() {
|
|
|
myIndexes = append(myIndexes, index["name"].(string))
|
|
|
}
|
|
|
|
|
|
- for _, name := range myIndexes {
|
|
|
- log.Println(name)
|
|
|
- }
|
|
|
if !slicesutils.Contains(myIndexes, "name") {
|
|
|
ctx, _ = context.WithTimeout(context.Background(), timeout)
|
|
|
models := []mongo.IndexModel{
|
|
@@ -205,9 +200,6 @@ func (m *MongoDAO) initIndexManufacturers() {
|
|
|
myIndexes = append(myIndexes, index["name"].(string))
|
|
|
}
|
|
|
|
|
|
- for _, name := range myIndexes {
|
|
|
- log.Println(name)
|
|
|
- }
|
|
|
if !slicesutils.Contains(myIndexes, "name") {
|
|
|
ctx, _ = context.WithTimeout(context.Background(), timeout)
|
|
|
models := []mongo.IndexModel{
|
|
@@ -238,14 +230,31 @@ func (m *MongoDAO) initTags() {
|
|
|
log.Fatal(err)
|
|
|
}
|
|
|
defer cursor.Close(ctx)
|
|
|
+ tagList := make([]string, 0)
|
|
|
for cursor.Next(ctx) {
|
|
|
var tag bson.M
|
|
|
if err = cursor.Decode(&tag); err != nil {
|
|
|
log.Fatal(err)
|
|
|
} else {
|
|
|
- m.tags = append(m.tags, tag["name"].(string))
|
|
|
+ tagList = append(tagList, tag["name"].(string))
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ ctx, _ = context.WithTimeout(context.Background(), timeout)
|
|
|
+ schematicCollection := m.database.Collection(schematicsCollectionName)
|
|
|
+
|
|
|
+ for _, tagName := range tagList {
|
|
|
+ queryDoc := bson.M{
|
|
|
+ "tags": tagName,
|
|
|
+ }
|
|
|
+ n, err := schematicCollection.CountDocuments(ctx, queryDoc, &options.CountOptions{Collation: &options.Collation{Locale: "en", Strength: 2}})
|
|
|
+ if err != nil {
|
|
|
+ log.Println(err)
|
|
|
}
|
|
|
+ //log.Printf("tag: %s has %d schematics.", tagName, n)
|
|
|
+ m.tags.Add(tagName, int(n))
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
|
|
|
func (m *MongoDAO) initManufacturers() {
|
|
@@ -256,13 +265,29 @@ func (m *MongoDAO) initManufacturers() {
|
|
|
log.Fatal(err)
|
|
|
}
|
|
|
defer cursor.Close(ctx)
|
|
|
+ manuList := make([]string, 0)
|
|
|
for cursor.Next(ctx) {
|
|
|
var manufacturer bson.M
|
|
|
if err = cursor.Decode(&manufacturer); err != nil {
|
|
|
log.Fatal(err)
|
|
|
} else {
|
|
|
- m.manufacturers = append(m.manufacturers, manufacturer["name"].(string))
|
|
|
+ manuList = append(manuList, manufacturer["name"].(string))
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ ctx, _ = context.WithTimeout(context.Background(), timeout)
|
|
|
+ schematicCollection := m.database.Collection(schematicsCollectionName)
|
|
|
+
|
|
|
+ for _, manuName := range manuList {
|
|
|
+ queryDoc := bson.M{
|
|
|
+ "manufacturer": manuName,
|
|
|
+ }
|
|
|
+ n, err := schematicCollection.CountDocuments(ctx, queryDoc, &options.CountOptions{Collation: &options.Collation{Locale: "en", Strength: 2}})
|
|
|
+ if err != nil {
|
|
|
+ log.Println(err)
|
|
|
}
|
|
|
+ //log.Printf("manufacturer: %s has %d schematics.", manuName, n)
|
|
|
+ m.manufacturers.Add(manuName, int(n))
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -297,6 +322,21 @@ func (m *MongoDAO) reloadUsers() {
|
|
|
}
|
|
|
}
|
|
|
m.users = localUsers
|
|
|
+ if len(m.users) == 0 {
|
|
|
+ admin := model.User{
|
|
|
+ Name: "w.klaas@gmx.de",
|
|
|
+ Password: "akteon0000",
|
|
|
+ Admin: true,
|
|
|
+ }
|
|
|
+ m.AddUser(admin)
|
|
|
+ guest := model.User{
|
|
|
+ Name: "gast",
|
|
|
+ Password: "gast1234",
|
|
|
+ Admin: false,
|
|
|
+ Guest: true,
|
|
|
+ }
|
|
|
+ m.AddUser(guest)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// AddFile adding a file to the storage, stream like
|
|
@@ -317,12 +357,12 @@ func (m *MongoDAO) AddFile(filename string, reader io.Reader) (string, error) {
|
|
|
func (m *MongoDAO) CreateSchematic(schematic model.Schematic) (string, error) {
|
|
|
|
|
|
for _, tag := range schematic.Tags {
|
|
|
- if !slicesutils.Contains(m.tags, tag) {
|
|
|
+ if !m.tags.Contains(tag) {
|
|
|
m.CreateTag(tag)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if !slicesutils.Contains(m.manufacturers, schematic.Manufacturer) {
|
|
|
+ if !m.manufacturers.Contains(schematic.Manufacturer) {
|
|
|
m.CreateManufacturer(schematic.Manufacturer)
|
|
|
}
|
|
|
|
|
@@ -346,6 +386,39 @@ func (m *MongoDAO) CreateSchematic(schematic model.Schematic) (string, error) {
|
|
|
return "", nil
|
|
|
}
|
|
|
|
|
|
+// UpdateSchematic creating a new schematic in the database
|
|
|
+func (m *MongoDAO) UpdateSchematic(schematic model.Schematic) (string, error) {
|
|
|
+
|
|
|
+ for _, tag := range schematic.Tags {
|
|
|
+ if !m.tags.Contains(tag) {
|
|
|
+ m.CreateTag(tag)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if !m.manufacturers.Contains(schematic.Manufacturer) {
|
|
|
+ m.CreateManufacturer(schematic.Manufacturer)
|
|
|
+ }
|
|
|
+
|
|
|
+ ctx, _ := context.WithTimeout(context.Background(), timeout)
|
|
|
+ collection := m.database.Collection(schematicsCollectionName)
|
|
|
+ filter := bson.M{"_id": schematic.ID}
|
|
|
+ updateDoc := bson.D{{"$set", schematic}}
|
|
|
+ result, err := collection.UpdateOne(ctx, filter, updateDoc)
|
|
|
+ if err != nil {
|
|
|
+ fmt.Printf("error: %s\n", err.Error())
|
|
|
+ return "", err
|
|
|
+ }
|
|
|
+ if result.ModifiedCount != 1 {
|
|
|
+ return "", errors.New("can't update document.")
|
|
|
+ }
|
|
|
+ err = collection.FindOne(ctx, filter).Decode(&schematic)
|
|
|
+ if err != nil {
|
|
|
+ fmt.Printf("error: %s\n", err.Error())
|
|
|
+ return "", err
|
|
|
+ }
|
|
|
+ return schematic.ID.Hex(), nil
|
|
|
+}
|
|
|
+
|
|
|
// GetSchematic getting a sdingle schematic
|
|
|
func (m *MongoDAO) GetSchematic(schematicID string) (model.Schematic, error) {
|
|
|
ctx, _ := context.WithTimeout(context.Background(), timeout)
|
|
@@ -387,6 +460,32 @@ func (m *MongoDAO) DeleteSchematic(schematicID string) error {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+//GetFile getting a single from the database with the id
|
|
|
+func (m *MongoDAO) GetFilename(fileid string) (string, error) {
|
|
|
+ objectID, err := primitive.ObjectIDFromHex(fileid)
|
|
|
+ if err != nil {
|
|
|
+ log.Print(err)
|
|
|
+ return "", err
|
|
|
+ }
|
|
|
+ ctx, _ := context.WithTimeout(context.Background(), timeout)
|
|
|
+ cursor, err := m.bucket.Find(bson.M{"_id": objectID})
|
|
|
+ if err != nil {
|
|
|
+ log.Print(err)
|
|
|
+ return "", err
|
|
|
+ }
|
|
|
+ defer cursor.Close(ctx)
|
|
|
+ cursor.Next(ctx)
|
|
|
+ var file bson.M
|
|
|
+ var filename string
|
|
|
+ if err = cursor.Decode(&file); err != nil {
|
|
|
+ log.Print(err)
|
|
|
+ return "", err
|
|
|
+ } else {
|
|
|
+ filename = file["filename"].(string)
|
|
|
+ }
|
|
|
+ return filename, nil
|
|
|
+}
|
|
|
+
|
|
|
//GetFile getting a single from the database with the id
|
|
|
func (m *MongoDAO) GetFile(fileid string, stream io.Writer) error {
|
|
|
objectID, err := primitive.ObjectIDFromHex(fileid)
|
|
@@ -466,6 +565,44 @@ func (m *MongoDAO) GetSchematics(query string, offset int, limit int, owner stri
|
|
|
return n, schematics, nil
|
|
|
}
|
|
|
|
|
|
+// GetSchematicsCount getting a sdingle schematic
|
|
|
+func (m *MongoDAO) GetSchematicsCount(query string, owner string) (int64, error) {
|
|
|
+ ctx, _ := context.WithTimeout(context.Background(), timeout)
|
|
|
+ schematicCollection := m.database.Collection(schematicsCollectionName)
|
|
|
+ queryDoc := bson.M{}
|
|
|
+
|
|
|
+ if query != "" {
|
|
|
+ var queryM map[string]interface{}
|
|
|
+ err := json.Unmarshal([]byte(query), &queryM)
|
|
|
+ if err != nil {
|
|
|
+ log.Print(err)
|
|
|
+ return 0, err
|
|
|
+ }
|
|
|
+ for k, v := range queryM {
|
|
|
+ if k == "$fulltext" {
|
|
|
+ queryDoc["$text"] = bson.M{"$search": v}
|
|
|
+ } else {
|
|
|
+ switch v := v.(type) {
|
|
|
+ // case float64:
|
|
|
+ // case int:
|
|
|
+ // case bool:
|
|
|
+ case string:
|
|
|
+ queryDoc[k] = bson.M{"$regex": v}
|
|
|
+ }
|
|
|
+ //queryDoc[k] = v
|
|
|
+ }
|
|
|
+ }
|
|
|
+ data, _ := json.Marshal(queryDoc)
|
|
|
+ log.Printf("mongoquery: %s\n", string(data))
|
|
|
+ }
|
|
|
+ n, err := schematicCollection.CountDocuments(ctx, queryDoc, &options.CountOptions{Collation: &options.Collation{Locale: "en", Strength: 2}})
|
|
|
+ if err != nil {
|
|
|
+ log.Print(err)
|
|
|
+ return 0, err
|
|
|
+ }
|
|
|
+ return n, nil
|
|
|
+}
|
|
|
+
|
|
|
// CreateTag create a new tag in the storage
|
|
|
func (m *MongoDAO) CreateTag(tag string) error {
|
|
|
tag = strings.ToLower(tag)
|
|
@@ -477,10 +614,21 @@ func (m *MongoDAO) CreateTag(tag string) error {
|
|
|
fmt.Printf("error: %s\n", err.Error())
|
|
|
return err
|
|
|
}
|
|
|
- m.tags = append(m.tags, tag)
|
|
|
+ m.tags.Add(tag, 1)
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
+//GetTags getting a list of all tags
|
|
|
+func (m *MongoDAO) GetTags() []model.Tag {
|
|
|
+ sort.Slice(m.tags.List, func(i, j int) bool { return m.tags.List[i].Name < m.tags.List[j].Name })
|
|
|
+ return m.tags.List
|
|
|
+}
|
|
|
+
|
|
|
+// GetTagsCount getting the count of all tags
|
|
|
+func (m *MongoDAO) GetTagsCount() int {
|
|
|
+ return len(m.tags.List)
|
|
|
+}
|
|
|
+
|
|
|
// CreateManufacturer create a new manufacturer in the storage
|
|
|
func (m *MongoDAO) CreateManufacturer(manufacturer string) error {
|
|
|
ctx, _ := context.WithTimeout(context.Background(), timeout)
|
|
@@ -491,28 +639,19 @@ func (m *MongoDAO) CreateManufacturer(manufacturer string) error {
|
|
|
fmt.Printf("error: %s\n", err.Error())
|
|
|
return err
|
|
|
}
|
|
|
- m.manufacturers = append(m.manufacturers, manufacturer)
|
|
|
+ m.manufacturers.Add(manufacturer, 1)
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
-//GetTags getting a list of all tags
|
|
|
-func (m *MongoDAO) GetTags() []string {
|
|
|
- return m.tags
|
|
|
-}
|
|
|
-
|
|
|
// GetManufacturers getting a list of all manufacturers
|
|
|
-func (m *MongoDAO) GetManufacturers() []string {
|
|
|
- return m.manufacturers
|
|
|
-}
|
|
|
-
|
|
|
-// GetTagsCount getting the count of all tags
|
|
|
-func (m *MongoDAO) GetTagsCount() int {
|
|
|
- return len(m.tags)
|
|
|
+func (m *MongoDAO) GetManufacturers() []model.Manufacturer {
|
|
|
+ sort.Slice(m.manufacturers.List, func(i, j int) bool { return m.manufacturers.List[i].Name < m.manufacturers.List[j].Name })
|
|
|
+ return m.manufacturers.List
|
|
|
}
|
|
|
|
|
|
// GetManufacturersCount getting the count of all manufacturers
|
|
|
func (m *MongoDAO) GetManufacturersCount() int {
|
|
|
- return len(m.manufacturers)
|
|
|
+ return len(m.manufacturers.List)
|
|
|
}
|
|
|
|
|
|
// CheckUser checking username and password... returns true if the user is active and the password for this user is correct
|
|
@@ -568,10 +707,12 @@ func (m *MongoDAO) DropAll() {
|
|
|
log.Fatal(err)
|
|
|
}
|
|
|
for _, name := range collectionNames {
|
|
|
- collection := m.database.Collection(name)
|
|
|
- err = collection.Drop(ctx)
|
|
|
- if err != nil {
|
|
|
- log.Fatal(err)
|
|
|
+ if name != usersCollectionName {
|
|
|
+ collection := m.database.Collection(name)
|
|
|
+ err = collection.Drop(ctx)
|
|
|
+ if err != nil {
|
|
|
+ log.Fatal(err)
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|