Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
U
ulfssar-go
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Faizal Aziz
ulfssar-go
Commits
4c6bbdac
Commit
4c6bbdac
authored
Mar 08, 2024
by
Faizal Aziz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding post with proxy
parent
6d822213
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
0 deletions
+47
-0
client.go
pkg/http-client/client.go
+47
-0
No files found.
pkg/http-client/client.go
View file @
4c6bbdac
...
@@ -46,6 +46,7 @@ type (
...
@@ -46,6 +46,7 @@ type (
Post
(
ctx
*
context
.
UlfsaarContext
,
path
string
,
headers
http
.
Header
,
payload
interface
{})
(
respHeader
http
.
Header
,
statusCode
int
,
body
[]
byte
,
err
error
)
Post
(
ctx
*
context
.
UlfsaarContext
,
path
string
,
headers
http
.
Header
,
payload
interface
{})
(
respHeader
http
.
Header
,
statusCode
int
,
body
[]
byte
,
err
error
)
PostFormData
(
ctx
*
context
.
UlfsaarContext
,
path
string
,
headers
http
.
Header
,
payload
map
[
string
]
string
)
(
respHeader
http
.
Header
,
statusCode
int
,
body
[]
byte
,
err
error
)
PostFormData
(
ctx
*
context
.
UlfsaarContext
,
path
string
,
headers
http
.
Header
,
payload
map
[
string
]
string
)
(
respHeader
http
.
Header
,
statusCode
int
,
body
[]
byte
,
err
error
)
PostMultipartFormFilesAndData
(
ctx
*
context
.
UlfsaarContext
,
path
string
,
headers
http
.
Header
,
formData
[]
*
MultipartField
,
formFiles
[]
MultipartFileRequest
)
(
respHeader
http
.
Header
,
statusCode
int
,
body
[]
byte
,
err
error
)
PostMultipartFormFilesAndData
(
ctx
*
context
.
UlfsaarContext
,
path
string
,
headers
http
.
Header
,
formData
[]
*
MultipartField
,
formFiles
[]
MultipartFileRequest
)
(
respHeader
http
.
Header
,
statusCode
int
,
body
[]
byte
,
err
error
)
PostWithProxy
(
ctx
*
context
.
UlfsaarContext
,
path
,
ip
,
port
,
username
,
password
string
,
headers
http
.
Header
,
payload
interface
{})
(
respHeader
http
.
Header
,
statusCode
int
,
body
[]
byte
,
err
error
)
Put
(
ctx
*
context
.
UlfsaarContext
,
path
string
,
headers
http
.
Header
,
payload
interface
{})
(
respHeader
http
.
Header
,
statusCode
int
,
body
[]
byte
,
err
error
)
Put
(
ctx
*
context
.
UlfsaarContext
,
path
string
,
headers
http
.
Header
,
payload
interface
{})
(
respHeader
http
.
Header
,
statusCode
int
,
body
[]
byte
,
err
error
)
Get
(
ctx
*
context
.
UlfsaarContext
,
path
string
,
headers
http
.
Header
)
(
respHeader
http
.
Header
,
statusCode
int
,
body
[]
byte
,
err
error
)
Get
(
ctx
*
context
.
UlfsaarContext
,
path
string
,
headers
http
.
Header
)
(
respHeader
http
.
Header
,
statusCode
int
,
body
[]
byte
,
err
error
)
GetWithProxy
(
ctx
*
context
.
UlfsaarContext
,
path
,
ip
,
port
string
,
headers
http
.
Header
)
(
respHeader
http
.
Header
,
statusCode
int
,
body
[]
byte
,
err
error
)
GetWithProxy
(
ctx
*
context
.
UlfsaarContext
,
path
,
ip
,
port
string
,
headers
http
.
Header
)
(
respHeader
http
.
Header
,
statusCode
int
,
body
[]
byte
,
err
error
)
...
@@ -148,6 +149,52 @@ func (c *client) SetTimeout(timeout time.Duration) {
...
@@ -148,6 +149,52 @@ func (c *client) SetTimeout(timeout time.Duration) {
return
return
}
}
func
(
c
*
client
)
PostWithProxy
(
ctx
*
context
.
UlfsaarContext
,
path
,
ip
,
port
,
username
,
password
string
,
headers
http
.
Header
,
payload
interface
{})
(
respHeader
http
.
Header
,
statusCode
int
,
body
[]
byte
,
err
error
)
{
uri
:=
c
.
options
.
Address
+
path
startTime
:=
time
.
Now
()
var
stringProxUrl
string
proxUrl
,
err
:=
url
.
Parse
(
fmt
.
Sprintf
(
"http://%s:%s@%s:%s"
,
username
,
password
,
ip
,
port
))
if
err
!=
nil
{
stringProxUrl
=
fmt
.
Sprintf
(
"http://%s:%s@%s:%s"
,
username
,
password
,
ip
,
port
)
}
else
{
stringProxUrl
=
proxUrl
.
String
()
}
request
:=
c
.
httpClient
.
SetProxy
(
stringProxUrl
)
.
R
()
request
=
request
.
SetBody
(
payload
)
for
h
,
val
:=
range
headers
{
request
.
Header
[
h
]
=
val
}
if
headers
[
ContentType
]
==
nil
{
request
.
Header
.
Set
(
ContentType
,
ApplicationJSON
)
}
request
.
Header
.
Set
(
UserAgent
,
UserAgentValue
)
httpResp
,
httpErr
:=
request
.
Post
(
uri
)
if
httpResp
!=
nil
{
body
=
httpResp
.
Body
()
respHeader
=
httpResp
.
Header
()
statusCode
=
httpResp
.
StatusCode
()
}
ctx
.
Info
(
"Post"
,
logger
.
ToField
(
urlKey
,
uri
),
logger
.
ToField
(
requestKey
,
toRequest
(
request
.
Header
,
payload
)),
logger
.
ToField
(
responseKey
,
toResponse
(
statusCode
,
respHeader
,
body
)),
logger
.
ToField
(
startProcessingTimeKey
,
startProcessingTime
(
startTime
)),
logger
.
ToField
(
processingTimeKey
,
processingTime
(
startTime
)),
)
if
statusCode
==
http
.
StatusOK
{
return
respHeader
,
statusCode
,
body
,
nil
}
return
respHeader
,
statusCode
,
body
,
httpErr
}
func
(
c
*
client
)
Post
(
ctx
*
context
.
UlfsaarContext
,
path
string
,
headers
http
.
Header
,
payload
interface
{})
(
respHeader
http
.
Header
,
statusCode
int
,
body
[]
byte
,
err
error
)
{
func
(
c
*
client
)
Post
(
ctx
*
context
.
UlfsaarContext
,
path
string
,
headers
http
.
Header
,
payload
interface
{})
(
respHeader
http
.
Header
,
statusCode
int
,
body
[]
byte
,
err
error
)
{
url
:=
c
.
options
.
Address
+
path
url
:=
c
.
options
.
Address
+
path
startTime
:=
time
.
Now
()
startTime
:=
time
.
Now
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment