2019-06-23 04:21:30 +02:00
|
|
|
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
|
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
2019-06-22 20:20:28 +02:00
|
|
|
module http
|
|
|
|
|
2019-08-06 14:43:09 +02:00
|
|
|
import net.urllib
|
2019-08-07 03:57:47 +02:00
|
|
|
import http.chunked
|
2019-08-06 14:43:09 +02:00
|
|
|
|
2019-08-17 14:50:47 +02:00
|
|
|
const (
|
|
|
|
max_redirects = 4
|
|
|
|
)
|
|
|
|
|
2019-06-22 20:20:28 +02:00
|
|
|
struct Request {
|
|
|
|
pub:
|
2019-08-01 18:36:36 +02:00
|
|
|
headers2 []string
|
|
|
|
headers map[string]string
|
2019-06-22 20:20:28 +02:00
|
|
|
method string
|
|
|
|
// cookies map[string]string
|
|
|
|
h string
|
|
|
|
cmd string
|
|
|
|
typ string // GET POST
|
|
|
|
data string
|
|
|
|
url string
|
|
|
|
ws_func voidptr
|
|
|
|
user_ptr voidptr
|
|
|
|
verbose bool
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Response {
|
|
|
|
pub:
|
2019-07-31 22:10:28 +02:00
|
|
|
text string
|
|
|
|
headers map[string]string
|
2019-06-22 20:20:28 +02:00
|
|
|
status_code int
|
|
|
|
}
|
|
|
|
|
2019-07-31 22:10:28 +02:00
|
|
|
pub fn get(url string) ?Response {
|
2019-07-29 19:18:26 +02:00
|
|
|
req := new_request('GET', url, '') or {
|
|
|
|
return error(err)
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
2019-07-31 22:10:28 +02:00
|
|
|
return req.do()
|
2019-07-29 19:18:26 +02:00
|
|
|
}
|
|
|
|
|
2019-07-31 22:10:28 +02:00
|
|
|
pub fn post(url, data string) ?Response {
|
|
|
|
req := new_request('POST', url, data) or {
|
2019-07-29 19:18:26 +02:00
|
|
|
return error(err)
|
|
|
|
}
|
2019-07-31 22:10:28 +02:00
|
|
|
return req.do()
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2019-07-29 19:18:26 +02:00
|
|
|
pub fn new_request(typ, _url, _data string) ?Request {
|
|
|
|
if _url == '' {
|
2019-07-31 22:10:28 +02:00
|
|
|
return error('bad url')
|
2019-07-29 19:18:26 +02:00
|
|
|
}
|
2019-06-22 20:20:28 +02:00
|
|
|
mut url := _url
|
|
|
|
mut data := _data
|
|
|
|
// req.headers['User-Agent'] = 'V $VERSION'
|
|
|
|
if typ == 'GET' && !url.contains('?') && data != '' {
|
|
|
|
url = '$url?$data'
|
|
|
|
data = ''
|
|
|
|
}
|
2019-07-29 19:18:26 +02:00
|
|
|
return Request {
|
2019-06-22 20:20:28 +02:00
|
|
|
typ: typ
|
2019-07-13 14:10:15 +02:00
|
|
|
url: url
|
|
|
|
data: data
|
2019-06-22 20:20:28 +02:00
|
|
|
ws_func: 0
|
|
|
|
user_ptr: 0
|
2019-08-17 01:55:11 +02:00
|
|
|
headers: map[string]string
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-31 22:10:28 +02:00
|
|
|
pub fn get_text(url string) string {
|
|
|
|
resp := get(url) or { return '' }
|
|
|
|
return resp.text
|
|
|
|
}
|
|
|
|
|
2019-06-22 20:20:28 +02:00
|
|
|
fn (req mut Request) free() {
|
|
|
|
req.headers.free()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (resp mut Response) free() {
|
|
|
|
resp.headers.free()
|
|
|
|
}
|
|
|
|
|
2019-06-26 17:45:48 +02:00
|
|
|
pub fn (req mut Request) add_header(key, val string) {
|
2019-06-22 20:20:28 +02:00
|
|
|
// println('start add header')
|
|
|
|
// println('add header "$key" "$val"')
|
|
|
|
// println(key)
|
|
|
|
// println(val)
|
|
|
|
// h := '$key: $val'
|
|
|
|
// println('SET H')
|
|
|
|
// req.headers << h
|
|
|
|
req.headers[key] = val
|
|
|
|
// mut h := req.h
|
|
|
|
// h += ' -H "${key}: ${val}" '
|
|
|
|
// req.h = h
|
|
|
|
}
|
|
|
|
|
2019-08-06 05:54:47 +02:00
|
|
|
pub fn (req &Request) do() Response {
|
|
|
|
if req.typ == 'POST' {
|
|
|
|
// req.headers << 'Content-Type: application/x-www-form-urlencoded'
|
|
|
|
}
|
|
|
|
for key, val in req.headers {
|
|
|
|
//h := '$key: $val'
|
|
|
|
}
|
2019-08-06 14:43:09 +02:00
|
|
|
url := urllib.parse(req.url) or {
|
2019-08-17 14:50:47 +02:00
|
|
|
panic('http.request.do: invalid URL $req.url')
|
|
|
|
// return Response{} //error('ff')}
|
2019-08-06 14:43:09 +02:00
|
|
|
}
|
|
|
|
is_ssl := url.scheme == 'https'
|
2019-08-06 05:54:47 +02:00
|
|
|
if !is_ssl {
|
|
|
|
panic('non https requests are not supported right now')
|
|
|
|
}
|
2019-08-17 14:50:47 +02:00
|
|
|
|
|
|
|
// first request
|
|
|
|
mut u := if url.query().size > 0 { '$url.path?${url.query().encode()}' } else { url.path }
|
|
|
|
mut resp := ssl_do(req.typ, url.hostname(), u)
|
|
|
|
// follow any redirects
|
|
|
|
mut no_redirects := 0
|
|
|
|
for resp.status_code in [301, 302, 303, 307 ,308] {
|
|
|
|
if no_redirects == max_redirects {
|
|
|
|
panic('http.request.do: maximum number of redirects reached ($max_redirects)')
|
|
|
|
}
|
|
|
|
h_loc := resp.headers['Location']
|
|
|
|
r_url := urllib.parse(h_loc) or {
|
|
|
|
panic('http.request.do: cannot follow redirect, location header has invalid url $h_loc')
|
|
|
|
}
|
|
|
|
u = if r_url.query().size > 0 { '$r_url.path?${r_url.query().encode()}' } else { r_url.path }
|
|
|
|
resp = ssl_do(req.typ, r_url.hostname(), u)
|
|
|
|
no_redirects++
|
|
|
|
}
|
|
|
|
|
|
|
|
return resp
|
2019-08-10 10:05:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_response(resp string) Response {
|
2019-08-17 01:55:11 +02:00
|
|
|
mut headers := map[string]string
|
2019-08-10 10:05:59 +02:00
|
|
|
first_header := resp.all_before('\n')
|
2019-08-06 05:54:47 +02:00
|
|
|
mut status_code := 0
|
|
|
|
if first_header.contains('HTTP/') {
|
|
|
|
val := first_header.find_between(' ', ' ')
|
|
|
|
status_code = val.int()
|
|
|
|
}
|
|
|
|
mut text := ''
|
|
|
|
// Build resp headers map and separate the body
|
|
|
|
mut nl_pos := 3
|
|
|
|
mut i := 1
|
|
|
|
for {
|
|
|
|
old_pos := nl_pos
|
2019-08-10 10:05:59 +02:00
|
|
|
nl_pos = resp.index_after('\n', nl_pos+1)
|
2019-08-06 05:54:47 +02:00
|
|
|
if nl_pos == -1 {
|
|
|
|
break
|
|
|
|
}
|
2019-08-10 10:05:59 +02:00
|
|
|
h := resp.substr(old_pos + 1, nl_pos)
|
2019-08-06 05:54:47 +02:00
|
|
|
// End of headers
|
|
|
|
if h.len <= 1 {
|
2019-08-10 10:05:59 +02:00
|
|
|
text = resp.right(nl_pos + 1)
|
2019-08-06 05:54:47 +02:00
|
|
|
break
|
|
|
|
}
|
|
|
|
i++
|
2019-08-06 14:43:09 +02:00
|
|
|
pos := h.index(':')
|
2019-08-06 05:54:47 +02:00
|
|
|
if pos == -1 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
//if h.contains('Content-Type') {
|
|
|
|
//continue
|
|
|
|
//}
|
|
|
|
key := h.left(pos)
|
|
|
|
val := h.right(pos + 2)
|
|
|
|
headers[key] = val.trim_space()
|
2019-08-07 03:57:47 +02:00
|
|
|
}
|
2019-08-10 10:05:59 +02:00
|
|
|
|
2019-08-07 03:57:47 +02:00
|
|
|
if headers['Transfer-Encoding'] == 'chunked' {
|
|
|
|
text = chunked.decode( text )
|
|
|
|
}
|
2019-08-10 10:05:59 +02:00
|
|
|
|
2019-08-06 05:54:47 +02:00
|
|
|
return Response {
|
|
|
|
status_code: status_code
|
|
|
|
headers: headers
|
|
|
|
text: text
|
2019-08-10 10:05:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn build_request_headers(user_agent, method, host_name, path string) string {
|
|
|
|
ua := if user_agent == '' { 'v' } else { user_agent }
|
|
|
|
return '$method $path HTTP/1.1\r\n' +
|
|
|
|
'Host: $host_name\r\n' +
|
|
|
|
'User-Agent: $ua\r\n' +
|
|
|
|
'Connection: close\r\n\r\n'
|
2019-08-06 05:54:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn unescape_url(s string) string {
|
|
|
|
panic('http.unescape_url() was replaced with urllib.query_unescape()')
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn escape_url(s string) string {
|
|
|
|
panic('http.escape_url() was replaced with urllib.query_escape()')
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn unescape(s string) string {
|
|
|
|
panic('http.unescape() was replaced with http.unescape_url()')
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn escape(s string) string {
|
|
|
|
panic('http.escape() was replaced with http.escape_url()')
|
|
|
|
}
|
|
|
|
|
|
|
|
type wsfn fn (s string, ptr voidptr)
|
|
|
|
|