Browse Source

Added session-id to form

Session ID (at  the moment) is generated on page load and kept for that period.
Session via cookie has issue is that is it shared across tabs - which is not what we want
gremlin 4 years ago
parent
commit
99ce4311bf
7 changed files with 76 additions and 16 deletions
  1. 1 1
      eliza/eliza.go
  2. 3 0
      go.mod
  3. 9 2
      go.sum
  4. 55 10
      server.go
  5. 3 1
      templates/eliza.html
  6. 2 1
      templates/ivanka.html
  7. 3 1
      web/script.js

+ 1 - 1
eliza/eliza.go

@@ -66,7 +66,7 @@ func (p *BotPersonality) ReplyTo(statement string) string {
 			if strings.Contains(response, "%s") {
 				response = fmt.Sprintf(response, fragment)
 			}
-			fmt.Printf("For Statement \"%s\" got a hit with pattern \"%s\" Responded With \"%s\"\n", statement, pattern, response)
+			//			fmt.Printf("For Statement \"%s\" got a hit with pattern \"%s\" Responded With \"%s\"\n", statement, pattern, response)
 			return response
 		}
 	}

+ 3 - 0
go.mod

@@ -3,6 +3,9 @@ module git.riomhaire.com/gremlin/elizaservice
 go 1.16
 
 require (
+	github.com/gofrs/uuid v4.0.0+incompatible
 	github.com/jaffee/commandeer v0.5.0
 	github.com/labstack/echo/v4 v4.2.0
+	github.com/stretchr/testify v1.5.1 // indirect
+	gopkg.in/yaml.v2 v2.2.7 // indirect
 )

+ 9 - 2
go.sum

@@ -14,6 +14,7 @@ github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3Ee
 github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=
 github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA=
 github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
+github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
 github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
 github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=
 github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=
@@ -24,6 +25,8 @@ github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2
 github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE=
 github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk=
 github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
+github.com/gofrs/uuid v4.0.0+incompatible h1:1SD/1F5pU8p29ybwgQSwpQk+mwdRrXCYuPhW6m+TnJw=
+github.com/gofrs/uuid v4.0.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM=
 github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ=
 github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4=
 github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
@@ -33,8 +36,6 @@ github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5y
 github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
 github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
 github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
-github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI=
-github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So=
 github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ=
 github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs=
 github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk=
@@ -70,6 +71,7 @@ github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRW
 github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U=
 github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic=
 github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
+github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
 github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
 github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=
 github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso=
@@ -88,12 +90,15 @@ github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B
 github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=
 github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ=
 github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo=
+github.com/spf13/pflag v1.0.3 h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg=
 github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
 github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE=
 github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
 github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
 github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
 github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
+github.com/stretchr/testify v1.5.1 h1:nOGnQDM7FYENwehXlg/kFVnos3rEvtKTjRvOWSzb6H4=
+github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
 github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U=
 github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc=
 github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=
@@ -160,4 +165,6 @@ gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo=
 gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74=
 gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
 gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
+gopkg.in/yaml.v2 v2.2.7 h1:VUgggvou5XRW9mHwD/yXxIYSMtY0zoKQf/v226p2nyo=
+gopkg.in/yaml.v2 v2.2.7/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
 honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=

+ 55 - 10
server.go

