From ca255ab7a1dd9373bb5d7954b857bc59955ab463 Mon Sep 17 00:00:00 2001 From: Mike Shenin Date: Sat, 18 Aug 2018 15:59:53 +0300 Subject: [PATCH] fix bug --- .gitignore | 3 ++- handlers/add.go | 10 +++++++++- handlers/edit.go | 9 ++++++++- handlers/edit_main.go | 9 ++++++++- handlers/end_match.go | 8 +++++++- handlers/error.go | 2 +- handlers/get.go | 11 +++++++++-- handlers/index.go | 9 ++++++++- handlers/main.go | 13 ++++--------- handlers/post.go | 8 +++++++- main.go | 19 ++++++++----------- 11 files changed, 71 insertions(+), 30 deletions(-) diff --git a/.gitignore b/.gitignore index c30e7de..5917109 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -stats.db \ No newline at end of file +football_cms +stats.db diff --git a/handlers/add.go b/handlers/add.go index 906c263..81f0517 100644 --- a/handlers/add.go +++ b/handlers/add.go @@ -1,6 +1,14 @@ package handlers -func handler_add(ctx *macaron.Context) { +import ( + "gopkg.in/macaron.v1" + + "strings" + dbstr "../structs" +) + + +func Handler_add(ctx *macaron.Context) { var match dbstr.Match db.First(&match, "Active = ?", 1) if match.Active != 0 { diff --git a/handlers/edit.go b/handlers/edit.go index f058f4f..3b5e9fe 100644 --- a/handlers/edit.go +++ b/handlers/edit.go @@ -1,6 +1,13 @@ package handlers -func handler_edit(ctx *macaron.Context) { +import ( + "gopkg.in/macaron.v1" + + dbstr "../structs" +) + + +func Handler_edit(ctx *macaron.Context) { var match dbstr.Match db.First(&match, "Active = ?", 1) if match.Active != 0 { diff --git a/handlers/edit_main.go b/handlers/edit_main.go index 14d14f3..57d5137 100644 --- a/handlers/edit_main.go +++ b/handlers/edit_main.go @@ -1,6 +1,13 @@ package handlers -func handler_edit_main(ctx *macaron.Context) { +import ( + "gopkg.in/macaron.v1" + "strconv" + "strings" + dbstr "../structs" +) + +func Handler_edit_main(ctx *macaron.Context) { var match dbstr.Match db.First(&match, "Active = ?", 1) if match.Active != 0 { diff --git a/handlers/end_match.go b/handlers/end_match.go index 7235d8a..fe72b18 100644 --- a/handlers/end_match.go +++ b/handlers/end_match.go @@ -1,6 +1,12 @@ package handlers -func handler_end(ctx *macaron.Context) { +import ( + "gopkg.in/macaron.v1" + + dbstr "../structs" +) + +func Handler_end(ctx *macaron.Context) { var match dbstr.Match db.First(&match, "Active = ?", 1) if match.Active != 0 { diff --git a/handlers/error.go b/handlers/error.go index c31ecf9..0941821 100644 --- a/handlers/error.go +++ b/handlers/error.go @@ -1,5 +1,5 @@ package handlers -func handler_error() string { +func Handler_error() string { return "Произошла какая-то ошибка!" } \ No newline at end of file diff --git a/handlers/get.go b/handlers/get.go index c4da7f4..177dab3 100644 --- a/handlers/get.go +++ b/handlers/get.go @@ -1,10 +1,17 @@ package handlers -func handler_events_get(ctx *macaron.Context) { +import ( + "gopkg.in/macaron.v1" + + dbstr "../structs" +) + + +func Handler_events_get(ctx *macaron.Context) { var match dbstr.Match db.First(&match, "Active = ?", 1) if match.Active != 0 { - events := []Event {} + events := []dbstr.Event {} db.Find(&events, "Match_id = ?", match.ID) ctx.Data["Events"] = events ctx.Data["Matchinfo"] = match diff --git a/handlers/index.go b/handlers/index.go index 39074da..583b574 100644 --- a/handlers/index.go +++ b/handlers/index.go @@ -1,6 +1,13 @@ package handlers -func handler_index(ctx *macaron.Context) { +import ( + "gopkg.in/macaron.v1" + "encoding/json" + dbstr "../structs" +) + + +func Handler_index(ctx *macaron.Context) { var match dbstr.Match var events_team1 dbstr.Match_events var events_team2 dbstr.Match_events diff --git a/handlers/main.go b/handlers/main.go index 7d2f087..dc62ac8 100644 --- a/handlers/main.go +++ b/handlers/main.go @@ -1,14 +1,9 @@ package handlers import ( - "log" - "encoding/json" - "strings" - "gopkg.in/macaron.v1" - "strconv" - "github.com/jinzhu/gorm" _ "github.com/jinzhu/gorm/dialects/sqlite" - - dbstr "../structs" -) \ No newline at end of file +) + + +var db, err_db = gorm.Open("sqlite3", "stats.db") \ No newline at end of file diff --git a/handlers/post.go b/handlers/post.go index a879fbf..6f92913 100644 --- a/handlers/post.go +++ b/handlers/post.go @@ -1,6 +1,12 @@ package handlers -func handler_events_post(ctx *macaron.Context) { +import ( + "gopkg.in/macaron.v1" + "strconv" + dbstr "../structs" +) + +func Handler_events_post(ctx *macaron.Context) { var match dbstr.Match db.First(&match, "Active = ?", 1) if match.Active != 0 { diff --git a/main.go b/main.go index 1c6cefc..0aed06c 100644 --- a/main.go +++ b/main.go @@ -2,10 +2,7 @@ package main import ( "log" - "encoding/json" - "strings" "gopkg.in/macaron.v1" - "strconv" "github.com/jinzhu/gorm" _ "github.com/jinzhu/gorm/dialects/sqlite" @@ -32,15 +29,15 @@ func main() { db.AutoMigrate(&dbstr.Match{}) db.AutoMigrate(&dbstr.Event{}) - m.Get("/", handler.handler_index) // / (GET) - основная страница, шаблон "active.tmpl" - m.Get("/add", handler.handler_add) // /add(GET) - страница для создания матча, шаблон "add.tmpl" - m.Get("/error", handler.handler_error) // /error(GET) - страница для ошибок, *разрабатывается* - m.Get("/end", handler.handler_end) // /end(GET) - мгновенно окончить матч, шаблон отсутствует - m.Get("/medit", handler.handler_edit_main) // /medit(GET) - редактор матча, шаблон "medit.tmpl" - m.Get("/events", handler.handler_events_get) // /events(GET) - редактор событий, шаблон "events.tmpl" + m.Get("/", handler.Handler_index) // / (GET) - основная страница, шаблон "active.tmpl" + m.Get("/add", handler.Handler_add) // /add(GET) - страница для создания матча, шаблон "add.tmpl" + m.Get("/error", handler.Handler_error) // /error(GET) - страница для ошибок, *разрабатывается* + m.Get("/end", handler.Handler_end) // /end(GET) - мгновенно окончить матч, шаблон отсутствует + m.Get("/medit", handler.Handler_edit_main) // /medit(GET) - редактор матча, шаблон "medit.tmpl" + m.Get("/events", handler.Handler_events_get) // /events(GET) - редактор событий, шаблон "events.tmpl" - m.Post("/edit", handler.handler_edit) // /edit(POST) - обновляет события в / - m.Post("/events", handler.handler_events_post) // /events(POST) - добавляет события в /events(GET) + m.Post("/edit", handler.Handler_edit) // /edit(POST) - обновляет события в / + m.Post("/events", handler.Handler_events_post) // /events(POST) - добавляет события в /events(GET) m.Run("0.0.0.0", 8080) log.Print("Server started at *:8080") -- GitLab