v/examples/pico/pico.v

53 lines
925 B
V
Raw Normal View History

2020-01-23 03:26:30 +01:00
import json
import picoev
import picohttpparser
const (
port = 8088
)
2020-01-23 03:26:30 +01:00
struct Message {
message string
}
[inline]
fn json_response() string {
msg := Message{
message: 'Hello, World!'
}
return json.encode(msg)
}
[inline]
fn hello_response() string {
return 'Hello, World!'
}
2021-04-24 12:21:30 +02:00
fn callback(data voidptr, req picohttpparser.Request, mut res picohttpparser.Response) {
2020-01-23 03:26:30 +01:00
if picohttpparser.cmpn(req.method, 'GET ', 4) {
if picohttpparser.cmp(req.path, '/t') {
res.http_ok()
res.header_server()
res.header_date()
res.plain()
res.body(hello_response())
} else if picohttpparser.cmp(req.path, '/j') {
res.http_ok()
res.header_server()
res.header_date()
res.json()
res.body(json_response())
} else {
2020-01-23 03:26:30 +01:00
res.http_404()
}
} else {
2020-01-23 03:26:30 +01:00
res.http_405()
}
2021-04-24 12:21:30 +02:00
res.end()
2020-01-23 03:26:30 +01:00
}
2020-04-17 21:41:54 +02:00
fn main() {
println('Starting webserver on http://127.0.0.1:$port/ ...')
picoev.new(port: port, cb: &callback).serve()
2020-01-23 03:26:30 +01:00
}