Browse Source

Merge branch 'develop' of gremlin/elizaservice into master

gremlin 4 years ago
parent
commit
9069735037
12 changed files with 289 additions and 19 deletions
  1. 4 1
      go.mod
  2. 41 0
      go.sum
  3. 99 13
      server.go
  4. 4 4
      templates/eliza.html
  5. 58 0
      templates/ivanka.html
  6. BIN
      web/chatbot-white.png
  7. 0 0
      web/eliza/background.jpg
  8. 1 1
      web/eliza/style.css
  9. BIN
      web/favicon.ico
  10. BIN
      web/favicon.png
  11. BIN
      web/ivanka/background.jpg
  12. 82 0
      web/ivanka/style.css

+ 4 - 1
go.mod

@@ -2,4 +2,7 @@ module git.riomhaire.com/gremlin/elizaservice
 
 go 1.16
 
-require github.com/jaffee/commandeer v0.5.0
+require (
+	github.com/jaffee/commandeer v0.5.0
+	github.com/labstack/echo/v4 v4.2.0
+)

+ 41 - 0
go.sum

@@ -13,7 +13,9 @@ github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc
 github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk=
 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/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=
 github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no=
 github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
@@ -31,6 +33,8 @@ 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=
@@ -48,7 +52,18 @@ github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFB
 github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
 github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
 github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
+github.com/labstack/echo/v4 v4.2.0 h1:jkCSsjXmBmapVXF6U4BrSz/cgofWM0CU3Q74wQvXkIc=
+github.com/labstack/echo/v4 v4.2.0/go.mod h1:AA49e0DZ8kk5jTOOCKNuPR6oTnBS0dYiM4FW1e6jwpg=
+github.com/labstack/gommon v0.3.0 h1:JEeO0bvc78PKdyHxloTKiF8BD5iGrH8T6MSeGvSgob0=
+github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL7NoOu+k=
 github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ=
+github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE=
+github.com/mattn/go-colorable v0.1.7 h1:bQGKb3vps/j0E9GfJQ03JyhRuxsvdAanXlT9BTw3mdw=
+github.com/mattn/go-colorable v0.1.7/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc=
+github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=
+github.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2yME+cCiQ=
+github.com/mattn/go-isatty v0.0.12 h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHXY=
+github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=
 github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
 github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
 github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
@@ -75,10 +90,17 @@ github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3
 github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo=
 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/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=
+github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=
+github.com/valyala/fasttemplate v1.0.1/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPUpymEIMZ47gx8=
+github.com/valyala/fasttemplate v1.2.1 h1:TVEnxayobAdVkhQfrfes2IzOB6o+z4roRkPF52WA1u4=
+github.com/valyala/fasttemplate v1.2.1/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ=
 github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=
 github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q=
 go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU=
@@ -87,13 +109,19 @@ go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/
 go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=
 golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
 golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
+golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
+golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a h1:vclmkQCjlDX5OydZ9wv8rBCcS0QyQY66Mpf/7BZbInM=
+golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
 golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
 golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
 golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
 golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
 golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
 golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
+golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
 golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=
+golang.org/x/net v0.0.0-20200822124328-c89045814202 h1:VvcQYSHwXgi7W+TpUR6A9g6Up98WAHf3f/ulnJ62IyA=
+golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
 golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
 golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
 golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
@@ -103,9 +131,22 @@ golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5h
 golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
 golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
 golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
+golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
+golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6 h1:DvY3Zkh7KabQE/kfzMvYvKirSiguP9Q/veMtkYyf0o8=
+golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
+golang.org/x/text v0.3.3 h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k=
+golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
 golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
+golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 h1:Hir2P/De0WpUhtrKGGjvSb2YxUgyZ7EFOSLIcSSpiwE=
+golang.org/x/time v0.0.0-20201208040808-7e3f01d25324/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
 golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
+golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
 golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
 golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
 google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=

+ 99 - 13
server.go

@@ -4,15 +4,21 @@ package main
 import (
 	"embed"
 	"fmt"
-	"io/fs"
+	"html/template"
+	"log"
 	"net/http"
+	"strings"
 
 	"git.riomhaire.com/gremlin/elizaservice/eliza"
-
 	"github.com/jaffee/commandeer"
+	"github.com/labstack/echo/v4"
+	"github.com/labstack/echo/v4/middleware"
 )
 
 //go:embed web/*
