|
@@ -6,7 +6,9 @@ import (
|
|
|
"errors"
|
|
|
"fmt"
|
|
|
"io"
|
|
|
+ "io/ioutil"
|
|
|
"log"
|
|
|
+ "os"
|
|
|
"sort"
|
|
|
"strings"
|
|
|
"time"
|
|
@@ -610,12 +612,11 @@ func (m *MongoDAO) GetFile(fileid string, stream io.Writer) error {
|
|
|
log.Print(err)
|
|
|
return err
|
|
|
}
|
|
|
- dStream, err := m.bucket.DownloadToStream(objectID, stream)
|
|
|
+ _, err = m.bucket.DownloadToStream(objectID, stream)
|
|
|
if err != nil {
|
|
|
log.Print(err)
|
|
|
return err
|
|
|
}
|
|
|
- fmt.Printf("File size to download: %v \n", dStream)
|
|
|
return nil
|
|
|
}
|
|
|
|
|
@@ -1124,6 +1125,320 @@ func (m *MongoDAO) ChangePWD(username string, newpassword string, oldpassword st
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
+//Backup pinging the mongoDao
|
|
|
+func (m *MongoDAO) Backup(path string) error {
|
|
|
+ // writung users
|
|
|
+ err := m.backupUsers(path)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ // writing tags
|
|
|
+ err = m.backupTags(path)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ // writing manufacturers
|
|
|
+ err = m.backupManufacturers(path)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ // writing schematics
|
|
|
+ err = m.backupSchematics(path)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ // writing effect categories
|
|
|
+ err = m.backupEffectTypes(path)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ // writing effects
|
|
|
+ err = m.backupEffects(path)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ return err
|
|
|
+}
|
|
|
+
|
|
|
+func (m *MongoDAO) backupUsers(path string) error {
|
|
|
+ path = path + "/users"
|
|
|
+ os.MkdirAll(path, os.ModePerm)
|
|
|
+
|
|
|
+ ctx, _ := context.WithTimeout(context.Background(), timeout)
|
|
|
+ collection := m.database.Collection(usersCollectionName)
|
|
|
+ cursor, err := collection.Find(ctx, bson.M{})
|
|
|
+ if err != nil {
|
|
|
+ log.Fatal(err)
|
|
|
+ }
|
|
|
+ defer cursor.Close(ctx)
|
|
|
+ count := 0
|
|
|
+ fmt.Print("backup users: ")
|
|
|
+ for cursor.Next(ctx) {
|
|
|
+ var user model.User
|
|
|
+ if err = cursor.Decode(&user); err != nil {
|
|
|
+ log.Fatal(err)
|
|
|
+ return err
|
|
|
+ } else {
|
|
|
+ user.Name = strings.ToLower(user.Name)
|
|
|
+ user.Password = BuildPasswordHash(user.Password)
|
|
|
+ data, err := json.Marshal(user)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ filename := path + "/" + user.ID.Hex() + ".json"
|
|
|
+ ioutil.WriteFile(filename, data, os.ModePerm)
|
|
|
+ count++
|
|
|
+ if count%100 == 0 {
|
|
|
+ fmt.Print(".")
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ fmt.Println()
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+func (m *MongoDAO) backupTags(path string) error {
|
|
|
+ path = path + "/tags"
|
|
|
+ os.MkdirAll(path, os.ModePerm)
|
|
|
+
|
|
|
+ ctx, _ := context.WithTimeout(context.Background(), timeout)
|
|
|
+ collection := m.database.Collection(tagsCollectionName)
|
|
|
+ cursor, err := collection.Find(ctx, bson.M{})
|
|
|
+ if err != nil {
|
|
|
+ log.Fatal(err)
|
|
|
+ }
|
|
|
+ defer cursor.Close(ctx)
|
|
|
+ count := 0
|
|
|
+ fmt.Print("backup tags: ")
|
|
|
+ for cursor.Next(ctx) {
|
|
|
+ var model model.Tag
|
|
|
+ if err = cursor.Decode(&model); err != nil {
|
|
|
+ log.Fatal(err)
|
|
|
+ return err
|
|
|
+ } else {
|
|
|
+ data, err := json.Marshal(model)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ filename := path + "/" + model.ID.Hex() + ".json"
|
|
|
+ ioutil.WriteFile(filename, data, os.ModePerm)
|
|
|
+ count++
|
|
|
+ if count%100 == 0 {
|
|
|
+ fmt.Print(".")
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ fmt.Println()
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+func (m *MongoDAO) backupManufacturers(path string) error {
|
|
|
+ path = path + "/manufacturers"
|
|
|
+ os.MkdirAll(path, os.ModePerm)
|
|
|
+
|
|
|
+ ctx, _ := context.WithTimeout(context.Background(), timeout)
|
|
|
+ collection := m.database.Collection(manufacturersCollectionName)
|
|
|
+ cursor, err := collection.Find(ctx, bson.M{})
|
|
|
+ if err != nil {
|
|
|
+ log.Fatal(err)
|
|
|
+ }
|
|
|
+ defer cursor.Close(ctx)
|
|
|
+ count := 0
|
|
|
+ fmt.Print("backup manufacturers: ")
|
|
|
+ for cursor.Next(ctx) {
|
|
|
+ var model model.Manufacturer
|
|
|
+ if err = cursor.Decode(&model); err != nil {
|
|
|
+ log.Fatal(err)
|
|
|
+ return err
|
|
|
+ } else {
|
|
|
+ data, err := json.Marshal(model)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ filename := path + "/" + model.ID.Hex() + ".json"
|
|
|
+ ioutil.WriteFile(filename, data, os.ModePerm)
|
|
|
+ count++
|
|
|
+ if count%100 == 0 {
|
|
|
+ fmt.Print(".")
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ fmt.Println()
|
|
|
+ return nil
|
|
|
+}
|
|
|
+func (m *MongoDAO) backupSchematics(path string) error {
|
|
|
+ path = path + "/schematics"
|
|
|
+ os.MkdirAll(path, os.ModePerm)
|
|
|
+
|
|
|
+ ctx, _ := context.WithTimeout(context.Background(), timeout)
|
|
|
+ collection := m.database.Collection(schematicsCollectionName)
|
|
|
+ cursor, err := collection.Find(ctx, bson.M{})
|
|
|
+ if err != nil {
|
|
|
+ log.Fatal(err)
|
|
|
+ }
|
|
|
+ defer cursor.Close(ctx)
|
|
|
+ count := 0
|
|
|
+ fmt.Print("backup schematics: ")
|
|
|
+ for cursor.Next(ctx) {
|
|
|
+ var model model.Schematic
|
|
|
+ if err = cursor.Decode(&model); err != nil {
|
|
|
+ log.Fatal(err)
|
|
|
+ return err
|
|
|
+ } else {
|
|
|
+ folder := path + "/" + model.ID.Hex()
|
|
|
+ os.MkdirAll(folder, os.ModePerm)
|
|
|
+
|
|
|
+ for _, fileid := range model.Files {
|
|
|
+ if fileid != "" {
|
|
|
+
|
|
|
+ filename, err := m.GetFilename(fileid)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+
|
|
|
+ imagename := folder + "/" + filename
|
|
|
+ file, err := os.Create(imagename)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ defer file.Close()
|
|
|
+ err = m.GetFile(fileid, file)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ data, err := json.Marshal(model)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+
|
|
|
+ filename := folder + "/schematic.json"
|
|
|
+ ioutil.WriteFile(filename, data, os.ModePerm)
|
|
|
+ count++
|
|
|
+ if count%100 == 0 {
|
|
|
+ fmt.Print(".")
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ fmt.Println()
|
|
|
+ return nil
|
|
|
+}
|
|
|
+func (m *MongoDAO) backupEffectTypes(path string) error {
|
|
|
+ path = path + "/effecttypes"
|
|
|
+ os.MkdirAll(path, os.ModePerm)
|
|
|
+
|
|
|
+ ctx, _ := context.WithTimeout(context.Background(), timeout)
|
|
|
+ collection := m.database.Collection(effectTypesCollectionName)
|
|
|
+ cursor, err := collection.Find(ctx, bson.M{})
|
|
|
+ if err != nil {
|
|
|
+ log.Fatal(err)
|
|
|
+ }
|
|
|
+ defer cursor.Close(ctx)
|
|
|
+ count := 0
|
|
|
+ fmt.Print("backup effecttypes: ")
|
|
|
+ for cursor.Next(ctx) {
|
|
|
+ var model model.EffectType
|
|
|
+ if err = cursor.Decode(&model); err != nil {
|
|
|
+ log.Fatal(err)
|
|
|
+ return err
|
|
|
+ } else {
|
|
|
+ folder := path + "/" + model.ID.Hex()
|
|
|
+ os.MkdirAll(folder, os.ModePerm)
|
|
|
+
|
|
|
+ fileid := model.TypeImage
|
|
|
+ if fileid != "" {
|
|
|
+
|
|
|
+ filename, err := m.GetFilename(fileid)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+
|
|
|
+ imagename := folder + "/" + filename
|
|
|
+ file, err := os.Create(imagename)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ defer file.Close()
|
|
|
+ err = m.GetFile(fileid, file)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ model.TypeImage = filename
|
|
|
+ }
|
|
|
+ data, err := json.Marshal(model)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+
|
|
|
+ filename := folder + "/effecttype.json"
|
|
|
+ ioutil.WriteFile(filename, data, os.ModePerm)
|
|
|
+ count++
|
|
|
+ if count%100 == 0 {
|
|
|
+ fmt.Print(".")
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ fmt.Println()
|
|
|
+ return nil
|
|
|
+}
|
|
|
+func (m *MongoDAO) backupEffects(path string) error {
|
|
|
+ path = path + "/effects"
|
|
|
+ os.MkdirAll(path, os.ModePerm)
|
|
|
+
|
|
|
+ ctx, _ := context.WithTimeout(context.Background(), timeout)
|
|
|
+ collection := m.database.Collection(effectsCollectionName)
|
|
|
+ cursor, err := collection.Find(ctx, bson.M{})
|
|
|
+ if err != nil {
|
|
|
+ log.Fatal(err)
|
|
|
+ }
|
|
|
+ defer cursor.Close(ctx)
|
|
|
+ count := 0
|
|
|
+ fmt.Print("backup effects: ")
|
|
|
+ for cursor.Next(ctx) {
|
|
|
+ var model model.Effect
|
|
|
+ if err = cursor.Decode(&model); err != nil {
|
|
|
+ log.Fatal(err)
|
|
|
+ return err
|
|
|
+ } else {
|
|
|
+ folder := path + "/" + model.ID.Hex()
|
|
|
+ os.MkdirAll(folder, os.ModePerm)
|
|
|
+ fileid := model.Image
|
|
|
+ if fileid != "" {
|
|
|
+ filename, err := m.GetFilename(fileid)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+
|
|
|
+ imagename := folder + "/" + filename
|
|
|
+ file, err := os.Create(imagename)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ defer file.Close()
|
|
|
+ err = m.GetFile(fileid, file)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ model.Image = filename
|
|
|
+ }
|
|
|
+ data, err := json.Marshal(model)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+
|
|
|
+ filename := folder + "/effect.json"
|
|
|
+ ioutil.WriteFile(filename, data, os.ModePerm)
|
|
|
+ count++
|
|
|
+ if count%100 == 0 {
|
|
|
+ fmt.Print(".")
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ fmt.Println()
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
// Ping pinging the mongoDao
|
|
|
func (m *MongoDAO) Ping() error {
|
|
|
if !m.initialised {
|