server.go 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. // Author: Matthew Shiel
  2. package main
  3. import (
  4. "embed"
  5. "fmt"
  6. "html/template"
  7. "log"
  8. "net/http"
  9. "strings"
  10. "git.riomhaire.com/gremlin/elizaservice/eliza"
  11. "github.com/jaffee/commandeer"
  12. "github.com/labstack/echo/v4"
  13. "github.com/labstack/echo/v4/middleware"
  14. )
  15. //go:embed web/*
  16. var web embed.FS
  17. //go:embed templates/*
  18. var templates embed.FS
  19. type Main struct {
  20. BotName string `help:"What This Bot is Called."`
  21. Port int `help:"What port bot is listening too"`
  22. }
  23. func NewMain() *Main {
  24. return &Main{
  25. BotName: "Eliza",
  26. Port: 8070,
  27. }
  28. }
  29. func inputhandler(w http.ResponseWriter, r *http.Request) {
  30. // Extract question from GET request
  31. question := r.URL.Query().Get("value")
  32. // Return Eliza's response's so long as the user doesn't give a quit statement
  33. answer := eliza.ReplyTo(question)
  34. // Return Eliza's answer
  35. fmt.Fprintf(w, "%s", answer)
  36. }
  37. // func (c echo.Context) personalityHandler(w http.ResponseWriter, r *http.Request) {
  38. // w.WriteHeader(http.StatusOK)
  39. // w.Header().Set("Content-Type", "text/html")
  40. // // Note the call to ParseFS instead of Parse
  41. // t, err := template.ParseFS(templates, fmt.Sprintf("templates/%s.html", vars["personality"]))
  42. // if err != nil {
  43. // log.Fatal(err)
  44. // }
  45. // // respond with the output of template execution
  46. // t.Execute(w, struct {
  47. // Id string
  48. // GivenName string
  49. // FamilyName string
  50. // Name string
  51. // }{
  52. // Id: queryParameter("user_id", r),
  53. // GivenName: queryParameter("given_name", r),
  54. // FamilyName: queryParameter("family_name", r),
  55. // Name: queryParameter("name", r),
  56. // })
  57. // }
  58. // func defaultPersonalityHandler(w http.ResponseWriter, r *http.Request) {
  59. // http.Redirect(w, r, "/chatbot/eliza", 302)
  60. // }
  61. // func queryParameter(key string, r *http.Request) string {
  62. // keys, ok := r.URL.Query()[key]
  63. // if !ok || len(keys[0]) < 1 {
  64. // return ""
  65. // }
  66. // return keys[0]
  67. // }
  68. func chantboInteractiontEndpoint(c echo.Context) error {
  69. // Extract question from GET request
  70. question := c.QueryParam("value")
  71. // Return Eliza's response's so long as the user doesn't give a quit statement
  72. answer := eliza.ReplyTo(question)
  73. // Return Eliza's answer
  74. fmt.Fprintf(c.Response(), "%s", answer)
  75. return nil
  76. }
  77. func chantbotEndpoint(c echo.Context) error {
  78. c.Response().WriteHeader(http.StatusOK)
  79. c.Response().Header().Add("Content-Type", "text/html")
  80. // Note the call to ParseFS instead of Parse
  81. personality := c.Param("personality")
  82. t, err := template.ParseFS(templates, fmt.Sprintf("templates/%s.html", personality))
  83. if err != nil {
  84. log.Fatal(err)
  85. }
  86. // respond with the output of template execution
  87. t.Execute(c.Response(), struct {
  88. Id string
  89. GivenName string
  90. FamilyName string
  91. Name string
  92. Bot string
  93. }{
  94. Id: c.QueryParam("user_id"),
  95. GivenName: c.QueryParam("given_name"),
  96. FamilyName: c.QueryParam("family_name"),
  97. Name: c.QueryParam("name"),
  98. Bot: strings.Title(strings.ToLower(personality)),
  99. })
  100. return nil
  101. }
  102. func (m *Main) Run() error {
  103. fmt.Println(`
  104. ####### # ### ####### #
  105. # # # # # #
  106. # # # # # #
  107. ##### # # # # #
  108. # # # # #######
  109. # # # # # #
  110. ####### ####### ### ####### # #
  111. `)
  112. fmt.Println()
  113. e := echo.New()
  114. //e.GET("/chatbot/:personality", personalityHandler)
  115. // r.HandleFunc("/chatbot/{personality}", personalityHandler)
  116. // http.Handle("/", r)
  117. // fmt.Printf(" [*] %s ... Awaiting Conversations on port %d\n", m.BotName, m.Port)
  118. // http.ListenAndServe(fmt.Sprintf(":%d", m.Port), nil)
  119. var contentHandler = echo.WrapHandler(http.FileServer(http.FS(web)))
  120. var contentRewrite = middleware.Rewrite(map[string]string{"/*": "/web/$1"})
  121. e.GET("/user-input", chantboInteractiontEndpoint)
  122. e.GET("/chatbot/:personality", chantbotEndpoint)
  123. e.GET("/*", contentHandler, contentRewrite)
  124. e.Logger.Fatal(e.Start(fmt.Sprintf(":%d", m.Port)))
  125. return nil
  126. }
  127. func main() {
  128. err := commandeer.Run(NewMain())
  129. if err != nil {
  130. fmt.Println(err)
  131. }
  132. }