|
@@ -2,6 +2,7 @@ package dao
|
|
|
|
|
|
import (
|
|
|
"context"
|
|
|
+ "crypto/md5"
|
|
|
"fmt"
|
|
|
"io"
|
|
|
"log"
|
|
@@ -24,6 +25,7 @@ const attachmentsCollectionName = "attachments"
|
|
|
const schematicsCollectionName = "schematics"
|
|
|
const tagsCollectionName = "tags"
|
|
|
const manufacturersCollectionName = "manufacturers"
|
|
|
+const usersCollectionName = "users"
|
|
|
|
|
|
var client *mongo.Client
|
|
|
var mongoConfig config.MongoDB
|
|
@@ -31,6 +33,7 @@ var bucket gridfs.Bucket
|
|
|
var database mongo.Database
|
|
|
var tags []string
|
|
|
var manufacturers []string
|
|
|
+var users map[string]string
|
|
|
|
|
|
// InitDB initialise the mongodb connection, build up all collections and indexes
|
|
|
func InitDB(MongoConfig config.MongoDB) {
|
|
@@ -65,8 +68,10 @@ func InitDB(MongoConfig config.MongoDB) {
|
|
|
|
|
|
tags = make([]string, 0)
|
|
|
manufacturers = make([]string, 0)
|
|
|
+ users = make(map[string]string)
|
|
|
initTags()
|
|
|
initManufacturers()
|
|
|
+ initUsers()
|
|
|
}
|
|
|
|
|
|
func initIndexSchematics() {
|
|
@@ -250,6 +255,30 @@ func initManufacturers() {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+func initUsers() {
|
|
|
+ ctx, _ := context.WithTimeout(context.Background(), timeout)
|
|
|
+ usersCollection := database.Collection(usersCollectionName)
|
|
|
+ cursor, err := usersCollection.Find(ctx, bson.M{})
|
|
|
+ if err != nil {
|
|
|
+ log.Fatal(err)
|
|
|
+ }
|
|
|
+ defer cursor.Close(ctx)
|
|
|
+ for cursor.Next(ctx) {
|
|
|
+ var user bson.M
|
|
|
+ if err = cursor.Decode(&user); err != nil {
|
|
|
+ log.Fatal(err)
|
|
|
+ } else {
|
|
|
+ username := user["name"].(string)
|
|
|
+ password := user["password"].(string)
|
|
|
+ if !strings.HasPrefix(password, "md5:") {
|
|
|
+ hash := md5.Sum([]byte(password))
|
|
|
+ password = fmt.Sprintf("md5:%x", hash)
|
|
|
+ }
|
|
|
+ users[username] = password
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
// AddFile adding a file to the storage, stream like
|
|
|
func AddFile(filename string, reader io.Reader) (string, error) {
|
|
|
uploadOpts := options.GridFSUpload().SetMetadata(bson.D{{"tag", "tag"}})
|
|
@@ -328,7 +357,7 @@ func GetFile(fileid string, stream io.Writer) error {
|
|
|
}
|
|
|
|
|
|
// GetSchematics getting a sdingle schematic
|
|
|
-func GetSchematics(query string, offset int, limit int) ([]model.Schematic, error) {
|
|
|
+func GetSchematics(query string, offset int, limit int, owner string) ([]model.Schematic, error) {
|
|
|
ctx, _ := context.WithTimeout(context.Background(), timeout)
|
|
|
schematicCollection := database.Collection(schematicsCollectionName)
|
|
|
queryDoc := bson.M{}
|
|
@@ -354,8 +383,10 @@ func GetSchematics(query string, offset int, limit int) ([]model.Schematic, erro
|
|
|
log.Print(err)
|
|
|
return nil, err
|
|
|
} else {
|
|
|
- schematics = append(schematics, schematic)
|
|
|
- docs++
|
|
|
+ if !schematic.PrivateFile || schematic.Owner == owner {
|
|
|
+ schematics = append(schematics, schematic)
|
|
|
+ docs++
|
|
|
+ }
|
|
|
}
|
|
|
} else {
|
|
|
break
|
|
@@ -411,6 +442,16 @@ func GetManufacturersCount() int {
|
|
|
return len(manufacturers)
|
|
|
}
|
|
|
|
|
|
+func CheckUser(username string, password string) bool {
|
|
|
+ pwd, ok := users[username]
|
|
|
+ if ok {
|
|
|
+ if pwd == password {
|
|
|
+ return true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return false
|
|
|
+}
|
|
|
+
|
|
|
func DropAll() {
|
|
|
ctx, _ := context.WithTimeout(context.Background(), timeout)
|
|
|
collectionNames, err := database.ListCollectionNames(ctx, bson.D{}, &options.ListCollectionsOptions{})
|