mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-04 07:22:13 +08:00
25 lines
559 B
Go
25 lines
559 B
Go
|
|
package googleapi
|
||
|
|
|
||
|
|
import "net/http"
|
||
|
|
|
||
|
|
// HTTPStatusToGoogleStatus maps HTTP status codes to Google-style error status strings.
|
||
|
|
func HTTPStatusToGoogleStatus(status int) string {
|
||
|
|
switch status {
|
||
|
|
case http.StatusBadRequest:
|
||
|
|
return "INVALID_ARGUMENT"
|
||
|
|
case http.StatusUnauthorized:
|
||
|
|
return "UNAUTHENTICATED"
|
||
|
|
case http.StatusForbidden:
|
||
|
|
return "PERMISSION_DENIED"
|
||
|
|
case http.StatusNotFound:
|
||
|
|
return "NOT_FOUND"
|
||
|
|
case http.StatusTooManyRequests:
|
||
|
|
return "RESOURCE_EXHAUSTED"
|
||
|
|
default:
|
||
|
|
if status >= 500 {
|
||
|
|
return "INTERNAL"
|
||
|
|
}
|
||
|
|
return "UNKNOWN"
|
||
|
|
}
|
||
|
|
}
|