123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- package main
- import (
- "context"
- "fmt"
- "go.mongodb.org/mongo-driver/bson"
- "go.mongodb.org/mongo-driver/bson/primitive"
- "go.mongodb.org/mongo-driver/mongo"
- "go.mongodb.org/mongo-driver/mongo/options"
- "go.mongodb.org/mongo-driver/mongo/readpref"
- "log"
- "testing"
- "time"
- )
- func TestMgo1(T *testing.T) {
- type Item struct {
- ID primitive.ObjectID `bson:"_id,omitempty"`
- Site string `bson:"site"`
- Channel string `bson:"channel"`
- Publishtime string `bson:"publishtime"`
- // Add other fields as needed
- }
- type GroupedData struct {
- Channel string `bson:"channel"`
- Count int `bson:"count"`
- }
- // 设置MongoDB连接选项
- //clientOptions := options.Client().ApplyURI("mongodb://127.0.0.1:27081")
- clientOptions := options.Client().ApplyURI("mongodb://172.17.4.87:27080")
- //clientOptions := options.Client().ApplyURI("mongodb://SJZY_RWbid_ES:SJZY%40B4i4D5e6S@172.17.145.163:27083")
- clientOptions.SetReadPreference(readpref.Primary())
- clientOptions.SetDirect(true)
- // 连接MongoDB
- client, err := mongo.Connect(context.Background(), clientOptions)
- if err != nil {
- log.Println(err)
- }
- // 检查连接
- err = client.Ping(context.Background(), nil)
- if err != nil {
- log.Fatal(err)
- }
- // 选择数据库和集合
- database := client.Database("qlm")
- collection := database.Collection("data_merge")
- // 查询条件
- filter := bson.D{
- {"site", "千里马"},
- {"publishtime", bson.D{{"$gt", "2022-01-01"}}},
- }
- // 执行查询
- cursor, err := collection.Find(context.Background(), filter)
- if err != nil {
- log.Fatal(err)
- }
- defer cursor.Close(context.Background())
- // 手动分组查看数据
- groupedData := make(map[string]int)
- for cursor.Next(context.Background()) {
- var item Item
- err := cursor.Decode(&item)
- if err != nil {
- log.Fatal(err)
- }
- // 在这里可以根据需要进行其他逻辑处理
- // 手动分组
- groupedData[item.Channel]++
- }
- // 输出结果
- //for channel, count := range groupedData {
- // fmt.Printf("Channel: %s, Count: %d\n", channel, count)
- //}
- // 将手动分组的数据保存到新的集合中
- var groupedDataList []interface{}
- for channel, count := range groupedData {
- groupedDataList = append(groupedDataList, GroupedData{Channel: channel, Count: count})
- }
- // 选择新的集合
- newCollection := database.Collection("wcc_qlm")
- // 插入数据
- _, err = newCollection.InsertMany(context.Background(), groupedDataList)
- if err != nil {
- log.Fatal(err)
- }
- fmt.Println("Data inserted into wcc_qlm collection.")
- }
- func Test2(T *testing.T) {
- // Assume you have a MongoDB _id
- idString := "5f289ea352c1d9fbf84e1f1b"
- // Convert the string to ObjectId
- objectID, err := primitive.ObjectIDFromHex(idString)
- if err != nil {
- fmt.Println("Error parsing ObjectId:", err)
- return
- }
- // Extract the time portion from ObjectId
- timestamp := objectID.Timestamp()
- //timeFromTimestamp := time.Unix(int64(timestamp.Unix()), 0)
- // Print timestamp and corresponding time
- fmt.Printf("Timestamp: %v\n", timestamp)
- fmt.Printf("Time from Timestamp: %v\n", timestamp.Unix())
- oneYearAgo := time.Now().AddDate(-1, 0, 0)
- isWithinOneYear := timestamp.After(oneYearAgo)
- if isWithinOneYear {
- fmt.Println(111)
- } else {
- fmt.Println(222)
- }
- }
- func Test3(T *testing.T) {
- // 解析时间
- t, err := time.Parse("2006-01-02 15:04:05", "2024-07-01 00:00:00")
- if err != nil {
- panic(err)
- }
- // 获取时间戳(秒)
- seconds := t.Unix()
- // 构造 ObjectID
- objectID := primitive.NewObjectIDFromTimestamp(time.Unix(seconds, 0))
- fmt.Println("ObjectID:", objectID.Hex())
- }
|