zhangqian
2024-12-12 66f3c0e80750f288d13f23360b550b8aff1dbc04
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
package models
 
import (
    "bytes"
    "context"
    "encoding/json"
    "fmt"
    "github.com/elastic/go-elasticsearch/v6"
    "log"
    "model-engine/config"
    "model-engine/db"
    "model-engine/service"
    "strings"
    "time"
)
 
type GatherModel struct {
    OrgIds         []interface{} `json:"-"`
    AreaIds        []interface{} `json:"-"`
    Building       string        `gorm:"type:varchar(255)" json:"building"`    //楼栋
    Floor          string        `gorm:"type:varchar(255)" json:"floor"`       //楼层
    AlarmType      db.AlarmType  `gorm:"type:varchar(255);" json:"alarmType"`  //预警方式
    PersonType     string        `gorm:"type:varchar(255);" json:"personType"` //人员类型
    GatherPersons  int           `gorm:"type:int;" json:"gatherPersons"`       //聚集人数
    AppearInterval int           `gorm:"type:int;" json:"appearInterval"`      //出现间隔,单位为秒
    DaysWindow     int           `gorm:"type:int;" json:"daysWindow" `         //近几天内
    Threshold      int           `gorm:"type:int;" json:"threshold" `          //达几次
}
 
func (m *GatherModel) Init(task *db.ModelTask) error {
 
    orgIds, areaIds, err := service.GetOrgIdsAndAreaIdsByDomainUnitIds(task.DomainUnitIds)
    if err != nil {
        return err
    }
 
    m.OrgIds = orgIds
    m.AreaIds = areaIds
    m.Building = task.Building
    m.Floor = task.Floor
    m.AlarmType = task.AlarmType
    m.PersonType = task.PersonType
    m.GatherPersons = task.GatherPersons
    m.AppearInterval = task.AppearInterval
    m.DaysWindow = task.DaysWindow
    m.Threshold = task.Threshold
    fmt.Println("GatherModel init finish ...")
    return nil
}
 
type GatherRecord struct {
    IDCard         string `json:"idCard"`
    PicDate        string `json:"picDate"`
    DocumentNumber string
    CommunityId    string `json:"communityId"`
    Building       string `json:"building"`
    Floor          string `json:"floor"`
    GatherPersons  int    `gorm:"type:int;" json:"gatherPersons"`  //聚集人数
    AppearInterval int    `gorm:"type:int;" json:"appearInterval"` //出现间隔,单位为秒
}
 
func (m *GatherModel) Run() error {
    records, err := queryElasticsearch(db.GetEsClient(), m)
    if err != nil {
        log.Fatalf("Failed to query Elasticsearch: %v", err)
    }
 
    if len(records) == 0 {
        return nil
    }
 
    aggregation, err := analyzeAndAggregate(records)
    if err != nil {
        log.Fatalf("Failed to analyze and aggregate data: %v", err)
    }
 
    // Print or process the aggregation results as needed
    for location, persons := range aggregation {
        fmt.Printf("Gathering detected at %s with %d unique persons\n", location, len(persons))
    }
    return nil
}
 
func (m *GatherModel) Shutdown() error {
    // 清理资源
    fmt.Println("Shutting down GatherModel Model")
    return nil
}
 
