1
0
mirror of synced 2024-11-22 13:06:05 +03:00
mg-transport-api-client-go/v1/helpers.go

33 lines
462 B
Go
Raw Normal View History

2022-10-26 10:54:54 +03:00
package v1
import (
"io"
2022-10-28 10:05:11 +03:00
"io/ioutil"
2022-10-26 10:54:54 +03:00
"net/http"
"time"
2022-10-26 10:54:54 +03:00
)
2022-10-26 14:58:32 +03:00
const MB = 1 << 20
const LimitResponse = 3 * MB
2022-10-26 14:58:32 +03:00
func buildLimitedRawResponse(resp *http.Response) ([]byte, error) {
2022-10-26 10:54:54 +03:00
defer resp.Body.Close()
limitReader := io.LimitReader(resp.Body, LimitResponse)
2022-10-28 10:05:11 +03:00
body, err := ioutil.ReadAll(limitReader)
2022-10-26 14:58:32 +03:00
2022-10-26 10:54:54 +03:00
if err != nil {
2022-10-26 14:58:32 +03:00
return body, err
2022-10-26 10:54:54 +03:00
}
2022-10-26 14:58:32 +03:00
return body, nil
2022-10-26 10:54:54 +03:00
}
func BoolPtr(v bool) *bool {
return &v
}
func TimePtr(v time.Time) *time.Time {
return &v
}