@@ -53,6 +53,7 @@ const (
53
53
DefaultStreamingResponseJsonPath = "choices.0.delta.content"
54
54
DefaultDenyCode = 200
55
55
DefaultDenyMessage = "很抱歉,我无法回答您的问题"
56
+ DefaultTimeout = 2000
56
57
57
58
AliyunUserAgent = "CIPFrom/AIGateway"
58
59
LengthLimit = 1800
@@ -100,6 +101,7 @@ type AISecurityConfig struct {
100
101
denyMessage string
101
102
protocolOriginal bool
102
103
riskLevelBar string
104
+ timeout uint32
103
105
metrics map [string ]proxywasm.MetricCounter
104
106
}
105
107
@@ -225,6 +227,11 @@ func parseConfig(json gjson.Result, config *AISecurityConfig, log wrapper.Log) e
225
227
} else {
226
228
config .riskLevelBar = HighRisk
227
229
}
230
+ if obj := json .Get ("timeout" ); obj .Exists () {
231
+ config .timeout = uint32 (obj .Int ())
232
+ } else {
233
+ config .timeout = DefaultTimeout
234
+ }
228
235
config .client = wrapper .NewClusterClient (wrapper.FQDNCluster {
229
236
FQDN : serviceName ,
230
237
Port : servicePort ,
@@ -253,6 +260,7 @@ func onHttpRequestHeaders(ctx wrapper.HttpContext, config AISecurityConfig, log
253
260
254
261
func onHttpRequestBody (ctx wrapper.HttpContext , config AISecurityConfig , body []byte , log wrapper.Log ) types.Action {
255
262
log .Debugf ("checking request body..." )
263
+ startTime := time .Now ().UnixMilli ()
256
264
content := gjson .GetBytes (body , config .requestContentJsonPath ).String ()
257
265
model := gjson .GetBytes (body , "model" ).String ()
258
266
ctx .SetContext ("requestModel" , model )
@@ -279,6 +287,10 @@ func onHttpRequestBody(ctx wrapper.HttpContext, config AISecurityConfig, body []
279
287
}
280
288
if riskLevelToInt (response .Data .RiskLevel ) < riskLevelToInt (config .riskLevelBar ) {
281
289
if contentIndex >= len (content ) {
290
+ endTime := time .Now ().UnixMilli ()
291
+ ctx .SetUserAttribute ("safecheck_request_rt" , endTime - startTime )
292
+ ctx .SetUserAttribute ("safecheck_status" , "request pass" )
293
+ ctx .WriteUserAttributeToLogWithKey (wrapper .AILogKey )
282
294
proxywasm .ResumeHttpRequest ()
283
295
} else {
284
296
singleCall ()
@@ -305,7 +317,9 @@ func onHttpRequestBody(ctx wrapper.HttpContext, config AISecurityConfig, body []
305
317
}
306
318
ctx .DontReadResponseBody ()
307
319
config .incrementCounter ("ai_sec_request_deny" , 1 )
308
- ctx .SetUserAttribute ("safecheck_status" , "request deny" )
320
+ endTime := time .Now ().UnixMilli ()
321
+ ctx .SetUserAttribute ("safecheck_request_rt" , endTime - startTime )
322
+ ctx .SetUserAttribute ("safecheck_status" , "reqeust deny" )
309
323
if response .Data .Advice != nil {
310
324
ctx .SetUserAttribute ("safecheck_riskLabel" , response .Data .Result [0 ].Label )
311
325
ctx .SetUserAttribute ("safecheck_riskWords" , response .Data .Result [0 ].RiskWords )
@@ -345,7 +359,7 @@ func onHttpRequestBody(ctx wrapper.HttpContext, config AISecurityConfig, body []
345
359
reqParams .Add (k , v )
346
360
}
347
361
reqParams .Add ("Signature" , signature )
348
- err := config .client .Post (fmt .Sprintf ("/?%s" , reqParams .Encode ()), [][2 ]string {{"User-Agent" , AliyunUserAgent }}, nil , callback )
362
+ err := config .client .Post (fmt .Sprintf ("/?%s" , reqParams .Encode ()), [][2 ]string {{"User-Agent" , AliyunUserAgent }}, nil , callback , config . timeout )
349
363
if err != nil {
350
364
log .Errorf ("failed call the safe check service: %v" , err )
351
365
proxywasm .ResumeHttpRequest ()
@@ -364,20 +378,6 @@ func convertHeaders(hs [][2]string) map[string][]string {
364
378
return ret
365
379
}
366
380
367
- // headers: map[string][]string -> [][2]string
368
- func reconvertHeaders (hs map [string ][]string ) [][2 ]string {
369
- var ret [][2 ]string
370
- for k , vs := range hs {
371
- for _ , v := range vs {
372
- ret = append (ret , [2 ]string {k , v })
373
- }
374
- }
375
- sort .SliceStable (ret , func (i , j int ) bool {
376
- return ret [i ][0 ] < ret [j ][0 ]
377
- })
378
- return ret
379
- }
380
-
381
381
func onHttpResponseHeaders (ctx wrapper.HttpContext , config AISecurityConfig , log wrapper.Log ) types.Action {
382
382
if ! config .checkResponse {
383
383
log .Debugf ("response checking is disabled" )
@@ -401,6 +401,7 @@ func onHttpResponseHeaders(ctx wrapper.HttpContext, config AISecurityConfig, log
401
401
402
402
func onHttpResponseBody (ctx wrapper.HttpContext , config AISecurityConfig , body []byte , log wrapper.Log ) types.Action {
403
403
log .Debugf ("checking response body..." )
404
+ startTime := time .Now ().UnixMilli ()
404
405
hdsMap := ctx .GetContext ("headers" ).(map [string ][]string )
405
406
isStreamingResponse := strings .Contains (strings .Join (hdsMap ["content-type" ], ";" ), "event-stream" )
406
407
model := ctx .GetStringContext ("requestModel" , "unknown" )
@@ -433,6 +434,10 @@ func onHttpResponseBody(ctx wrapper.HttpContext, config AISecurityConfig, body [
433
434
}
434
435
if riskLevelToInt (response .Data .RiskLevel ) < riskLevelToInt (config .riskLevelBar ) {
435
436
if contentIndex >= len (content ) {
437
+ endTime := time .Now ().UnixMilli ()
438
+ ctx .SetUserAttribute ("safecheck_response_rt" , endTime - startTime )
439
+ ctx .SetUserAttribute ("safecheck_status" , "response pass" )
440
+ ctx .WriteUserAttributeToLogWithKey (wrapper .AILogKey )
436
441
proxywasm .ResumeHttpResponse ()
437
442
} else {
438
443
singleCall ()
@@ -458,6 +463,8 @@ func onHttpResponseBody(ctx wrapper.HttpContext, config AISecurityConfig, body [
458
463
proxywasm .SendHttpResponse (uint32 (config .denyCode ), [][2 ]string {{"content-type" , "application/json" }}, jsonData , - 1 )
459
464
}
460
465
config .incrementCounter ("ai_sec_response_deny" , 1 )
466
+ endTime := time .Now ().UnixMilli ()
467
+ ctx .SetUserAttribute ("safecheck_response_rt" , endTime - startTime )
461
468
ctx .SetUserAttribute ("safecheck_status" , "response deny" )
462
469
if response .Data .Advice != nil {
463
470
ctx .SetUserAttribute ("safecheck_riskLabel" , response .Data .Result [0 ].Label )
@@ -498,7 +505,7 @@ func onHttpResponseBody(ctx wrapper.HttpContext, config AISecurityConfig, body [
498
505
reqParams .Add (k , v )
499
506
}
500
507
reqParams .Add ("Signature" , signature )
501
- err := config .client .Post (fmt .Sprintf ("/?%s" , reqParams .Encode ()), [][2 ]string {{"User-Agent" , AliyunUserAgent }}, nil , callback )
508
+ err := config .client .Post (fmt .Sprintf ("/?%s" , reqParams .Encode ()), [][2 ]string {{"User-Agent" , AliyunUserAgent }}, nil , callback , config . timeout )
502
509
if err != nil {
503
510
log .Errorf ("failed call the safe check service: %v" , err )
504
511
proxywasm .ResumeHttpResponse ()
0 commit comments