server.go 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. package main
  2. import (
  3. "bytes"
  4. "embed"
  5. "encoding/json"
  6. "fmt"
  7. "html/template"
  8. "io/ioutil"
  9. "log"
  10. "net/http"
  11. "strings"
  12. "git.riomhaire.com/gremlin/elizaservice/eliza"
  13. "github.com/gofrs/uuid"
  14. "github.com/jaffee/commandeer"
  15. "github.com/labstack/echo/v4"
  16. "github.com/labstack/echo/v4/middleware"
  17. )
  18. //go:embed web/*
  19. var web embed.FS
  20. //go:embed templates/*
  21. var templates embed.FS
  22. //go:embed bots/*
  23. var bots embed.FS
  24. /***********************************************************************************************
  25. *
  26. ***********************************************************************************************/
  27. type Main struct {
  28. BotName string `help:"What This Bot is Called."`
  29. Port int `help:"What port bot is listening too"`
  30. }
  31. /***********************************************************************************************
  32. *
  33. ***********************************************************************************************/
  34. func NewMain() *Main {
  35. return &Main{
  36. BotName: "Eliza",
  37. Port: 8070,
  38. }
  39. }
  40. /***********************************************************************************************
  41. * This at the moment ... but it could be one passed in via LTI if available
  42. ***********************************************************************************************/
  43. func createSession(c echo.Context) string {
  44. guid, _ := uuid.NewV4()
  45. sessionID := guid.String()
  46. return sessionID
  47. }
  48. /***********************************************************************************************
  49. *
  50. ***********************************************************************************************/
  51. func findPersonality(name string) (personality eliza.Personality, err error) {
  52. filename := "bots/" + name + ".json"
  53. jsonFile, err := bots.Open(filename)
  54. // if we os.Open returns an error then handle it
  55. if err != nil {
  56. return
  57. }
  58. // fmt.Println("Successfully Opened ", filename)
  59. byteValue, _ := ioutil.ReadAll(jsonFile)
  60. // we initialize our Users array
  61. personality = eliza.Personality{}
  62. // we unmarshal our byteArray which contains our
  63. // jsonFile's content into 'users' which we defined above
  64. json.Unmarshal(byteValue, &personality)
  65. // defer the closing of our jsonFile so that we can parse it later on
  66. defer jsonFile.Close()
  67. return
  68. }
  69. /***********************************************************************************************
  70. *
  71. ***********************************************************************************************/
  72. func chantboInteractiontEndpoint(c echo.Context) error {
  73. // Extract question from GET request
  74. question := c.QueryParam("value")
  75. botname := c.QueryParam("bot")
  76. sessionID := c.QueryParam("session")
  77. // default to eliza
  78. if len(botname) == 0 {
  79. botname = "eliza"
  80. }
  81. personality, err := findPersonality(strings.ToLower(botname)) // files are in lowercase
  82. if err != nil {
  83. return c.String(http.StatusOK, err.Error())
  84. }
  85. // Return Eliza's response's so long as the user doesn't give a quit statement
  86. character := eliza.NewBotPersonality(&personality)
  87. answer := character.ReplyTo(question)
  88. fmt.Println("Session ID [", sessionID, "] Question [", question, "] Answer [", answer, "]")
  89. // Return Eliza's answer
  90. return c.String(http.StatusOK, answer)
  91. }
  92. /***********************************************************************************************
  93. *
  94. ***********************************************************************************************/
  95. func chantbotEndpoint(c echo.Context) error {
  96. c.Response().WriteHeader(http.StatusOK)
  97. c.Response().Header().Add("Content-Type", "text/html")
  98. // Note the call to ParseFS instead of Parse
  99. personality := c.Param("personality")
  100. t, err := template.ParseFS(templates, fmt.Sprintf("templates/%s.html", personality))
  101. if err != nil {
  102. log.Fatal(err)
  103. }
  104. sessionID := createSession(c)
  105. fmt.Println("Session ID [", sessionID, "] Created")
  106. var tBuffer bytes.Buffer
  107. data := struct {
  108. SessionID string
  109. Id string
  110. GivenName string
  111. FamilyName string
  112. Name string
  113. Bot string
  114. }{
  115. SessionID: sessionID,
  116. Id: c.QueryParam("user_id"),
  117. GivenName: c.QueryParam("given_name"),
  118. FamilyName: c.QueryParam("family_name"),
  119. Name: c.QueryParam("name"),
  120. Bot: strings.Title(strings.ToLower(personality)),
  121. }
  122. // respond with the output of template execution
  123. t.Execute(&tBuffer, data)
  124. page := tBuffer.String()
  125. return c.String(http.StatusOK, page)
  126. }
  127. /***********************************************************************************************
  128. *
  129. ***********************************************************************************************/
  130. func (m *Main) Run() error {
  131. fmt.Println(`
  132. ####### # ### ####### #
  133. # # # # # #
  134. # # # # # #
  135. ##### # # # # #
  136. # # # # #######
  137. # # # # # #
  138. ####### ####### ### ####### # #
  139. `)
  140. fmt.Println()
  141. e := echo.New()
  142. e.Use(middleware.CORS())
  143. var contentHandler = echo.WrapHandler(http.FileServer(http.FS(web)))
  144. var contentRewrite = middleware.Rewrite(map[string]string{"/*": "/web/$1"})
  145. e.GET("/*", contentHandler, contentRewrite)
  146. e.GET("/user-input", chantboInteractiontEndpoint)
  147. e.GET("/chatbot/:personality", chantbotEndpoint)
  148. e.Logger.Fatal(e.Start(fmt.Sprintf(":%d", m.Port)))
  149. return nil
  150. }
  151. /***********************************************************************************************
  152. *
  153. ***********************************************************************************************/
  154. func main() {
  155. err := commandeer.Run(NewMain())
  156. if err != nil {
  157. fmt.Println(err)
  158. }
  159. }