main.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package main
  2. import (
  3. "box-cost/el"
  4. "box-cost/model"
  5. "context"
  6. "fmt"
  7. "log"
  8. "os"
  9. "time"
  10. "github.com/spf13/viper"
  11. "go.mongodb.org/mongo-driver/bson"
  12. "go.mongodb.org/mongo-driver/bson/primitive"
  13. "go.mongodb.org/mongo-driver/mongo"
  14. "go.mongodb.org/mongo-driver/mongo/options"
  15. )
  16. const (
  17. MONGODB_URI = "mongodb://root:boxcost@124.71.139.24:37030/box-cost?authSource=admin"
  18. CONFIG_FILE = "app.yaml"
  19. )
  20. type AppConf struct {
  21. Plans []string `yaml:"plans"`
  22. }
  23. func LoadConfFile() (*AppConf, error) {
  24. file, err := os.Open(CONFIG_FILE)
  25. if err != nil {
  26. fmt.Println("open file err:", err)
  27. return nil, err
  28. }
  29. v := viper.New()
  30. v.SetConfigType("yaml")
  31. err = v.ReadConfig(file)
  32. if err != nil {
  33. return nil, err
  34. }
  35. c := new(AppConf)
  36. err = v.Unmarshal(c)
  37. return c, err
  38. }
  39. func main() {
  40. // 读取配置
  41. conf, err := LoadConfFile()
  42. if err != nil {
  43. log.Fatal(err)
  44. }
  45. planIds := conf.Plans
  46. // 连接数据库
  47. ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
  48. client, err := mongo.Connect(ctx, options.Client().ApplyURI(MONGODB_URI))
  49. if err != nil {
  50. log.Fatal(err)
  51. }
  52. defer cancel()
  53. if err != nil {
  54. log.Fatal(err)
  55. }
  56. defer client.Disconnect(ctx)
  57. collection := client.Database("box-cost").Collection("product-plan")
  58. // 构建查询管道
  59. pipeline := make([]bson.M, 0)
  60. for _, planIdstr := range planIds {
  61. planId, _ := primitive.ObjectIDFromHex(planIdstr)
  62. pipeline = append(pipeline, bson.M{"$match": bson.M{"_id": planId}})
  63. }
  64. // 执行聚合查询
  65. cursor, err := collection.Aggregate(context.Background(), pipeline)
  66. if err != nil {
  67. log.Fatal(err)
  68. }
  69. defer cursor.Close(context.Background())
  70. // 获取结果
  71. plans := make([]*model.ProductPlan, 0)
  72. err = cursor.All(context.Background(), &plans)
  73. if err != nil {
  74. log.Fatal(err)
  75. }
  76. // 读取excel
  77. fmt.Println(plans[0].Name)
  78. el.UpdateExcel(client, plans)
  79. }