From 38ee83e45b4de7edf89bf9f0ef629eb4c6ad0fa8 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Thu, 12 May 2016 23:56:07 -0400 Subject: Moving to glide --- vendor/github.com/mattermost/rsc/app/app.go | 39 +++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 vendor/github.com/mattermost/rsc/app/app.go (limited to 'vendor/github.com/mattermost/rsc/app/app.go') diff --git a/vendor/github.com/mattermost/rsc/app/app.go b/vendor/github.com/mattermost/rsc/app/app.go new file mode 100644 index 000000000..d6db65dd4 --- /dev/null +++ b/vendor/github.com/mattermost/rsc/app/app.go @@ -0,0 +1,39 @@ +package app + +import ( + "fmt" + "net/http" + + "appengine" + "appengine/memcache" + + _ "github.com/mattermost/rsc/appfs/server" + _ "github.com/mattermost/rsc/blog/post" +) + +func init() { + http.HandleFunc("/admin/", Admin) +} + +func Admin(w http.ResponseWriter, req *http.Request) { + c := appengine.NewContext(req) + switch req.FormValue("op") { + default: + fmt.Fprintf(w, "unknown op %s\n", req.FormValue("op")) + case "memcache-get": + key := req.FormValue("key") + item, err := memcache.Get(c, key) + if err != nil { + fmt.Fprintf(w, "ERROR: %s\n", err) + return + } + w.Write(item.Value) + case "memcache-delete": + key := req.FormValue("key") + if err := memcache.Delete(c, key); err != nil { + fmt.Fprintf(w, "ERROR: %s\n", err) + return + } + fmt.Fprintf(w, "deleted %s\n", key) + } +} -- cgit v1.2.3-1-g7c22