2021-05-11 12:59:02 +02:00
|
|
|
module main
|
|
|
|
|
|
|
|
import vweb
|
|
|
|
import time
|
|
|
|
import sqlite
|
|
|
|
|
|
|
|
struct App {
|
|
|
|
vweb.Context
|
|
|
|
pub mut:
|
2021-08-03 15:03:16 +02:00
|
|
|
db sqlite.DB
|
2021-05-11 12:59:02 +02:00
|
|
|
user_id string
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Article {
|
|
|
|
id int
|
|
|
|
title string
|
|
|
|
text string
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_a_vweb_application_compiles() {
|
2021-05-11 13:01:57 +02:00
|
|
|
go fn () {
|
2021-05-11 12:59:02 +02:00
|
|
|
time.sleep(2 * time.second)
|
|
|
|
exit(0)
|
|
|
|
}()
|
|
|
|
vweb.run(&App{}, 18081)
|
|
|
|
}
|
|
|
|
|
2021-08-03 15:03:16 +02:00
|
|
|
/*
|
|
|
|
/TODO
|
|
|
|
pub fn (mut app App) init_server_old() {
|
2021-05-11 12:59:02 +02:00
|
|
|
app.db = sqlite.connect('blog.db') or { panic(err) }
|
|
|
|
app.db.create_table('article', [
|
|
|
|
'id integer primary key',
|
|
|
|
"title text default ''",
|
|
|
|
"text text default ''",
|
|
|
|
])
|
|
|
|
}
|
2021-08-03 15:03:16 +02:00
|
|
|
*/
|
2021-05-11 12:59:02 +02:00
|
|
|
|
|
|
|
pub fn (mut app App) before_request() {
|
|
|
|
app.user_id = app.get_cookie('id') or { '0' }
|
|
|
|
}
|
|
|
|
|
|
|
|
['/new_article'; post]
|
|
|
|
pub fn (mut app App) new_article() vweb.Result {
|
|
|
|
title := app.form['title']
|
|
|
|
text := app.form['text']
|
|
|
|
if title == '' || text == '' {
|
|
|
|
return app.text('Empty text/title')
|
|
|
|
}
|
|
|
|
article := Article{
|
|
|
|
title: title
|
|
|
|
text: text
|
|
|
|
}
|
|
|
|
println('posting article')
|
|
|
|
println(article)
|
|
|
|
sql app.db {
|
|
|
|
insert article into Article
|
|
|
|
}
|
|
|
|
|
|
|
|
return app.redirect('/')
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (mut app App) time() {
|
|
|
|
app.text(time.now().format())
|
|
|
|
}
|
2021-12-06 23:31:17 +01:00
|
|
|
|
|
|
|
fn (mut app App) time_json() {
|
|
|
|
app.json({
|
|
|
|
'time': time.now().format()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (mut app App) time_json_pretty() {
|
|
|
|
app.json_pretty({
|
|
|
|
'time': time.now().format()
|
|
|
|
})
|
|
|
|
}
|