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