v/tutorials/building_a_simple_web_blog_.../code/blog/blog.v

81 lines
1.4 KiB
V
Raw Normal View History

2019-12-14 03:31:09 +01:00
module main
2020-04-26 13:49:31 +02:00
import vweb
import time
2020-06-30 21:04:00 +02:00
import sqlite
2020-04-26 13:49:31 +02:00
import json
2019-12-14 03:31:09 +01:00
2020-06-30 21:04:00 +02:00
struct App {
2020-12-31 17:47:20 +01:00
vweb.Context
pub mut:
db sqlite.DB [server_var]
user_id string
2019-12-14 03:31:09 +01:00
}
fn main() {
vweb.run(&App{}, 8081)
2019-12-14 03:31:09 +01:00
}
2020-07-04 18:56:18 +02:00
/*
2020-07-07 22:01:18 +02:00
pub fn (mut app App) index_text() vweb.Result {
2019-12-14 03:31:09 +01:00
app.vweb.text('Hello, world from vweb!')
2020-07-04 18:56:18 +02:00
return vweb.Result{}
2019-12-14 03:31:09 +01:00
}
2020-07-07 22:01:18 +02:00
pub fn (app &App) index_html() vweb.Result {
2020-07-04 18:56:18 +02:00
message := 'Hello, world from Vweb!'
return $vweb.html()
2019-12-14 03:31:09 +01:00
}
*/
2020-07-07 22:01:18 +02:00
pub fn (app &App) index() vweb.Result {
2019-12-14 03:31:09 +01:00
articles := app.find_all_articles()
2020-06-30 21:04:00 +02:00
return $vweb.html()
2019-12-14 03:31:09 +01:00
}
pub fn (mut app App) init_server() {
app.db = sqlite.connect('blog.db') or { panic(err) }
2021-04-06 21:15:14 +02:00
app.db.create_table('article', [
'id integer primary key',
"title text default ''",
"text text default ''",
])
2019-12-14 03:31:09 +01:00
}
pub fn (mut app App) before_request() {
app.user_id = app.get_cookie('id') or { '0' }
2019-12-14 22:55:05 +01:00
}
2020-07-04 11:38:47 +02:00
pub fn (mut app App) new() vweb.Result {
2020-06-30 21:04:00 +02:00
return $vweb.html()
}
['/new_article'; post]
2020-06-30 21:04:00 +02:00
pub fn (mut app App) new_article() vweb.Result {
2020-12-31 17:47:20 +01:00
title := app.form['title']
text := app.form['text']
2020-07-04 11:38:47 +02:00
if title == '' || text == '' {
2021-01-08 04:49:13 +01:00
return app.text('Empty text/title')
2019-12-14 22:55:05 +01:00
}
article := Article{
2019-12-14 22:55:05 +01:00
title: title
text: text
}
2021-01-01 20:38:22 +01:00
println('posting article')
2019-12-14 22:55:05 +01:00
println(article)
2020-06-30 21:04:00 +02:00
sql app.db {
insert article into Article
}
2020-12-31 17:47:20 +01:00
return app.redirect('/')
2019-12-14 22:55:05 +01:00
}
2020-05-17 13:51:18 +02:00
pub fn (mut app App) articles() {
2019-12-14 22:55:05 +01:00
articles := app.find_all_articles()
x := json.encode(articles)
app.json(x)
2019-12-14 22:55:05 +01:00
}
2020-05-17 13:51:18 +02:00
fn (mut app App) time() {
2020-12-31 17:47:20 +01:00
app.text(time.now().format())
2019-12-14 03:31:09 +01:00
}