2019-12-14 03:31:09 +01:00
|
|
|
module main
|
|
|
|
|
2020-04-26 13:49:31 +02:00
|
|
|
import vweb
|
|
|
|
import time
|
|
|
|
import pg
|
|
|
|
import json
|
2019-12-14 03:31:09 +01:00
|
|
|
|
2020-01-15 22:17:40 +01:00
|
|
|
pub struct App {
|
2019-12-14 03:31:09 +01:00
|
|
|
mut:
|
|
|
|
vweb vweb.Context
|
|
|
|
db pg.DB
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2019-12-21 03:25:28 +01:00
|
|
|
vweb.run<App>(8080)
|
2019-12-14 03:31:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn (app mut App) index_text() {
|
|
|
|
app.vweb.text('Hello, world from vweb!')
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
fn (app &App) index_html() {
|
|
|
|
message := 'Hello, world from vweb!'
|
|
|
|
$vweb.html()
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
fn (app &App) index() {
|
|
|
|
articles := app.find_all_articles()
|
|
|
|
$vweb.html()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (app mut App) init() {
|
|
|
|
db := pg.connect(pg.Config{
|
|
|
|
host: '127.0.0.1'
|
|
|
|
dbname: 'blog'
|
|
|
|
user: 'alex'
|
|
|
|
}) or { panic(err) }
|
|
|
|
app.db = db
|
|
|
|
}
|
|
|
|
|
2019-12-14 22:55:05 +01:00
|
|
|
pub fn (app mut App) new() {
|
|
|
|
$vweb.html()
|
|
|
|
}
|
|
|
|
|
2020-01-15 22:17:40 +01:00
|
|
|
pub fn (app mut App) reset() {
|
|
|
|
}
|
|
|
|
|
2019-12-14 22:55:05 +01:00
|
|
|
pub fn (app mut App) new_article() {
|
|
|
|
title := app.vweb.form['title']
|
|
|
|
text := app.vweb.form['text']
|
|
|
|
if title == '' || text == '' {
|
|
|
|
app.vweb.text('Empty text/titile')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
article := Article{
|
|
|
|
title: title
|
|
|
|
text: text
|
|
|
|
}
|
|
|
|
println(article)
|
|
|
|
db := app.db
|
|
|
|
db.insert(article)
|
|
|
|
app.vweb.redirect('/article/')
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (app mut App) articles() {
|
|
|
|
articles := app.find_all_articles()
|
|
|
|
app.vweb.json(json.encode(articles))
|
|
|
|
}
|
|
|
|
|
2019-12-14 03:31:09 +01:00
|
|
|
fn (app mut App) time() {
|
|
|
|
app.vweb.text(time.now().format())
|
|
|
|
}
|