2021-01-18 13:20:06 +01:00
|
|
|
// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
|
2019-10-24 18:44:49 +02:00
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
2019-07-29 18:21:36 +02:00
|
|
|
module vweb
|
|
|
|
|
2020-04-26 13:49:31 +02:00
|
|
|
import os
|
2020-11-15 21:54:47 +01:00
|
|
|
import io
|
2020-04-26 13:49:31 +02:00
|
|
|
import net
|
|
|
|
import net.http
|
|
|
|
import net.urllib
|
|
|
|
import strings
|
2020-06-23 21:02:17 +02:00
|
|
|
import time
|
2019-07-29 18:21:36 +02:00
|
|
|
|
2019-12-23 11:24:53 +01:00
|
|
|
pub const (
|
2020-11-14 12:55:10 +01:00
|
|
|
methods_with_form = [http.Method.post, .put, .patch]
|
2020-12-18 07:34:06 +01:00
|
|
|
methods_without_first = ['ost', 'ut', 'et', 'atch', 'ptions', 'elete', 'ead'] // needed for method checking as method parameter
|
2020-11-14 12:55:10 +01:00
|
|
|
header_server = 'Server: VWeb\r\n'
|
2020-05-22 17:36:09 +02:00
|
|
|
header_connection_close = 'Connection: close\r\n'
|
2020-11-14 12:55:10 +01:00
|
|
|
headers_close = '$header_server$header_connection_close\r\n'
|
|
|
|
http_404 = 'HTTP/1.1 404 Not Found\r\nContent-Type: text/plain\r\nContent-Length: 13\r\n${headers_close}404 Not Found'
|
|
|
|
http_500 = 'HTTP/1.1 500 Internal Server Error\r\nContent-Type: text/plain\r\n${headers_close}500 Internal Server Error'
|
2021-02-08 15:57:42 +01:00
|
|
|
mime_types = map{
|
2020-12-27 10:38:12 +01:00
|
|
|
'.css': 'text/css; charset=utf-8'
|
|
|
|
'.gif': 'image/gif'
|
|
|
|
'.htm': 'text/html; charset=utf-8'
|
2020-11-14 12:55:10 +01:00
|
|
|
'.html': 'text/html; charset=utf-8'
|
2020-12-27 10:38:12 +01:00
|
|
|
'.jpg': 'image/jpeg'
|
|
|
|
'.js': 'application/javascript'
|
2020-11-14 12:55:10 +01:00
|
|
|
'.json': 'application/json'
|
2020-12-27 10:38:12 +01:00
|
|
|
'.md': 'text/markdown; charset=utf-8'
|
|
|
|
'.pdf': 'application/pdf'
|
|
|
|
'.png': 'image/png'
|
|
|
|
'.svg': 'image/svg+xml'
|
|
|
|
'.txt': 'text/plain; charset=utf-8'
|
2020-11-14 12:55:10 +01:00
|
|
|
'.wasm': 'application/wasm'
|
2020-12-27 10:38:12 +01:00
|
|
|
'.xml': 'text/xml; charset=utf-8'
|
2019-09-05 14:46:24 +02:00
|
|
|
}
|
2020-11-14 12:55:10 +01:00
|
|
|
max_http_post_size = 1024 * 1024
|
|
|
|
default_port = 8080
|
2019-08-10 09:12:17 +02:00
|
|
|
)
|
|
|
|
|
2019-10-24 18:44:49 +02:00
|
|
|
pub struct Context {
|
2020-05-27 06:53:48 +02:00
|
|
|
mut:
|
2021-01-12 04:38:43 +01:00
|
|
|
content_type string = 'text/plain'
|
|
|
|
status string = '200 OK'
|
2019-10-24 18:44:49 +02:00
|
|
|
pub:
|
2021-01-20 11:11:01 +01:00
|
|
|
req http.Request
|
2019-10-24 18:44:49 +02:00
|
|
|
// TODO Response
|
2020-05-27 03:38:21 +02:00
|
|
|
pub mut:
|
2021-01-20 11:11:01 +01:00
|
|
|
conn &net.TcpConn
|
2020-12-31 17:07:24 +01:00
|
|
|
static_files map[string]string
|
|
|
|
static_mime_types map[string]string
|
2020-11-14 12:55:10 +01:00
|
|
|
form map[string]string
|
|
|
|
query map[string]string
|
2021-01-21 11:08:51 +01:00
|
|
|
files map[string][]FileData
|
2020-11-14 12:55:10 +01:00
|
|
|
headers string // response headers
|
|
|
|
done bool
|
|
|
|
page_gen_start i64
|
|
|
|
form_error string
|
2021-01-18 13:04:21 +01:00
|
|
|
chunked_transfer bool
|
|
|
|
max_chunk_len int = 20
|
2019-09-05 14:46:24 +02:00
|
|
|
}
|
|
|
|
|
2021-01-21 11:08:51 +01:00
|
|
|
struct FileData {
|
|
|
|
pub:
|
|
|
|
filename string
|
|
|
|
content_type string
|
|
|
|
data string
|
|
|
|
}
|
|
|
|
|
2021-01-01 17:24:54 +01:00
|
|
|
// declaring init_once in your App struct is optional
|
|
|
|
pub fn (ctx Context) init_once() {}
|
|
|
|
|
|
|
|
// declaring init in your App struct is optional
|
|
|
|
pub fn (ctx Context) init() {}
|
|
|
|
|
2021-01-21 11:08:38 +01:00
|
|
|
// declaring uninit in your App struct is optional
|
|
|
|
pub fn (ctx Context) uninit() {}
|
|
|
|
|
2020-07-05 16:44:23 +02:00
|
|
|
pub struct Cookie {
|
2020-11-14 12:55:10 +01:00
|
|
|
name string
|
|
|
|
value string
|
|
|
|
expires time.Time
|
|
|
|
secure bool
|
2020-07-05 16:44:23 +02:00
|
|
|
http_only bool
|
|
|
|
}
|
|
|
|
|
2021-01-08 04:49:13 +01:00
|
|
|
[noinit]
|
2020-11-14 12:55:10 +01:00
|
|
|
pub struct Result {
|
|
|
|
}
|
2020-06-20 03:12:35 +02:00
|
|
|
|
2020-12-31 17:07:24 +01:00
|
|
|
pub fn (mut ctx Context) send_response_to_client(mimetype string, res string) bool {
|
2020-11-14 12:55:10 +01:00
|
|
|
if ctx.done {
|
|
|
|
return false
|
|
|
|
}
|
2019-12-11 15:32:54 +01:00
|
|
|
ctx.done = true
|
|
|
|
mut sb := strings.new_builder(1024)
|
2020-11-14 12:55:10 +01:00
|
|
|
defer {
|
|
|
|
sb.free()
|
|
|
|
}
|
|
|
|
sb.write('HTTP/1.1 $ctx.status')
|
|
|
|
sb.write('\r\nContent-Type: $mimetype')
|
|
|
|
sb.write('\r\nContent-Length: $res.len')
|
2021-01-18 13:04:21 +01:00
|
|
|
if ctx.chunked_transfer {
|
|
|
|
sb.write('\r\nTransfer-Encoding: chunked')
|
|
|
|
}
|
2019-12-11 15:32:54 +01:00
|
|
|
sb.write(ctx.headers)
|
|
|
|
sb.write('\r\n')
|
2021-01-25 10:26:20 +01:00
|
|
|
sb.write(vweb.headers_close)
|
2021-01-18 13:04:21 +01:00
|
|
|
if ctx.chunked_transfer {
|
|
|
|
mut i := 0
|
|
|
|
mut len := res.len
|
|
|
|
for {
|
|
|
|
if len <= 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
mut chunk := ''
|
|
|
|
if len > ctx.max_chunk_len {
|
|
|
|
chunk = res[i..i + ctx.max_chunk_len]
|
|
|
|
i += ctx.max_chunk_len
|
|
|
|
len -= ctx.max_chunk_len
|
|
|
|
} else {
|
|
|
|
chunk = res[i..]
|
|
|
|
len = 0
|
|
|
|
}
|
|
|
|
sb.write(chunk.len.hex())
|
|
|
|
sb.write('\r\n$chunk\r\n')
|
|
|
|
}
|
|
|
|
sb.write('0\r\n\r\n') // End of chunks
|
|
|
|
} else {
|
|
|
|
sb.write(res)
|
|
|
|
}
|
2020-06-28 19:55:53 +02:00
|
|
|
s := sb.str()
|
|
|
|
defer {
|
|
|
|
s.free()
|
|
|
|
}
|
2021-01-20 11:11:01 +01:00
|
|
|
send_string(mut ctx.conn, s) or { return false }
|
2019-12-11 15:32:54 +01:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2021-01-08 05:05:29 +01:00
|
|
|
pub fn (mut ctx Context) html(s string) Result {
|
2019-12-11 15:32:54 +01:00
|
|
|
ctx.send_response_to_client('text/html', s)
|
2021-01-08 05:05:29 +01:00
|
|
|
return Result{}
|
2019-09-05 14:46:24 +02:00
|
|
|
}
|
2019-07-30 15:46:10 +02:00
|
|
|
|
2020-06-27 13:56:15 +02:00
|
|
|
pub fn (mut ctx Context) text(s string) Result {
|
2019-12-11 15:32:54 +01:00
|
|
|
ctx.send_response_to_client('text/plain', s)
|
2020-06-27 23:22:37 +02:00
|
|
|
return Result{}
|
2019-09-05 14:46:24 +02:00
|
|
|
}
|
2019-07-29 18:21:36 +02:00
|
|
|
|
2020-06-27 13:56:15 +02:00
|
|
|
pub fn (mut ctx Context) json(s string) Result {
|
2019-12-11 15:32:54 +01:00
|
|
|
ctx.send_response_to_client('application/json', s)
|
2020-06-27 23:22:37 +02:00
|
|
|
return Result{}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (mut ctx Context) ok(s string) Result {
|
|
|
|
ctx.send_response_to_client(ctx.content_type, s)
|
|
|
|
return Result{}
|
2019-09-05 14:46:24 +02:00
|
|
|
}
|
2019-07-29 18:21:36 +02:00
|
|
|
|
2021-02-03 14:40:06 +01:00
|
|
|
pub fn (mut ctx Context) server_error(ecode int) Result {
|
|
|
|
$if debug {
|
|
|
|
eprintln('> ctx.server_error ecode: $ecode')
|
|
|
|
}
|
|
|
|
if ctx.done {
|
|
|
|
return Result{}
|
|
|
|
}
|
|
|
|
send_string(mut ctx.conn, vweb.http_500) or { }
|
|
|
|
return Result{}
|
|
|
|
}
|
|
|
|
|
2020-06-30 21:04:00 +02:00
|
|
|
pub fn (mut ctx Context) redirect(url string) Result {
|
2020-11-14 12:55:10 +01:00
|
|
|
if ctx.done {
|
|
|
|
return Result{}
|
|
|
|
}
|
2019-12-11 15:32:54 +01:00
|
|
|
ctx.done = true
|
2021-01-25 10:26:20 +01:00
|
|
|
send_string(mut ctx.conn, 'HTTP/1.1 302 Found\r\nLocation: $url$ctx.headers\r\n$vweb.headers_close') or {
|
2020-12-27 10:38:12 +01:00
|
|
|
return Result{}
|
|
|
|
}
|
2020-06-30 21:04:00 +02:00
|
|
|
return Result{}
|
2019-09-05 14:46:24 +02:00
|
|
|
}
|
2019-07-29 18:21:36 +02:00
|
|
|
|
2020-06-27 13:56:15 +02:00
|
|
|
pub fn (mut ctx Context) not_found() Result {
|
2020-11-14 12:55:10 +01:00
|
|
|
if ctx.done {
|
|
|
|
return Result{}
|
|
|
|
}
|
2019-12-11 15:32:54 +01:00
|
|
|
ctx.done = true
|
2021-01-25 10:26:20 +01:00
|
|
|
send_string(mut ctx.conn, vweb.http_404) or { }
|
2020-12-27 10:38:12 +01:00
|
|
|
return Result{}
|
2019-09-05 14:46:24 +02:00
|
|
|
}
|
2019-08-02 04:04:48 +02:00
|
|
|
|
2021-01-18 13:04:21 +01:00
|
|
|
pub fn (mut ctx Context) enable_chunked_transfer(max_chunk_len int) {
|
|
|
|
ctx.chunked_transfer = true
|
|
|
|
ctx.max_chunk_len = max_chunk_len
|
|
|
|
}
|
|
|
|
|
2020-07-05 16:44:23 +02:00
|
|
|
pub fn (mut ctx Context) set_cookie(cookie Cookie) {
|
2020-07-19 21:42:50 +02:00
|
|
|
mut cookie_data := []string{}
|
2020-11-14 12:55:10 +01:00
|
|
|
mut secure := if cookie.secure { 'Secure;' } else { '' }
|
|
|
|
secure += if cookie.http_only { ' HttpOnly' } else { ' ' }
|
2020-07-19 21:42:50 +02:00
|
|
|
cookie_data << secure
|
|
|
|
if cookie.expires.unix > 0 {
|
2020-11-14 12:55:10 +01:00
|
|
|
cookie_data << 'expires=$cookie.expires.utc_string()'
|
2020-07-19 21:42:50 +02:00
|
|
|
}
|
|
|
|
data := cookie_data.join(' ')
|
|
|
|
ctx.add_header('Set-Cookie', '$cookie.name=$cookie.value; $data')
|
2020-07-05 16:44:23 +02:00
|
|
|
}
|
|
|
|
|
2020-10-15 21:04:42 +02:00
|
|
|
pub fn (mut ctx Context) set_cookie_old(key string, val string) {
|
2019-12-11 15:32:54 +01:00
|
|
|
// TODO support directives, escape cookie value (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie)
|
2020-11-14 12:55:10 +01:00
|
|
|
// ctx.add_header('Set-Cookie', '${key}=${val}; Secure; HttpOnly')
|
|
|
|
ctx.add_header('Set-Cookie', '$key=$val; HttpOnly')
|
2019-09-05 14:46:24 +02:00
|
|
|
}
|
2019-07-29 18:21:36 +02:00
|
|
|
|
2020-06-27 23:22:37 +02:00
|
|
|
pub fn (mut ctx Context) set_content_type(typ string) {
|
|
|
|
ctx.content_type = typ
|
|
|
|
}
|
|
|
|
|
2020-10-15 21:04:42 +02:00
|
|
|
pub fn (mut ctx Context) set_cookie_with_expire_date(key string, val string, expire_date time.Time) {
|
2020-11-14 12:55:10 +01:00
|
|
|
ctx.add_header('Set-Cookie', '$key=$val; Secure; HttpOnly; expires=$expire_date.utc_string()')
|
2020-06-29 21:14:36 +02:00
|
|
|
}
|
|
|
|
|
2019-12-06 13:24:53 +01:00
|
|
|
pub fn (ctx &Context) get_cookie(key string) ?string { // TODO refactor
|
2019-12-13 19:11:40 +01:00
|
|
|
mut cookie_header := ctx.get_header('cookie')
|
|
|
|
if cookie_header == '' {
|
|
|
|
cookie_header = ctx.get_header('Cookie')
|
|
|
|
}
|
|
|
|
cookie_header = ' ' + cookie_header
|
2020-11-14 12:55:10 +01:00
|
|
|
// println('cookie_header="$cookie_header"')
|
|
|
|
// println(ctx.req.headers)
|
2021-02-06 21:46:52 +01:00
|
|
|
cookie := if cookie_header.contains(';') {
|
|
|
|
cookie_header.find_between(' $key=', ';')
|
|
|
|
} else {
|
|
|
|
cookie_header.find_between(' $key=', '\r')
|
|
|
|
}
|
2019-09-05 14:46:24 +02:00
|
|
|
if cookie != '' {
|
2019-12-07 23:48:49 +01:00
|
|
|
return cookie.trim_space()
|
2019-09-05 14:46:24 +02:00
|
|
|
}
|
|
|
|
return error('Cookie not found')
|
|
|
|
}
|
2019-07-29 18:21:36 +02:00
|
|
|
|
2020-08-09 18:05:06 +02:00
|
|
|
pub fn (mut ctx Context) set_status(code int, desc string) {
|
|
|
|
if code < 100 || code > 599 {
|
|
|
|
ctx.status = '500 Internal Server Error'
|
|
|
|
} else {
|
|
|
|
ctx.status = '$code $desc'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-15 21:04:42 +02:00
|
|
|
pub fn (mut ctx Context) add_header(key string, val string) {
|
2020-11-14 12:55:10 +01:00
|
|
|
// println('add_header($key, $val)')
|
2019-12-11 15:32:54 +01:00
|
|
|
ctx.headers = ctx.headers + '\r\n$key: $val'
|
2020-11-14 12:55:10 +01:00
|
|
|
// println(ctx.headers)
|
2019-07-29 18:21:36 +02:00
|
|
|
}
|
|
|
|
|
2019-12-23 11:24:53 +01:00
|
|
|
pub fn (ctx &Context) get_header(key string) string {
|
2019-12-06 22:44:22 +01:00
|
|
|
return ctx.req.headers[key]
|
2019-09-05 14:46:24 +02:00
|
|
|
}
|
2019-07-29 18:21:36 +02:00
|
|
|
|
2020-11-14 12:55:10 +01:00
|
|
|
// fn handle_conn(conn net.Socket) {
|
|
|
|
// println('handle')
|
|
|
|
// }
|
2019-12-20 01:02:16 +01:00
|
|
|
pub fn run<T>(port int) {
|
2020-06-07 10:02:35 +02:00
|
|
|
mut app := T{}
|
|
|
|
run_app<T>(mut app, port)
|
2020-06-10 11:23:41 +02:00
|
|
|
}
|
2020-06-07 10:02:35 +02:00
|
|
|
|
|
|
|
pub fn run_app<T>(mut app T, port int) {
|
2021-01-20 11:11:01 +01:00
|
|
|
mut l := net.listen_tcp(port) or { panic('failed to listen') }
|
2021-02-09 10:31:25 +01:00
|
|
|
println('[Vweb] Running app on http://localhost:$port')
|
2021-01-20 11:11:01 +01:00
|
|
|
app.Context = Context{
|
|
|
|
conn: 0
|
|
|
|
}
|
2020-06-10 11:23:41 +02:00
|
|
|
app.init_once()
|
2020-11-05 21:58:31 +01:00
|
|
|
$for method in T.methods {
|
|
|
|
$if method.return_type is Result {
|
|
|
|
// check routes for validity
|
|
|
|
}
|
2020-11-08 09:14:24 +01:00
|
|
|
}
|
2020-11-14 12:55:10 +01:00
|
|
|
// app.reset()
|
2019-07-29 18:21:36 +02:00
|
|
|
for {
|
2020-11-15 21:54:47 +01:00
|
|
|
mut conn := l.accept() or { panic('accept() failed') }
|
2021-01-21 11:08:38 +01:00
|
|
|
go handle_conn<T>(mut conn, mut app)
|
2020-12-27 10:38:12 +01:00
|
|
|
// app.vweb.page_gen_time = time.ticks() - t
|
|
|
|
// eprintln('handle conn() took ${time.ticks()-t}ms')
|
|
|
|
// message := readall(conn)
|
|
|
|
// println(message)
|
|
|
|
/*
|
2020-05-22 17:36:09 +02:00
|
|
|
if message.len > max_http_post_size {
|
|
|
|
println('message.len = $message.len > max_http_post_size')
|
|
|
|
conn.send_string(http_500) or {}
|
2019-11-22 06:22:11 +01:00
|
|
|
conn.close() or {}
|
2019-12-11 15:32:54 +01:00
|
|
|
continue
|
2019-08-11 14:07:22 +02:00
|
|
|
}
|
2019-12-13 21:01:36 +01:00
|
|
|
*/
|
2020-11-14 12:55:10 +01:00
|
|
|
// lines := message.split_into_lines()
|
|
|
|
// println(lines)
|
|
|
|
/*
|
2019-12-11 17:20:46 +01:00
|
|
|
if lines.len < 2 {
|
2020-05-22 17:36:09 +02:00
|
|
|
conn.send_string(http_500) or {}
|
2019-12-11 17:20:46 +01:00
|
|
|
conn.close() or {}
|
|
|
|
continue
|
|
|
|
}
|
2019-12-13 21:01:36 +01:00
|
|
|
*/
|
2019-12-20 01:02:16 +01:00
|
|
|
}
|
|
|
|
}
|
2019-12-13 19:11:40 +01:00
|
|
|
|
2020-11-15 21:54:47 +01:00
|
|
|
fn handle_conn<T>(mut conn net.TcpConn, mut app T) {
|
2021-01-21 11:08:38 +01:00
|
|
|
conn.set_read_timeout(30 * time.second)
|
|
|
|
conn.set_write_timeout(30 * time.second)
|
2020-12-27 10:38:12 +01:00
|
|
|
defer {
|
|
|
|
conn.close() or { }
|
|
|
|
}
|
|
|
|
// fn handle_conn<T>(conn net.Socket, app_ T) T {
|
|
|
|
// mut app := app_
|
|
|
|
// first_line := strip(lines[0])
|
2020-11-15 21:54:47 +01:00
|
|
|
mut reader := io.new_buffered_reader(reader: io.make_reader(conn))
|
2020-06-23 21:02:17 +02:00
|
|
|
page_gen_start := time.ticks()
|
2020-11-15 21:54:47 +01:00
|
|
|
first_line := reader.read_line() or {
|
2021-01-21 11:08:38 +01:00
|
|
|
$if debug {
|
2021-02-09 10:31:25 +01:00
|
|
|
eprintln('Failed to read first_line') // show this only in debug mode, because it always would be shown after a chromium user visits the site
|
2021-01-21 11:08:38 +01:00
|
|
|
}
|
2020-11-15 21:54:47 +01:00
|
|
|
return
|
|
|
|
}
|
2020-06-10 11:50:06 +02:00
|
|
|
$if debug {
|
2021-01-21 11:08:38 +01:00
|
|
|
eprintln('firstline="$first_line"')
|
2020-06-10 11:50:06 +02:00
|
|
|
}
|
2019-12-20 01:02:16 +01:00
|
|
|
// Parse the first line
|
|
|
|
// "GET / HTTP/1.1"
|
2020-11-14 12:55:10 +01:00
|
|
|
// first_line := s.all_before('\n')
|
2019-12-20 01:02:16 +01:00
|
|
|
vals := first_line.split(' ')
|
|
|
|
if vals.len < 2 {
|
|
|
|
println('no vals for http')
|
2021-01-25 10:26:20 +01:00
|
|
|
send_string(mut conn, vweb.http_500) or { }
|
2020-06-05 21:04:18 +02:00
|
|
|
return
|
2019-12-20 01:02:16 +01:00
|
|
|
}
|
2020-04-26 13:49:31 +02:00
|
|
|
mut headers := []string{}
|
2019-12-20 01:02:16 +01:00
|
|
|
mut body := ''
|
|
|
|
mut in_headers := true
|
|
|
|
mut len := 0
|
2021-01-21 11:08:51 +01:00
|
|
|
// File receive stuff
|
|
|
|
mut ct := 'text/plain'
|
|
|
|
mut boundary := ''
|
2020-12-27 10:38:12 +01:00
|
|
|
// for line in lines[1..] {
|
2021-01-02 12:21:30 +01:00
|
|
|
for lindex in 0 .. 100 {
|
2020-12-27 10:38:12 +01:00
|
|
|
// println(j)
|
|
|
|
line := reader.read_line() or {
|
2021-01-02 12:21:30 +01:00
|
|
|
println('Failed read_line $lindex')
|
2020-11-15 21:54:47 +01:00
|
|
|
break
|
|
|
|
}
|
2019-12-20 01:02:16 +01:00
|
|
|
sline := strip(line)
|
2021-01-21 11:08:51 +01:00
|
|
|
// Parse content type
|
2021-01-21 20:16:25 +01:00
|
|
|
if sline.len >= 14 && sline[..14].to_lower() == 'content-type: ' {
|
2021-01-21 11:08:51 +01:00
|
|
|
args := sline[14..].split('; ')
|
|
|
|
ct = args[0]
|
|
|
|
if args.len > 1 {
|
|
|
|
boundary = args[1][9..]
|
|
|
|
}
|
|
|
|
}
|
2019-12-20 01:02:16 +01:00
|
|
|
if sline == '' {
|
2020-12-27 10:38:12 +01:00
|
|
|
// if in_headers {
|
|
|
|
// End of headers, no body => exit
|
|
|
|
if len == 0 {
|
|
|
|
break
|
|
|
|
}
|
2020-11-15 21:54:47 +01:00
|
|
|
//} //else {
|
2020-12-27 10:38:12 +01:00
|
|
|
// End of body
|
|
|
|
// break
|
2020-11-15 21:54:47 +01:00
|
|
|
//}
|
|
|
|
// read body
|
2021-01-21 11:08:38 +01:00
|
|
|
mut read_body := []byte{len: len}
|
2021-01-26 15:43:10 +01:00
|
|
|
// read just the amount of content len if there is no content there is nothing more to read here
|
|
|
|
reader.read(mut read_body) or { println('reader.read failed with err: $err') }
|
2020-11-15 21:54:47 +01:00
|
|
|
body += read_body.bytestr()
|
|
|
|
break
|
2019-10-24 18:44:49 +02:00
|
|
|
}
|
2021-01-21 11:08:51 +01:00
|
|
|
if ct == 'multipart/form-data' && sline == boundary {
|
|
|
|
body += boundary
|
|
|
|
read_body := io.read_all(reader: reader) or { []byte{} }
|
|
|
|
body += read_body.bytestr()
|
|
|
|
break
|
|
|
|
}
|
2019-12-20 01:02:16 +01:00
|
|
|
if in_headers {
|
|
|
|
headers << sline
|
2021-01-21 20:16:25 +01:00
|
|
|
if sline.to_lower().starts_with('content-length') {
|
2019-12-20 01:02:16 +01:00
|
|
|
len = sline.all_after(': ').int()
|
2020-11-14 12:55:10 +01:00
|
|
|
// println('GOT CL=$len')
|
2019-08-20 10:18:12 +02:00
|
|
|
}
|
2019-10-24 18:44:49 +02:00
|
|
|
}
|
2019-12-20 01:02:16 +01:00
|
|
|
}
|
|
|
|
req := http.Request{
|
2020-11-14 12:55:10 +01:00
|
|
|
headers: http.parse_headers(headers) // s.split_into_lines())
|
2020-03-16 14:30:55 +01:00
|
|
|
data: strip(body)
|
2019-12-20 01:02:16 +01:00
|
|
|
ws_func: 0
|
|
|
|
user_ptr: 0
|
2020-07-28 06:13:19 +02:00
|
|
|
method: http.method_from_str(vals[0])
|
2019-12-20 01:02:16 +01:00
|
|
|
url: vals[1]
|
|
|
|
}
|
|
|
|
$if debug {
|
|
|
|
println('req.headers = ')
|
|
|
|
println(req.headers)
|
2020-11-14 12:55:10 +01:00
|
|
|
println('req.data="$req.data"')
|
|
|
|
// println('vweb action = "$action"')
|
2019-12-20 01:02:16 +01:00
|
|
|
}
|
2020-11-14 12:55:10 +01:00
|
|
|
// mut app := T{
|
2020-12-31 17:07:24 +01:00
|
|
|
app.Context = Context{
|
2019-12-20 01:02:16 +01:00
|
|
|
req: req
|
|
|
|
conn: conn
|
2020-11-14 12:55:10 +01:00
|
|
|
form: map[string]string{}
|
2020-12-31 17:07:24 +01:00
|
|
|
static_files: app.static_files
|
|
|
|
static_mime_types: app.static_mime_types
|
2020-06-23 21:02:17 +02:00
|
|
|
page_gen_start: page_gen_start
|
2019-12-20 01:02:16 +01:00
|
|
|
}
|
2020-11-14 12:55:10 +01:00
|
|
|
// }
|
2021-01-25 10:26:20 +01:00
|
|
|
if req.method in vweb.methods_with_form {
|
2021-01-21 11:08:51 +01:00
|
|
|
if ct == 'multipart/form-data' {
|
|
|
|
app.parse_multipart_form(body, boundary)
|
|
|
|
} else {
|
|
|
|
app.parse_form(req.data)
|
|
|
|
}
|
2019-12-20 01:02:16 +01:00
|
|
|
}
|
|
|
|
if vals.len < 2 {
|
2019-12-11 15:32:54 +01:00
|
|
|
$if debug {
|
2019-12-20 01:02:16 +01:00
|
|
|
println('no vals for http')
|
2019-08-11 14:07:22 +02:00
|
|
|
}
|
2020-06-05 21:04:18 +02:00
|
|
|
return
|
2019-12-20 01:02:16 +01:00
|
|
|
}
|
2020-06-20 01:39:55 +02:00
|
|
|
// Serve a static file if it is one
|
|
|
|
// TODO: handle url parameters properly - for now, ignore them
|
2020-12-31 17:07:24 +01:00
|
|
|
mut static_file_name := app.req.url
|
2020-06-20 01:39:55 +02:00
|
|
|
if static_file_name.contains('?') {
|
|
|
|
static_file_name = static_file_name.all_before('?')
|
|
|
|
}
|
2020-12-31 17:07:24 +01:00
|
|
|
static_file := app.static_files[static_file_name]
|
|
|
|
mime_type := app.static_mime_types[static_file_name]
|
2020-03-07 14:16:03 +01:00
|
|
|
if static_file != '' && mime_type != '' {
|
|
|
|
data := os.read_file(static_file) or {
|
2021-01-25 10:26:20 +01:00
|
|
|
send_string(mut conn, vweb.http_404) or { }
|
2020-06-05 21:04:18 +02:00
|
|
|
return
|
2020-03-07 14:16:03 +01:00
|
|
|
}
|
2020-12-31 17:07:24 +01:00
|
|
|
app.send_response_to_client(mime_type, data)
|
2020-06-28 13:56:38 +02:00
|
|
|
data.free()
|
2020-06-05 21:04:18 +02:00
|
|
|
return
|
2020-03-07 14:16:03 +01:00
|
|
|
}
|
2020-07-03 15:10:39 +02:00
|
|
|
app.init()
|
2019-12-20 01:02:16 +01:00
|
|
|
// Call the right action
|
2020-08-31 19:39:46 +02:00
|
|
|
$if debug {
|
|
|
|
println('route matching...')
|
|
|
|
}
|
2020-11-14 12:55:10 +01:00
|
|
|
// t := time.ticks()
|
|
|
|
// mut action := ''
|
2020-07-23 17:19:37 +02:00
|
|
|
mut route_words_a := [][]string{}
|
2020-11-14 12:55:10 +01:00
|
|
|
// mut url_words := vals[1][1..].split('/').filter(it != '')
|
2020-11-02 00:57:40 +01:00
|
|
|
x := vals[1][1..].split('/')
|
|
|
|
mut url_words := x.filter(it != '')
|
2021-01-05 01:30:27 +01:00
|
|
|
// Parse URL query
|
|
|
|
if url_words.len > 0 && url_words.last().contains('?') {
|
|
|
|
words := url_words.last().after('?').split('&')
|
|
|
|
tmp_query := words.map(it.split('='))
|
|
|
|
url_words[url_words.len - 1] = url_words.last().all_before('?')
|
|
|
|
for data in tmp_query {
|
|
|
|
if data.len == 2 {
|
|
|
|
app.query[data[0]] = data[1]
|
2020-07-07 13:46:57 +02:00
|
|
|
}
|
|
|
|
}
|
2020-07-07 12:35:45 +02:00
|
|
|
}
|
2020-07-23 17:19:37 +02:00
|
|
|
mut vars := []string{cap: route_words_a.len}
|
2020-07-08 15:22:03 +02:00
|
|
|
mut action := ''
|
2020-07-25 00:02:44 +02:00
|
|
|
$for method in T.methods {
|
2020-11-08 09:14:24 +01:00
|
|
|
$if method.return_type is Result {
|
2020-07-25 00:02:44 +02:00
|
|
|
attrs := method.attrs
|
|
|
|
route_words_a = [][]string{}
|
2021-01-01 21:57:45 +01:00
|
|
|
// Get methods
|
|
|
|
// Get is default
|
|
|
|
mut req_method_str := '$req.method'
|
|
|
|
if req.method == .post {
|
|
|
|
if 'post' in attrs {
|
|
|
|
route_words_a = attrs.filter(it.to_lower() != 'post').map(it[1..].split('/'))
|
|
|
|
}
|
|
|
|
} else if req.method == .put {
|
|
|
|
if 'put' in attrs {
|
|
|
|
route_words_a = attrs.filter(it.to_lower() != 'put').map(it[1..].split('/'))
|
|
|
|
}
|
|
|
|
} else if req.method == .patch {
|
|
|
|
if 'patch' in attrs {
|
|
|
|
route_words_a = attrs.filter(it.to_lower() != 'patch').map(it[1..].split('/'))
|
|
|
|
}
|
|
|
|
} else if req.method == .delete {
|
|
|
|
if 'delete' in attrs {
|
|
|
|
route_words_a = attrs.filter(it.to_lower() != 'delete').map(it[1..].split('/'))
|
|
|
|
}
|
|
|
|
} else if req.method == .head {
|
|
|
|
if 'head' in attrs {
|
|
|
|
route_words_a = attrs.filter(it.to_lower() != 'head').map(it[1..].split('/'))
|
|
|
|
}
|
|
|
|
} else if req.method == .options {
|
|
|
|
if 'options' in attrs {
|
|
|
|
route_words_a = attrs.filter(it.to_lower() != 'options').map(it[1..].split('/'))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
route_words_a = attrs.filter(it.to_lower() != 'get').map(it[1..].split('/'))
|
|
|
|
}
|
2021-01-03 17:03:18 +01:00
|
|
|
if attrs.len == 0 || (attrs.len == 1 && route_words_a.len == 0) {
|
2021-01-05 01:30:27 +01:00
|
|
|
if url_words.len > 0 {
|
|
|
|
// No routing for this method. If it matches, call it and finish matching
|
|
|
|
// since such methods have a priority.
|
|
|
|
// For example URL `/register` matches route `/:user`, but `fn register()`
|
|
|
|
// should be called first.
|
2021-01-23 09:33:22 +01:00
|
|
|
if (req_method_str == '' && url_words[0] == method.name && url_words.len == 1)
|
|
|
|
|| (req_method_str == req.method.str() && url_words[0] == method.name
|
|
|
|
&& url_words.len == 1) {
|
2021-01-05 01:30:27 +01:00
|
|
|
$if debug {
|
|
|
|
println('easy match method=$method.name')
|
|
|
|
}
|
|
|
|
app.$method(vars)
|
2021-01-21 11:08:38 +01:00
|
|
|
|
2021-01-05 01:30:27 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
} else if method.name == 'index' {
|
|
|
|
// handle / to .index()
|
2020-08-31 19:39:46 +02:00
|
|
|
$if debug {
|
2021-01-05 01:30:27 +01:00
|
|
|
println('route to .index()')
|
2020-08-31 19:39:46 +02:00
|
|
|
}
|
2020-07-25 00:02:44 +02:00
|
|
|
app.$method(vars)
|
2021-01-21 11:08:38 +01:00
|
|
|
|
2020-07-25 00:02:44 +02:00
|
|
|
return
|
2020-07-23 17:19:37 +02:00
|
|
|
}
|
|
|
|
} else {
|
2020-12-18 07:34:06 +01:00
|
|
|
mut req_method := []string{}
|
2020-07-25 00:02:44 +02:00
|
|
|
if route_words_a.len > 0 {
|
2021-01-05 01:30:27 +01:00
|
|
|
for route_words_ in route_words_a {
|
|
|
|
// cannot move to line initialize line because of C error with map(it.filter(it != ''))
|
|
|
|
route_words := route_words_.filter(it != '')
|
2021-01-25 10:26:20 +01:00
|
|
|
if route_words.len == 1 && route_words[0] in vweb.methods_without_first {
|
2020-12-18 07:34:06 +01:00
|
|
|
req_method << route_words[0]
|
|
|
|
}
|
2021-02-07 23:10:39 +01:00
|
|
|
if url_words.len == route_words.len || (url_words.len >= route_words.len - 1
|
|
|
|
&& route_words.len > 0 && route_words.last().ends_with('...')) {
|
2020-12-18 07:34:06 +01:00
|
|
|
if req_method.len > 0 {
|
|
|
|
if req_method_str.to_lower()[1..] !in req_method {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
2020-07-25 00:02:44 +02:00
|
|
|
// match `/:user/:repo/tree` to `/vlang/v/tree`
|
|
|
|
mut matching := false
|
|
|
|
mut unknown := false
|
|
|
|
mut variables := []string{cap: route_words.len}
|
2021-01-05 01:30:27 +01:00
|
|
|
if route_words.len == 0 && url_words.len == 0 {
|
|
|
|
// index route
|
|
|
|
matching = true
|
|
|
|
}
|
2020-11-14 12:55:10 +01:00
|
|
|
for i in 0 .. route_words.len {
|
2020-07-25 00:02:44 +02:00
|
|
|
if url_words.len == i {
|
|
|
|
variables << ''
|
|
|
|
matching = true
|
|
|
|
unknown = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if url_words[i] == route_words[i] {
|
|
|
|
// no parameter
|
|
|
|
matching = true
|
|
|
|
continue
|
|
|
|
} else if route_words[i].starts_with(':') {
|
|
|
|
// is parameter
|
|
|
|
if i < route_words.len && !route_words[i].ends_with('...') {
|
|
|
|
// normal parameter
|
|
|
|
variables << url_words[i]
|
|
|
|
} else {
|
|
|
|
// array parameter only in the end
|
|
|
|
variables << url_words[i..].join('/')
|
|
|
|
}
|
|
|
|
matching = true
|
|
|
|
unknown = true
|
|
|
|
continue
|
2020-07-23 17:19:37 +02:00
|
|
|
} else {
|
2020-07-25 00:02:44 +02:00
|
|
|
matching = false
|
|
|
|
break
|
2020-07-23 17:19:37 +02:00
|
|
|
}
|
|
|
|
}
|
2020-07-25 00:02:44 +02:00
|
|
|
if matching && !unknown {
|
|
|
|
// absolute router words like `/test/site`
|
|
|
|
app.$method(vars)
|
2021-01-21 11:08:38 +01:00
|
|
|
|
2020-07-25 00:02:44 +02:00
|
|
|
return
|
|
|
|
} else if matching && unknown {
|
|
|
|
// router words with paramter like `/:test/site`
|
|
|
|
action = method.name
|
2020-12-20 10:59:38 +01:00
|
|
|
vars = variables.clone()
|
2020-07-25 00:02:44 +02:00
|
|
|
}
|
2020-12-18 07:34:06 +01:00
|
|
|
req_method = []string{}
|
2020-07-08 15:22:03 +02:00
|
|
|
}
|
2020-07-05 16:44:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-03 15:10:39 +02:00
|
|
|
}
|
2020-07-08 15:22:03 +02:00
|
|
|
if action == '' {
|
|
|
|
// site not found
|
2021-01-25 10:26:20 +01:00
|
|
|
send_string(mut conn, vweb.http_404) or { }
|
2020-07-07 12:35:45 +02:00
|
|
|
return
|
2020-07-05 16:44:23 +02:00
|
|
|
}
|
2020-07-25 00:02:44 +02:00
|
|
|
$for method in T.methods {
|
2020-09-28 06:13:38 +02:00
|
|
|
$if method.return_type is Result {
|
2020-07-25 00:02:44 +02:00
|
|
|
// search again for method
|
|
|
|
if action == method.name && method.attrs.len > 0 {
|
|
|
|
// call action method
|
2020-11-08 09:14:24 +01:00
|
|
|
if method.args.len == vars.len {
|
|
|
|
app.$method(vars)
|
2021-02-03 14:40:06 +01:00
|
|
|
return
|
2020-11-08 09:14:24 +01:00
|
|
|
} else {
|
2020-11-14 12:55:10 +01:00
|
|
|
eprintln('warning: uneven parameters count ($method.args.len) in `$method.name`, compared to the vweb route `$method.attrs` ($vars.len)')
|
2020-11-08 09:14:24 +01:00
|
|
|
}
|
2020-07-25 00:02:44 +02:00
|
|
|
}
|
2020-07-08 15:22:03 +02:00
|
|
|
}
|
2019-07-29 18:21:36 +02:00
|
|
|
}
|
2019-09-05 14:46:24 +02:00
|
|
|
}
|
2019-07-29 18:21:36 +02:00
|
|
|
|
2020-12-31 17:07:24 +01:00
|
|
|
pub fn (mut ctx Context) parse_form(s string) {
|
2021-01-25 10:26:20 +01:00
|
|
|
if ctx.req.method !in vweb.methods_with_form {
|
2019-10-24 18:44:49 +02:00
|
|
|
return
|
|
|
|
}
|
2020-11-14 12:55:10 +01:00
|
|
|
// pos := s.index('\r\n\r\n')
|
|
|
|
// if pos > -1 {
|
|
|
|
mut str_form := s // [pos..s.len]
|
2019-11-26 11:54:41 +01:00
|
|
|
str_form = str_form.replace('+', ' ')
|
|
|
|
words := str_form.split('&')
|
|
|
|
for word in words {
|
|
|
|
$if debug {
|
|
|
|
println('parse form keyval="$word"')
|
|
|
|
}
|
|
|
|
keyval := word.trim_space().split('=')
|
2020-11-14 12:55:10 +01:00
|
|
|
if keyval.len != 2 {
|
|
|
|
continue
|
|
|
|
}
|
2020-12-27 10:38:12 +01:00
|
|
|
key := urllib.query_unescape(keyval[0]) or { continue }
|
|
|
|
val := urllib.query_unescape(keyval[1]) or { continue }
|
2019-11-26 11:54:41 +01:00
|
|
|
$if debug {
|
|
|
|
println('http form "$key" => "$val"')
|
2019-07-29 18:21:36 +02:00
|
|
|
}
|
2019-11-26 11:54:41 +01:00
|
|
|
ctx.form[key] = val
|
2019-07-29 18:21:36 +02:00
|
|
|
}
|
2020-11-14 12:55:10 +01:00
|
|
|
// }
|
2019-12-11 17:20:46 +01:00
|
|
|
// todo: parse form-data and application/json
|
|
|
|
// ...
|
2019-09-05 14:46:24 +02:00
|
|
|
}
|
2019-07-29 18:21:36 +02:00
|
|
|
|
2021-01-21 11:08:51 +01:00
|
|
|
[manualfree]
|
|
|
|
pub fn (mut ctx Context) parse_multipart_form(s string, b string) {
|
2021-01-25 10:26:20 +01:00
|
|
|
if ctx.req.method !in vweb.methods_with_form {
|
2021-01-21 11:08:51 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
a := s.split('$b')[1..]
|
|
|
|
fields := a[..a.len - 1]
|
|
|
|
for field in fields {
|
|
|
|
lines := field.split_into_lines()[1..]
|
|
|
|
mut l := 0
|
|
|
|
// Parse name
|
|
|
|
disposition_data := lines[l].split('; ')[1..]
|
|
|
|
l++
|
|
|
|
name := disposition_data[0][6..disposition_data[0].len - 1]
|
|
|
|
// Parse files
|
|
|
|
if disposition_data.len > 1 {
|
|
|
|
filename := disposition_data[1][10..disposition_data[1].len - 1]
|
|
|
|
ct := lines[l].split(': ')[1]
|
|
|
|
l++
|
|
|
|
if name !in ctx.files {
|
|
|
|
ctx.files[name] = []FileData{}
|
|
|
|
}
|
|
|
|
mut sb := strings.new_builder(field.len)
|
|
|
|
for i in l + 1 .. lines.len - 1 {
|
|
|
|
sb.writeln(lines[i])
|
|
|
|
}
|
|
|
|
ctx.files[name] << FileData{
|
|
|
|
filename: filename
|
|
|
|
content_type: ct
|
|
|
|
data: sb.str()
|
|
|
|
}
|
|
|
|
unsafe {
|
|
|
|
sb.free()
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
mut sb := strings.new_builder(field.len)
|
|
|
|
for i in l + 1 .. lines.len - 1 {
|
|
|
|
sb.writeln(lines[i])
|
|
|
|
}
|
|
|
|
ctx.form[name] = sb.str()
|
|
|
|
unsafe {
|
|
|
|
disposition_data.free()
|
|
|
|
name.free()
|
|
|
|
sb.free()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-15 21:04:42 +02:00
|
|
|
fn (mut ctx Context) scan_static_directory(directory_path string, mount_path string) {
|
2020-12-27 10:38:12 +01:00
|
|
|
files := os.ls(directory_path) or { panic(err) }
|
2019-07-31 06:10:53 +02:00
|
|
|
if files.len > 0 {
|
2019-09-05 14:46:24 +02:00
|
|
|
for file in files {
|
2020-12-12 18:13:43 +01:00
|
|
|
full_path := directory_path + '/' + file
|
|
|
|
if os.is_dir(full_path) {
|
|
|
|
ctx.scan_static_directory(full_path, mount_path + '/' + file)
|
2020-11-14 12:55:10 +01:00
|
|
|
} else if file.contains('.') && !file.starts_with('.') && !file.ends_with('.') {
|
2020-03-26 14:18:08 +01:00
|
|
|
ext := os.file_ext(file)
|
2020-03-07 14:16:03 +01:00
|
|
|
// Rudimentary guard against adding files not in mime_types.
|
|
|
|
// Use serve_static directly to add non-standard mime types.
|
2021-01-25 10:26:20 +01:00
|
|
|
if ext in vweb.mime_types {
|
|
|
|
ctx.serve_static(mount_path + '/' + file, full_path, vweb.mime_types[ext])
|
2020-03-07 14:16:03 +01:00
|
|
|
}
|
2019-07-31 06:10:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-17 13:51:18 +02:00
|
|
|
pub fn (mut ctx Context) handle_static(directory_path string) bool {
|
2020-11-14 12:55:10 +01:00
|
|
|
if ctx.done || !os.exists(directory_path) {
|
2020-03-07 14:16:03 +01:00
|
|
|
return false
|
|
|
|
}
|
2020-03-08 15:41:59 +01:00
|
|
|
dir_path := directory_path.trim_space().trim_right('/')
|
2020-03-07 14:16:03 +01:00
|
|
|
mut mount_path := ''
|
|
|
|
if dir_path != '.' && os.is_dir(dir_path) {
|
2020-03-08 15:41:59 +01:00
|
|
|
// Mount point hygene, "./assets" => "/assets".
|
|
|
|
mount_path = '/' + dir_path.trim_left('.').trim('/')
|
2019-10-24 18:44:49 +02:00
|
|
|
}
|
2020-03-08 15:41:59 +01:00
|
|
|
ctx.scan_static_directory(dir_path, mount_path)
|
2020-03-07 14:16:03 +01:00
|
|
|
return true
|
2019-10-24 18:44:49 +02:00
|
|
|
}
|
2019-07-30 15:46:10 +02:00
|
|
|
|
2020-10-15 21:04:42 +02:00
|
|
|
pub fn (mut ctx Context) serve_static(url string, file_path string, mime_type string) {
|
2019-10-24 18:44:49 +02:00
|
|
|
ctx.static_files[url] = file_path
|
2019-07-31 06:10:53 +02:00
|
|
|
ctx.static_mime_types[url] = mime_type
|
2019-08-11 14:07:22 +02:00
|
|
|
}
|
2019-12-11 17:20:46 +01:00
|
|
|
|
2020-07-16 00:48:10 +02:00
|
|
|
pub fn (ctx &Context) ip() string {
|
2020-07-16 21:23:35 +02:00
|
|
|
mut ip := ctx.req.headers['X-Forwarded-For']
|
|
|
|
if ip == '' {
|
|
|
|
ip = ctx.req.headers['X-Real-IP']
|
|
|
|
}
|
|
|
|
if ip.contains(',') {
|
|
|
|
ip = ip.all_before(',')
|
|
|
|
}
|
2020-09-17 09:38:39 +02:00
|
|
|
if ip == '' {
|
2020-11-15 21:54:47 +01:00
|
|
|
ip = ctx.conn.peer_ip() or { '' }
|
2020-09-17 09:38:39 +02:00
|
|
|
}
|
2020-07-16 21:23:35 +02:00
|
|
|
return ip
|
2020-07-16 00:48:10 +02:00
|
|
|
}
|
|
|
|
|
2020-07-07 21:35:56 +02:00
|
|
|
pub fn (mut ctx Context) error(s string) {
|
|
|
|
ctx.form_error = s
|
|
|
|
}
|
|
|
|
|
2019-12-13 21:01:36 +01:00
|
|
|
/*
|
2019-12-11 17:20:46 +01:00
|
|
|
fn readall(conn net.Socket) string {
|
|
|
|
// read all message from socket
|
2019-12-13 21:01:36 +01:00
|
|
|
//printf("waitall=%d\n", C.MSG_WAITALL)
|
2019-12-11 17:20:46 +01:00
|
|
|
mut message := ''
|
|
|
|
buf := [1024]byte
|
|
|
|
for {
|
2019-12-13 21:01:36 +01:00
|
|
|
n := C.recv(conn.sockfd, buf, 1024, 0)
|
2019-12-11 17:20:46 +01:00
|
|
|
m := conn.crecv(buf, 1024)
|
2020-08-10 18:05:26 +02:00
|
|
|
message += unsafe { byteptr(buf).vstring_with_len(m) }
|
2020-05-22 17:36:09 +02:00
|
|
|
if message.len > max_http_post_size { break }
|
2019-12-11 17:20:46 +01:00
|
|
|
if n == m { break }
|
|
|
|
}
|
|
|
|
return message
|
|
|
|
}
|
2019-12-13 21:01:36 +01:00
|
|
|
*/
|
2019-12-11 17:20:46 +01:00
|
|
|
fn strip(s string) string {
|
|
|
|
// strip('\nabc\r\n') => 'abc'
|
|
|
|
return s.trim('\r\n')
|
|
|
|
}
|
2020-06-22 17:13:57 +02:00
|
|
|
|
|
|
|
pub fn not_found() Result {
|
|
|
|
return Result{}
|
|
|
|
}
|
2020-06-24 22:12:33 +02:00
|
|
|
|
|
|
|
fn filter(s string) string {
|
2020-06-24 22:38:25 +02:00
|
|
|
return s.replace_each([
|
2020-11-14 12:55:10 +01:00
|
|
|
'<',
|
|
|
|
'<',
|
|
|
|
'"',
|
|
|
|
'"',
|
|
|
|
'&',
|
|
|
|
'&',
|
2020-06-24 22:38:25 +02:00
|
|
|
])
|
2020-06-24 22:12:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub type RawHtml = string
|
2020-11-15 21:54:47 +01:00
|
|
|
|
2021-01-20 11:11:01 +01:00
|
|
|
fn send_string(mut conn net.TcpConn, s string) ? {
|
2020-12-27 10:38:12 +01:00
|
|
|
conn.write(s.bytes()) ?
|
2020-11-15 21:54:47 +01:00
|
|
|
}
|