2019-07-30 15:46:10 +02:00
|
|
|
module main
|
|
|
|
|
|
|
|
import vweb
|
2021-03-01 11:50:52 +01:00
|
|
|
import rand
|
2019-07-30 15:46:10 +02:00
|
|
|
|
|
|
|
const (
|
2019-10-24 18:44:49 +02:00
|
|
|
port = 8082
|
2019-07-30 15:46:10 +02:00
|
|
|
)
|
|
|
|
|
2020-05-27 03:33:37 +02:00
|
|
|
struct App {
|
2020-12-31 17:07:24 +01:00
|
|
|
vweb.Context
|
2021-06-17 01:08:02 +02:00
|
|
|
mut:
|
|
|
|
state shared State
|
|
|
|
}
|
|
|
|
|
|
|
|
struct State {
|
2020-12-31 17:47:20 +01:00
|
|
|
mut:
|
|
|
|
cnt int
|
2019-07-30 15:46:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2020-03-06 20:22:58 +01:00
|
|
|
println('vweb example')
|
2021-05-11 08:30:01 +02:00
|
|
|
vweb.run(&App{}, port)
|
2019-07-30 15:46:10 +02:00
|
|
|
}
|
|
|
|
|
2021-04-26 18:38:13 +02:00
|
|
|
pub fn (mut app App) init_server() {
|
2021-02-21 19:01:29 +01:00
|
|
|
app.handle_static('.', false)
|
2019-07-30 15:46:10 +02:00
|
|
|
}
|
|
|
|
|
2021-03-01 11:50:52 +01:00
|
|
|
['/users/:user']
|
|
|
|
pub fn (mut app App) user_endpoint(user string) vweb.Result {
|
|
|
|
id := rand.intn(100)
|
|
|
|
return app.json('{"$user": $id}')
|
2019-07-30 15:46:10 +02:00
|
|
|
}
|
|
|
|
|
2020-06-20 03:12:35 +02:00
|
|
|
pub fn (mut app App) index() vweb.Result {
|
2021-06-17 01:08:02 +02:00
|
|
|
lock app.state {
|
|
|
|
app.state.cnt++
|
|
|
|
}
|
2020-06-08 00:47:04 +02:00
|
|
|
show := true
|
2020-06-07 13:26:47 +02:00
|
|
|
hello := 'Hello world from vweb'
|
2020-10-14 23:39:09 +02:00
|
|
|
numbers := [1, 2, 3]
|
2020-06-20 03:12:35 +02:00
|
|
|
return $vweb.html()
|
2019-08-10 23:02:48 +02:00
|
|
|
}
|
|
|
|
|
2020-12-31 17:07:24 +01:00
|
|
|
pub fn (mut app App) show_text() vweb.Result {
|
|
|
|
return app.text('Hello world from vweb')
|
2019-07-30 15:46:10 +02:00
|
|
|
}
|
2019-08-05 10:42:58 +02:00
|
|
|
|
2020-06-27 13:56:15 +02:00
|
|
|
pub fn (mut app App) cookie() vweb.Result {
|
2020-12-31 17:47:20 +01:00
|
|
|
app.set_cookie(name: 'cookie', value: 'test')
|
2021-07-18 11:21:07 +02:00
|
|
|
return app.text('Response Headers\n$app.header')
|
2019-09-20 02:01:52 +02:00
|
|
|
}
|
2021-02-27 23:18:25 +01:00
|
|
|
|
|
|
|
[post]
|
|
|
|
pub fn (mut app App) post() vweb.Result {
|
|
|
|
return app.text('Post body: $app.req.data')
|
|
|
|
}
|