2020-08-13 23:51:57 +02:00
|
|
|
module main
|
|
|
|
|
|
|
|
import os
|
|
|
|
import vweb
|
|
|
|
import time
|
|
|
|
|
2020-08-14 01:43:57 +02:00
|
|
|
const (
|
|
|
|
known_users = ['bilbo', 'kent']
|
|
|
|
)
|
|
|
|
|
2020-08-13 23:51:57 +02:00
|
|
|
struct App {
|
2020-12-31 17:22:47 +01:00
|
|
|
vweb.Context
|
2021-06-16 19:33:30 +02:00
|
|
|
port int
|
|
|
|
timeout int
|
|
|
|
global_config shared Config
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Config {
|
|
|
|
max_ping int
|
2020-08-13 23:51:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn exit_after_timeout(timeout_in_ms int) {
|
2021-02-27 18:41:06 +01:00
|
|
|
time.sleep(timeout_in_ms * time.millisecond)
|
2020-08-13 23:51:57 +02:00
|
|
|
// eprintln('webserver is exiting ...')
|
|
|
|
exit(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
if os.args.len != 3 {
|
|
|
|
panic('Usage: `vweb_test_server.exe PORT TIMEOUT_IN_MILLISECONDS`')
|
|
|
|
}
|
|
|
|
http_port := os.args[1].int()
|
|
|
|
assert http_port > 0
|
|
|
|
timeout := os.args[2].int()
|
|
|
|
assert timeout > 0
|
|
|
|
go exit_after_timeout(timeout)
|
|
|
|
//
|
2021-06-16 19:33:30 +02:00
|
|
|
shared config := &Config{
|
|
|
|
max_ping: 50
|
|
|
|
}
|
2021-05-11 08:52:08 +02:00
|
|
|
app := &App{
|
2020-08-13 23:51:57 +02:00
|
|
|
port: http_port
|
|
|
|
timeout: timeout
|
2021-06-16 19:33:30 +02:00
|
|
|
global_config: config
|
2020-08-13 23:51:57 +02:00
|
|
|
}
|
2022-02-01 17:41:12 +01:00
|
|
|
eprintln('>> webserver: started on http://localhost:$app.port/ , with maximum runtime of $app.timeout milliseconds.')
|
2022-02-18 09:18:04 +01:00
|
|
|
vweb.run_at(app, host: 'localhost', port: http_port, family: .ip) ?
|
2020-08-13 23:51:57 +02:00
|
|
|
}
|
|
|
|
|
2021-05-11 08:30:01 +02:00
|
|
|
// pub fn (mut app App) init_server() {
|
|
|
|
//}
|
|
|
|
|
2021-01-05 01:30:27 +01:00
|
|
|
pub fn (mut app App) index() vweb.Result {
|
2022-04-07 17:05:11 +02:00
|
|
|
rlock app.global_config {
|
|
|
|
assert app.global_config.max_ping == 50
|
|
|
|
}
|
2021-01-05 01:30:27 +01:00
|
|
|
return app.text('Welcome to VWeb')
|
2020-08-13 23:51:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (mut app App) simple() vweb.Result {
|
2021-01-05 01:30:27 +01:00
|
|
|
return app.text('A simple result')
|
2020-08-13 23:51:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (mut app App) html_page() vweb.Result {
|
2021-01-08 04:57:02 +01:00
|
|
|
return app.html('<h1>ok</h1>')
|
2020-08-13 23:51:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// the following serve custom routes
|
|
|
|
['/:user/settings']
|
|
|
|
pub fn (mut app App) settings(username string) vweb.Result {
|
2021-01-25 12:08:43 +01:00
|
|
|
if username !in known_users {
|
2020-12-31 17:22:47 +01:00
|
|
|
return app.not_found()
|
2020-08-14 01:43:57 +02:00
|
|
|
}
|
2021-01-08 04:57:02 +01:00
|
|
|
return app.html('username: $username')
|
2020-08-13 23:51:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
['/:user/:repo/settings']
|
2020-10-17 17:27:06 +02:00
|
|
|
pub fn (mut app App) user_repo_settings(username string, repository string) vweb.Result {
|
2021-01-25 12:08:43 +01:00
|
|
|
if username !in known_users {
|
2020-12-31 17:22:47 +01:00
|
|
|
return app.not_found()
|
2020-08-14 01:43:57 +02:00
|
|
|
}
|
2021-01-08 04:57:02 +01:00
|
|
|
return app.html('username: $username | repository: $repository')
|
2020-08-13 23:51:57 +02:00
|
|
|
}
|
2020-08-14 01:43:57 +02:00
|
|
|
|
2021-03-05 06:17:57 +01:00
|
|
|
['/json_echo'; post]
|
2021-01-01 21:29:14 +01:00
|
|
|
pub fn (mut app App) json_echo() vweb.Result {
|
2021-03-03 08:56:22 +01:00
|
|
|
// eprintln('>>>>> received http request at /json_echo is: $app.req')
|
2021-04-09 18:17:33 +02:00
|
|
|
app.set_content_type(app.req.header.get(.content_type) or { '' })
|
2021-01-01 21:29:14 +01:00
|
|
|
return app.ok(app.req.data)
|
|
|
|
}
|
|
|
|
|
2021-04-16 07:46:06 +02:00
|
|
|
['/form_echo'; post]
|
|
|
|
pub fn (mut app App) form_echo() vweb.Result {
|
|
|
|
app.set_content_type(app.req.header.get(.content_type) or { '' })
|
|
|
|
return app.ok(app.form['foo'])
|
|
|
|
}
|
|
|
|
|
2021-01-01 21:29:14 +01:00
|
|
|
// Make sure [post] works without the path
|
|
|
|
[post]
|
2020-08-14 01:43:57 +02:00
|
|
|
pub fn (mut app App) json() vweb.Result {
|
2021-03-03 08:56:22 +01:00
|
|
|
// eprintln('>>>>> received http request at /json is: $app.req')
|
2021-04-09 18:17:33 +02:00
|
|
|
app.set_content_type(app.req.header.get(.content_type) or { '' })
|
2020-12-31 17:22:47 +01:00
|
|
|
return app.ok(app.req.data)
|
2020-08-14 01:43:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (mut app App) shutdown() vweb.Result {
|
2020-12-31 17:22:47 +01:00
|
|
|
session_key := app.get_cookie('skey') or { return app.not_found() }
|
2020-08-14 01:43:57 +02:00
|
|
|
if session_key != 'superman' {
|
2020-12-31 17:22:47 +01:00
|
|
|
return app.not_found()
|
2020-08-14 01:43:57 +02:00
|
|
|
}
|
|
|
|
go app.gracefull_exit()
|
2020-12-31 17:22:47 +01:00
|
|
|
return app.ok('good bye')
|
2020-08-14 01:43:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn (mut app App) gracefull_exit() {
|
|
|
|
eprintln('>> webserver: gracefull_exit')
|
2021-02-27 18:41:06 +01:00
|
|
|
time.sleep(100 * time.millisecond)
|
2020-08-14 01:43:57 +02:00
|
|
|
exit(0)
|
|
|
|
}
|