@@ -12,8 +12,8 @@ import (
1212 "code.gitea.io/gitea/modules/json"
1313)
1414
15- // responseText is used to get the response as text, instead of parsing it as JSON.
16- type responseText struct {
15+ // ResponseText is used to get the response as text, instead of parsing it as JSON.
16+ type ResponseText struct {
1717 Text string
1818}
1919
@@ -50,7 +50,7 @@ func (re responseError) Error() string {
5050// Caller should check the ResponseExtra.HasError() first to see whether the request fails.
5151//
5252// * If the "res" is a struct pointer, the response will be parsed as JSON
53- // * If the "res" is responseText pointer, the response will be stored as text in it
53+ // * If the "res" is ResponseText pointer, the response will be stored as text in it
5454// * If the "res" is responseCallback pointer, the callback function should set the ResponseExtra fields accordingly
5555func requestJSONResp [T any ](req * httplib.Request , res * T ) (ret * T , extra ResponseExtra ) {
5656 resp , err := req .Response ()
@@ -81,7 +81,7 @@ func requestJSONResp[T any](req *httplib.Request, res *T) (ret *T, extra Respons
8181
8282 // now, the StatusCode must be 2xx
8383 var v any = res
84- if respText , ok := v .(* responseText ); ok {
84+ if respText , ok := v .(* ResponseText ); ok {
8585 // get the whole response as a text string
8686 bs , err := io .ReadAll (resp .Body )
8787 if err != nil {
@@ -119,7 +119,7 @@ func requestJSONResp[T any](req *httplib.Request, res *T) (ret *T, extra Respons
119119// requestJSONClientMsg sends a request to the gitea server, server only responds text message status=200 with "success" body
120120// If the request succeeds (200), the argument clientSuccessMsg will be used as ResponseExtra.UserMsg.
121121func requestJSONClientMsg (req * httplib.Request , clientSuccessMsg string ) ResponseExtra {
122- _ , extra := requestJSONResp (req , & responseText {})
122+ _ , extra := requestJSONResp (req , & ResponseText {})
123123 if extra .HasError () {
124124 return extra
125125 }
0 commit comments