func queryElasticsearch(esClient *elasticsearch.Client, gatherModel *GatherModel) ([]GatherRecord, error) {
    var buf bytes.Buffer
    now := time.Now()
    start := now.Add(-time.Duration(gatherModel.DaysWindow) * 24 * time.Hour)
 
    // 构建过滤条件
    var filters []map[string]interface{}
    if len(gatherModel.OrgIds) > 0 || len(gatherModel.AreaIds) > 0 {
        // 获取数据权限过滤条件
        authFilters := GetDomainFilters(gatherModel.OrgIds, gatherModel.AreaIds)
        filters = append(filters, authFilters...)
    }
 
    // 地址过滤
    if gatherModel.Building != "" || gatherModel.Floor != "" {
        var addrParams map[string]interface{}
        if gatherModel.Floor != "" {
            addrParams = map[string]interface{}{"bool": map[string]interface{}{
                "must": []interface{}{
                    map[string]interface{}{
                        "term": map[string]interface{}{
                            "cameraLocation.building": gatherModel.Building,
                        }},
                    map[string]interface{}{
                        "term": map[string]interface{}{
                            "cameraLocation.floor": gatherModel.Floor,
                        }},
                },
            }}
        } else if gatherModel.Building != "" {
            addrParams = map[string]interface{}{
                "term": map[string]interface{}{
                    "cameraLocation.building": gatherModel.Building,
                }}
        }
        filters = append(filters, addrParams)
    }
 
    // 重点人员过滤
    if len(gatherModel.PersonType) > 0 {
        filters = append(filters, map[string]interface{}{
            "terms": map[string]interface{}{
                "keyPersonType": strings.Split(gatherModel.PersonType, ","),
            },
        })
    }
 
    // 时间范围
    filters = append(filters, map[string]interface{}{
        "range": map[string]interface{}{
            "picDate": map[string]interface{}{
                "gte": start.Format(time.DateTime),
                "lt":  now.Format(time.DateTime),
            },
        },
    })
 
    query := map[string]interface{}{
        "query": map[string]interface{}{
            "bool": map[string]interface{}{
                "filter": filters,
            },
        },
        "aggs": map[string]interface{}{
            "gather_events": map[string]interface{}{
                "date_histogram": map[string]interface{}{
                    "field":         "picDate",
                    "interval":      fmt.Sprintf("%ds", gatherModel.AppearInterval),
                    "min_doc_count": 1,
                },
                "aggs": map[string]interface{}{
                    "community": map[string]interface{}{
                        "terms": map[string]interface{}{
                            "field": "communityId", // 聚合小区id
                            "size":  10000,
                        },
                        "aggs": map[string]interface{}{
                            "location": map[string]interface{}{
                                "terms": map[string]interface{}{
                                    "field": "cameraLocation.building", // 聚合楼栋
                                    "size":  10000,
                                },
                                "aggs": map[string]interface{}{
                                    "floor": map[string]interface{}{
                                        "terms": map[string]interface{}{
                                            "field": "cameraLocation.floor", // 聚合楼层
                                            "size":  10000,
                                        },
                                        "aggs": map[string]interface{}{
                                            "people": map[string]interface{}{
                                                "terms": map[string]interface{}{
                                                    "field": "documentNumber", // 按人员唯一标识聚合
                                                    "size":  10000,
                                                },
                                            },
                                            "filter_gather": map[string]interface{}{
                                                "bucket_selector": map[string]interface{}{
                                                    "buckets_path": map[string]interface{}{
                                                        "personCount": "people._bucket_count", // 统计人数
                                                    },
                                                    "script": map[string]interface{}{
                                                        "source": "params.personCount >= params.gatherPersons", // 聚集人数过滤
                                                        "params": map[string]interface{}{
                                                            "gatherPersons": gatherModel.GatherPersons,
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                            },
                        },
                    },
                },
            },
        },
        "size": 0,
    }
 
    if err := json.NewEncoder(&buf).Encode(query); err != nil {
        return nil, fmt.Errorf("error encoding query: %s", err)
    }
 
    res, err := esClient.Search(
        esClient.Search.WithContext(context.Background()),
        esClient.Search.WithIndex(config.EsInfo.EsIndex.AiOcean.IndexName),
        esClient.Search.WithDocumentType(config.EsInfo.EsIndex.AiOcean.IndexType),
        esClient.Search.WithBody(&buf),
        esClient.Search.WithTrackTotalHits(true),
        esClient.Search.WithPretty(),
    )
    if err != nil {
        return nil, fmt.Errorf("error getting response: %s", err)
    }
    defer res.Body.Close()
 
    // Check for a successful status code (2xx range)
    if res.IsError() {
        return nil, fmt.Errorf("error getting response: %s", res.String())
    }
 
    var result map[string]interface{}
    if err := json.NewDecoder(res.Body).Decode(&result); err != nil {
        return nil, fmt.Errorf("error parsing response body: %s", err)
    }
 
    // 解析聚合结果
    var records []GatherRecord
    if aggs, ok := result["aggregations"].(map[string]interface{}); ok {
        if gatherEvents, ok := aggs["gather_events"].(map[string]interface{}); ok {
            if buckets, ok := gatherEvents["buckets"].([]interface{}); ok {
                for _, bucket := range buckets {
                    key := int64(bucket.(map[string]interface{})["key"].(float64)) / 1000 // 将毫秒转换为秒
                    timestamp := time.Unix(key, 0).Format("2006-01-02T15:04:05")
 
                    // 解析按小区、楼栋和楼层的聚合结果
                    if communityBuckets, ok := bucket.(map[string]interface{})["community"].(map[string]interface{})["buckets"].([]interface{}); ok {
                        for _, communityBucket := range communityBuckets {
                            communityId := communityBucket.(map[string]interface{})["key"].(string)
 
                            // 解析按楼栋和楼层的聚合结果
                            if locationBuckets, ok := communityBucket.(map[string]interface{})["location"].(map[string]interface{})["buckets"].([]interface{}); ok {
                                for _, locationBucket := range locationBuckets {
                                    building := locationBucket.(map[string]interface{})["key"].(string)
 
                                    // 解析楼层
                                    if floorBuckets, ok := locationBucket.(map[string]interface{})["floor"].(map[string]interface{})["buckets"].([]interface{}); ok {
                                        for _, floorBucket := range floorBuckets {
                                            floor := floorBucket.(map[string]interface{})["key"].(string)
 
                                            // 解析人员
                                            if peopleBuckets, ok := floorBucket.(map[string]interface{})["people"].(map[string]interface{})["buckets"].([]interface{}); ok {
                                                for _, person := range peopleBuckets {
                                                    documentNumber := person.(map[string]interface{})["key"].(string)
 
                                                    // 构建 GatherRecord 结构体
                                                    record := GatherRecord{
                                                        PicDate:        timestamp,
                                                        DocumentNumber: documentNumber,
                                                        CommunityId:    communityId,
                                                        Building:       building,
                                                        Floor:          floor,
                                                        AppearInterval: gatherModel.AppearInterval,
                                                        GatherPersons:  gatherModel.GatherPersons,
                                                    }
 
                                                    records = append(records, record)
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
 
    return records, nil
}
 
func analyzeAndAggregate(records []GatherRecord) (map[string][]string, error) {
    // Implement logic to aggregate and analyze data based on GatherModel parameters
    // This is a placeholder for the actual implementation
    aggregation := make(map[string][]string)
 
    // Example logic:
    for _, record := range records {
        key := fmt.Sprintf("%s%s%s", record.CommunityId, record.Building, record.Floor)
        aggregation[key] = append(aggregation[key], record.DocumentNumber)
    }
 
    return aggregation, nil
}