+var web embed.FS
+
+//go:embed templates/*
 var templates embed.FS
 
 type Main struct {
@@ -38,6 +44,82 @@ func inputhandler(w http.ResponseWriter, r *http.Request) {
 	fmt.Fprintf(w, "%s", answer)
 }
 
+// func (c echo.Context) personalityHandler(w http.ResponseWriter, r *http.Request) {
+// 	w.WriteHeader(http.StatusOK)
+// 	w.Header().Set("Content-Type", "text/html")
+
+// 	// Note the call to ParseFS instead of Parse
+// 	t, err := template.ParseFS(templates, fmt.Sprintf("templates/%s.html", vars["personality"]))
+// 	if err != nil {
+// 		log.Fatal(err)
+// 	}
+// 	// respond with the output of template execution
+// 	t.Execute(w, struct {
+// 		Id         string
+// 		GivenName  string
+// 		FamilyName string
+// 		Name       string
+// 	}{
+// 		Id:         queryParameter("user_id", r),
+// 		GivenName:  queryParameter("given_name", r),
+// 		FamilyName: queryParameter("family_name", r),
+// 		Name:       queryParameter("name", r),
+// 	})
+
+// }
+
+// func defaultPersonalityHandler(w http.ResponseWriter, r *http.Request) {
+// 	http.Redirect(w, r, "/chatbot/eliza", 302)
+// }
+
+// func queryParameter(key string, r *http.Request) string {
+// 	keys, ok := r.URL.Query()[key]
+
+// 	if !ok || len(keys[0]) < 1 {
+// 		return ""
+// 	}
+// 	return keys[0]
+// }
+
+func chantboInteractiontEndpoint(c echo.Context) error {
+	// Extract question from GET request
+	question := c.QueryParam("value")
+
+	// Return Eliza's response's so long as the user doesn't give a quit statement
+	answer := eliza.ReplyTo(question)
+
+	// Return Eliza's answer
+	fmt.Fprintf(c.Response(), "%s", answer)
+	return nil
+}
+
+func chantbotEndpoint(c echo.Context) error {
+	c.Response().WriteHeader(http.StatusOK)
+	c.Response().Header().Add("Content-Type", "text/html")
+
+	// Note the call to ParseFS instead of Parse
+	personality := c.Param("personality")
+	t, err := template.ParseFS(templates, fmt.Sprintf("templates/%s.html", personality))
+	if err != nil {
+		log.Fatal(err)
+	}
+	// respond with the output of template execution
+	t.Execute(c.Response(), struct {
+		Id         string
+		GivenName  string
+		FamilyName string
+		Name       string
+		Bot        string
+	}{
+		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
+}
+
 func (m *Main) Run() error {
 
 	fmt.Println(`
@@ -50,19 +132,23 @@ func (m *Main) Run() error {
 ####### #######   ###   ####### #     #
 	`)
 	fmt.Println()
-	// create file server handler - but need to strip off prefix
-	fsys, err := fs.Sub(templates, "web")
-	if err != nil {
-		panic(err)
-	}
-	webroot := http.FileServer(http.FS(fsys))
 
-	http.Handle("/", webroot)
+	e := echo.New()
+
+	//e.GET("/chatbot/:personality", personalityHandler)
+	// r.HandleFunc("/chatbot/{personality}", personalityHandler)
+	// http.Handle("/", r)
+
+	// fmt.Printf(" [*] %s ... Awaiting Conversations on port  %d\n", m.BotName, m.Port)
+
+	//	http.ListenAndServe(fmt.Sprintf(":%d", m.Port), nil)
+	var contentHandler = echo.WrapHandler(http.FileServer(http.FS(web)))
+	var contentRewrite = middleware.Rewrite(map[string]string{"/*": "/web/$1"})
 
-	// Handles the user input and return of Eliza's answers
-	http.HandleFunc("/user-input", inputhandler)
-	fmt.Printf(" [*] %s ... Awaiting Conversations on port  %d\n", m.BotName, m.Port)
-	http.ListenAndServe(fmt.Sprintf(":%d", m.Port), nil)
+	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
 }

+ 4 - 4
web/index.html → templates/eliza.html

@@ -11,7 +11,7 @@
     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ"
         crossorigin="anonymous">
     <!-- Relatove link to stylesheet -->
-    <link rel="stylesheet" href="style.css">
+    <link rel="stylesheet" href="/eliza/style.css">
     <link href="https://fonts.googleapis.com/css?family=Pacifico" rel="stylesheet">
     <link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
 
@@ -20,7 +20,7 @@
 <body>
     <div class="wrapper">
         <div class="container">
-            <h1>Welcome - I'm Eliza</h1>
+            <h1>Welcome {{.GivenName}}- I'm {{.Bot}}</h1>
             <h3>..... How can I help?</h3>
             <br>
         </div>
@@ -34,7 +34,7 @@
                 </div>
 
                 <div class="form-group">
-                    <input type="text" class="form-control" id="user-input" aria-describedby="user-input" placeholder="Talk to Eliza">
+                    <input type="text" class="form-control" id="user-input" aria-describedby="user-input" placeholder="Talk to {{.Bot}}">
                 </div>
                 <div class="credits">Based on excellent work of https://github.com/mattshiel/eliza-go</div>
 
@@ -49,7 +49,7 @@
         crossorigin="anonymous"></script>
     <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn"
         crossorigin="anonymous"></script>
-    <script src="script.js"></script>
+    <script src="/script.js"></script>
 </body>
 
 </html>

+ 58 - 0
templates/ivanka.html

@@ -0,0 +1,58 @@
+<!-- Author: Matthew Shiel -->
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+  <!-- Required meta tags -->
+  <meta charset="utf-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+
+  <!-- Bootstrap CSS -->
+  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css"
+    integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
+  <!-- Relatove link to stylesheet -->
+  <link rel="stylesheet" href="/ivanka/style.css">
+  <link href="https://fonts.googleapis.com/css?family=Pacifico" rel="stylesheet">
+  <link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
+
+</head>
+
+<body>
+  <div class="wrapper">
+    <div class="container">
+      <h1>Welcome {{.GivenName}}- I'm {{.Bot}}</h1>
+      <h3>..... How can I help?</h3>
+      <br>
+    </div>
+
+
+    <div class="container">
+      <!-- Adapted from: https://v4-alpha.getbootstrap.com/components/forms/ -->
+      <form id="user-input-form">
+        <div class="form-group">
+          <ul class="form-control" id="output-area"></ul>
+        </div>
+
+        <div class="form-group">
+          <input type="text" class="form-control" id="user-input" aria-describedby="user-input"
+            placeholder="Talk to {{.Bot}}">
+        </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>
+      </form>
+    </div>
+  </div>
+  <!-- jQuery first, then Tether, then Bootstrap JS. -->
+  <script src="https://code.jquery.com/jquery-3.2.1.min.js"
+    integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
+  <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"
+    integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb"
+    crossorigin="anonymous"></script>
+  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"
+    integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn"
+    crossorigin="anonymous"></script>
+  <script src="/script.js"></script>
+</body>
+
+</html>

BIN
web/chatbot-white.png


+ 0 - 0
web/background.jpg → web/eliza/background.jpg


+ 1 - 1
web/style.css → web/eliza/style.css

@@ -1,6 +1,6 @@
 /* Author: Matthew Shiel */
 html { 
-  background: url(background.jpg) no-repeat center center fixed; 
+  background: url(/eliza/background.jpg) no-repeat center center fixed; 
   -webkit-background-size: cover;
   -moz-background-size: cover;
   -o-background-size: cover;

BIN
web/favicon.ico


BIN
web/favicon.png


BIN
web/ivanka/background.jpg


+ 82 - 0
web/ivanka/style.css

@@ -0,0 +1,82 @@
+/* Author: Matthew Shiel */
+html { 
+  background: url(/ivanka/background.jpg) no-repeat center center fixed; 
+  -webkit-background-size: cover;
+  -moz-background-size: cover;
+  -o-background-size: cover;
+  background-size: cover;
+}
+
+h3 {
+  float: right;
+}
+.wrapper {
+    width: 100%;
+    max-width: 1000px;
+    padding-right: 15px;
+    padding-left: 15px;
+    margin-right: auto;
+    margin-left: auto;
+    font-family: 'Pacifico', cursive;
+    color: white;
+    text-shadow: 2px 2px black;
+    margin-top: 60px;
+
+}
+
+body{
+background:none !important;
+}
+
+#output-area {
+    height: 370px;
+    background-color: whitesmoke;   
+    border: none; 
+    list-style: none; 
+}
+
+#user-input {
+    border: 2px solid #C84127;
+}
+
+ul {
+    display: block;
+    /* This is so the list does not overflow the div and has a scrolling bar */
+    overflow: auto;
+}
+
+li {
+    background-color: #67C5C2;
+    color: #3D2117;
+    font-family: 'Quicksand', sans-serif;
+    font-weight: Bold;
+    padding: 7px 13px; 
+    margin-bottom: 12px;
+    border-radius: 15px;   
+    float: left;
+    /* Clear so messages on the left and right seperate */
+    clear: both;
+    text-shadow: none !important;
+}
+
+/* For every second list item float right */
+ul > li:nth-child(odd) {
+    float: right;
+    background-color: #3D2117;
+    color: white;
+    text-shadow: none !important;
+}
+
+button {
+    /* Hide the submit button */
+    visibility: hidden; 
+}
+
+.credits {
+    color: white;
+    float: right;
+    font-size: smaller;
+    opacity: 0.5;
+    text-shadow: none !important;
+
+}