package main import ( "fmt" "log" "net/http" "path/filepath" "strconv" "text/template" "github.com/gin-contrib/multitemplate" "github.com/gin-gonic/gin" tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5" "github.com/spf13/viper" "gorm.io/driver/sqlite" "gorm.io/gorm" ) var baseHTML = filepath.Join("templates", "base.html") var indexHTML = filepath.Join("templates", "index.html") var newWatchHTML = filepath.Join("templates", "newWatch.html") type Web struct { //Bot *tgbotapi.BotAPI db *gorm.DB } func (web Web) index(c *gin.Context) { //msg := tgbotapi.NewMessage(viper.GetInt64("telegram.chat"), message) //web.Bot.Send(msg) watches := []Watch{} web.db.Find(&watches) c.HTML(http.StatusOK, "index", watches) } func (web Web) newWatch(c *gin.Context) { c.HTML(http.StatusOK, "newWatch", gin.H{}) } func (web Web) createWatch(c *gin.Context) { var watch Watch errMap, err := bindAndValidateWatch(&watch, c) if err != nil { c.HTML(http.StatusBadRequest, "500", errMap) return } web.db.Create(&watch) c.Redirect(http.StatusSeeOther, fmt.Sprintf("/watch/view/%d", watch.ID)) } func (web Web) deleteWatch(c *gin.Context) { id, err := strconv.Atoi(c.PostForm("id")) if err != nil { c.Redirect(http.StatusSeeOther, "/watch/new") return } web.db.Delete(&Watch{}, id) c.Redirect(http.StatusSeeOther, "/") } func (web Web) viewWatch(c *gin.Context) { id := c.Param("id") var watch Watch web.db.Model(&Watch{}).Preload("URLs.GroupFilters.Filters").First(&watch, id) c.HTML(http.StatusOK, "viewWatch", watch) } func (web Web) createURL(c *gin.Context) { var url URL errMap, err := bindAndValidateURL(&url, c) if err != nil { log.Print(err) c.HTML(http.StatusInternalServerError, "500", errMap) return } web.db.Create(&url) c.Redirect(http.StatusSeeOther, fmt.Sprintf("/watch/view/%d", url.WatchID)) } func (web Web) createFilterGroup(c *gin.Context) { watch_id, err := strconv.ParseUint(c.PostForm("w_id"), 10, 64) if err != nil { log.Print(err) c.HTML(http.StatusInternalServerError, "500", gin.H{}) return } var group FilterGroup errMap, err := bindAndValidateGroup(&group, c) if err != nil { c.HTML(http.StatusBadRequest, "500", errMap) return } web.db.Create(&group) c.Redirect(http.StatusSeeOther, fmt.Sprintf("/watch/view/%d", watch_id)) } func (web Web) createFilter(c *gin.Context) { var filter Filter errMap, err := bindAndValidateFilter(&filter, c) if err != nil { log.Print(err) c.HTML(http.StatusBadRequest, "500", errMap) return } web.db.Create(&filter) c.Redirect(http.StatusSeeOther, fmt.Sprintf("/group/edit/%d", filter.FilterGroupID)) } func (web Web) editGroup(c *gin.Context) { group_id, err := strconv.ParseUint(c.Param("id"), 10, 64) if err != nil { c.Redirect(http.StatusSeeOther, "/watch/new") return // TODO response } var group FilterGroup web.db.Preload("URL.Watch").Preload("Filters").Preload("URL").First(&group, group_id) c.HTML(http.StatusOK, "editGroup", gin.H{ "Group": group, "currentResult": getGroupResult(&group), }) } func (web Web) updateGroup(c *gin.Context) { var groupUpdate FilterGroupUpdate errMap, err := bindAndValidateGroupUpdate(&groupUpdate, c) if err != nil { log.Print(err) c.HTML(http.StatusBadRequest, "500", errMap) return } var group FilterGroup web.db.First(&group, groupUpdate.ID) group.Name = groupUpdate.Name group.Type = groupUpdate.Type web.db.Save(&group) c.Redirect(http.StatusSeeOther, fmt.Sprintf("/group/edit/%d", +group.ID)) } func passiveBot(bot *tgbotapi.BotAPI) { u := tgbotapi.NewUpdate(0) u.Timeout = 60 updates := bot.GetUpdatesChan(u) for update := range updates { if update.Message != nil { // If we got a message log.Printf("[%s] %s", update.Message.From.UserName, update.Message.Text) msg := tgbotapi.NewMessage(update.Message.Chat.ID, update.Message.Text) msg.ReplyToMessageID = update.Message.MessageID bot.Send(msg) } } } func render(w http.ResponseWriter, filename string, data interface{}) { tmpl, err := template.ParseFiles(filename, baseHTML) if err != nil { log.Print(err) http.Error(w, "Something went wrong", http.StatusInternalServerError) return } if err := tmpl.Execute(w, data); err != nil { log.Print(err) http.Error(w, "Something went wrong", http.StatusInternalServerError) } } func main() { viper.SetConfigName("config") viper.SetConfigType("yaml") viper.AddConfigPath(".") viper.AutomaticEnv() err := viper.ReadInConfig() if err != nil { log.Fatalln("Could not load config file") } db, _ := gorm.Open(sqlite.Open(viper.GetString("database.dsn"))) db.AutoMigrate(&Watch{}, &URL{}, &FilterGroup{}, &Filter{}) //bot, _ := tgbotapi.NewBotAPI(viper.GetString("telegram.token")) //bot.Debug = true //log.Printf("Authorized on account %s", bot.Self.UserName) //go passiveBot(bot) web := Web{ //bot, db, } router := gin.Default() router.Static("/static", "./static") templates := multitemplate.NewRenderer() templates.AddFromFiles("index", "templates/base.html", "templates/index.html") templates.AddFromFiles("newWatch", "templates/base.html", "templates/newWatch.html") templates.AddFromFiles("viewWatch", "templates/base.html", "templates/viewWatch.html") templates.AddFromFiles("editGroup", "templates/base.html", "templates/editGroup.html") templates.AddFromFiles("500", "templates/base.html", "templates/500.html") router.HTMLRender = templates router.GET("/", web.index) router.GET("/watch/new", web.newWatch) router.POST("/watch/create", web.createWatch) router.POST("/watch/delete", web.deleteWatch) router.GET("/watch/view/:id/", web.viewWatch) router.POST("/url/create/", web.createURL) router.POST("/group/create/", web.createFilterGroup) router.GET("/group/edit/:id", web.editGroup) router.POST("/group/update", web.updateGroup) router.POST("/filter/create/", web.createFilter) router.Run("0.0.0.0:8080") }