@@ -1,7 +1,7 @@
-// Author: Matthew Shiel
 package main
 
 import (
+	"bytes"
 	"embed"
 	"encoding/json"
 	"fmt"
@@ -12,7 +12,9 @@ import (
 	"strings"
 
 	"git.riomhaire.com/gremlin/elizaservice/eliza"
+	"github.com/gofrs/uuid"
 	"github.com/jaffee/commandeer"
+
 	"github.com/labstack/echo/v4"
 	"github.com/labstack/echo/v4/middleware"
 )
@@ -26,11 +28,17 @@ var templates embed.FS
 //go:embed bots/*
 var bots embed.FS
 
+/***********************************************************************************************
+*
+ ***********************************************************************************************/
 type Main struct {
 	BotName string `help:"What This Bot is Called."`
 	Port    int    `help:"What port bot is listening too"`
 }
 
+/***********************************************************************************************
+*
+ ***********************************************************************************************/
 func NewMain() *Main {
 	return &Main{
 		BotName: "Eliza",
@@ -38,6 +46,18 @@ func NewMain() *Main {
 	}
 }
 
+/***********************************************************************************************
+* This at the moment ... but it could be one passed in via LTI if available
+ ***********************************************************************************************/
+func createSession(c echo.Context) string {
+	guid, _ := uuid.NewV4()
+	sessionID := guid.String()
+	return sessionID
+}
+
+/***********************************************************************************************
+*
+ ***********************************************************************************************/
 func findPersonality(name string) (personality eliza.Personality, err error) {
 	filename := "bots/" + name + ".json"
 	jsonFile, err := bots.Open(filename)
@@ -61,10 +81,14 @@ func findPersonality(name string) (personality eliza.Personality, err error) {
 	return
 }
 
+/***********************************************************************************************
+*
+ ***********************************************************************************************/
 func chantboInteractiontEndpoint(c echo.Context) error {
 	// Extract question from GET request
 	question := c.QueryParam("value")
 	botname := c.QueryParam("bot")
+	sessionID := c.QueryParam("session")
 
 	// default to eliza
 	if len(botname) == 0 {
@@ -73,20 +97,24 @@ func chantboInteractiontEndpoint(c echo.Context) error {
 
 	personality, err := findPersonality(strings.ToLower(botname)) // files are in lowercase
 	if err != nil {
-		fmt.Fprintf(c.Response(), "%s", err.Error())
-		return nil
+		return c.String(http.StatusOK, err.Error())
 	}
 
 	// Return Eliza's response's so long as the user doesn't give a quit statement
 	character := eliza.NewBotPersonality(&personality)
 	answer := character.ReplyTo(question)
 
+	fmt.Println("Session ID [", sessionID, "] Question [", question, "] Answer [", answer, "]")
+
 	// Return Eliza's answer
-	fmt.Fprintf(c.Response(), "%s", answer)
-	return nil
+	return c.String(http.StatusOK, answer)
 }
 
+/***********************************************************************************************
+*
+ ***********************************************************************************************/
 func chantbotEndpoint(c echo.Context) error {
+
 	c.Response().WriteHeader(http.StatusOK)
 	c.Response().Header().Add("Content-Type", "text/html")
 
@@ -96,23 +124,36 @@ func chantbotEndpoint(c echo.Context) error {
 	if err != nil {
 		log.Fatal(err)
 	}
-	// respond with the output of template execution
-	t.Execute(c.Response(), struct {
+
+	sessionID := createSession(c)
+
+	fmt.Println("Session ID [", sessionID, "] Created")
+	var tBuffer bytes.Buffer
+
+	data := struct {
+		SessionID  string
 		Id         string
 		GivenName  string
 		FamilyName string
 		Name       string
 		Bot        string
 	}{
+		SessionID:  sessionID,
 		Id:         c.QueryParam("user_id"),
 		GivenName:  c.QueryParam("given_name"),
 		FamilyName: c.QueryParam("family_name"),
 		Name:       c.QueryParam("name"),
 		Bot:        strings.Title(strings.ToLower(personality)),
-	})
-	return nil
+	}
+	// respond with the output of template execution
+	t.Execute(&tBuffer, data)
+	page := tBuffer.String()
+	return c.String(http.StatusOK, page)
 }
 
+/***********************************************************************************************
+*
+ ***********************************************************************************************/
 func (m *Main) Run() error {
 
 	fmt.Println(`
@@ -127,18 +168,22 @@ func (m *Main) Run() error {
 	fmt.Println()
 
 	e := echo.New()
+	e.Use(middleware.CORS())
 
 	var contentHandler = echo.WrapHandler(http.FileServer(http.FS(web)))
 	var contentRewrite = middleware.Rewrite(map[string]string{"/*": "/web/$1"})
 
+	e.GET("/*", contentHandler, contentRewrite)
 	e.GET("/user-input", chantboInteractiontEndpoint)
 	e.GET("/chatbot/:personality", chantbotEndpoint)
-	e.GET("/*", contentHandler, contentRewrite)
 	e.Logger.Fatal(e.Start(fmt.Sprintf(":%d", m.Port)))
 
 	return nil
 }
 
+/***********************************************************************************************
+*
+ ***********************************************************************************************/
 func main() {
 	err := commandeer.Run(NewMain())
 	if err != nil {

+ 3 - 1
templates/eliza.html

@@ -35,8 +35,10 @@
 
                 <div class="form-group">
                     <input type="text" class="form-control" id="user-input" aria-describedby="user-input" placeholder="Talk to {{.Bot}}">
-                    <input type="hidden" class="form-control" id="bot-name" aria-describedby="user-input" value="{{.Bot}}">
+                    <input type="hidden" class="form-control" id="bot-name" aria-describedby="bot-name" value="{{.Bot}}">
+                    <input type="hidden" class="form-control" id="session-id" aria-describedby="session-id" value="{{.SessionID}}">
                 </div>
+                
                 <div class="credits">Based on excellent work of https://github.com/mattshiel/eliza-go</div>
 
                 <button type="submit" class="btn btn-primary">Submit</button>

+ 2 - 1
templates/ivanka.html

@@ -36,7 +36,8 @@
 
         <div class="form-group">
           <input type="text" class="form-control" id="user-input" aria-describedby="user-input" placeholder="Talk to {{.Bot}}">
-          <input type="hidden" class="form-control" id="bot-name" aria-describedby="user-input" value="{{.Bot}}">
+          <input type="hidden" class="form-control" id="bot-name" aria-describedby="bot-name" value="{{.Bot}}">
+          <input type="hidden" class="form-control" id="session-id" aria-describedby="session-id" value="{{.SessionID}}">
         </div>
         <div class="credits">Based on excellent work of https://github.com/mattshiel/eliza-go</div>
 

+ 3 - 1
web/script.js

@@ -6,6 +6,7 @@ $("#user-input-form").submit(
         // Store input in a variable
         var question = $('#user-input').val().trim() // Remove whitespace
         var bot = $('#bot-name').val().trim() // Remove whitespace
+        var session = $('#session-id').val().trim() // Remove whitespace
 
 
         // Clear the input box
@@ -27,7 +28,8 @@ $("#user-input-form").submit(
 
         $.get('/user-input', {
                 value: question,
-                bot: bot
+                bot: bot,
+                session: session
             })
             .done(function (data) {
                 // Set a timeout to make Eliza seem like she's thinking