2017-07-03 06:42:34 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-07-06 08:33:31 +00:00
|
|
|
"encoding/json"
|
2017-07-03 06:42:34 +00:00
|
|
|
"fmt"
|
2017-07-03 08:46:08 +00:00
|
|
|
"io/ioutil"
|
2017-07-03 06:42:34 +00:00
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
|
2017-07-06 08:33:31 +00:00
|
|
|
// Logging
|
|
|
|
"github.com/unrolled/logger"
|
|
|
|
|
|
|
|
// Stats/Metrics
|
|
|
|
"github.com/rcrowley/go-metrics"
|
|
|
|
"github.com/rcrowley/go-metrics/exp"
|
|
|
|
"github.com/thoas/stats"
|
|
|
|
|
2017-07-03 06:42:34 +00:00
|
|
|
"github.com/GeertJohan/go.rice"
|
|
|
|
"github.com/julienschmidt/httprouter"
|
|
|
|
"github.com/patrickmn/go-cache"
|
|
|
|
"github.com/renstrom/shortuuid"
|
2017-07-03 08:46:08 +00:00
|
|
|
"github.com/timewasted/go-accept-headers"
|
2017-07-03 06:42:34 +00:00
|
|
|
"go.iondynamics.net/templice"
|
|
|
|
)
|
|
|
|
|
2017-07-06 08:33:31 +00:00
|
|
|
// AcceptedTypes ...
|
2017-07-03 08:46:08 +00:00
|
|
|
var AcceptedTypes = []string{
|
|
|
|
"text/html",
|
|
|
|
"text/plain",
|
|
|
|
}
|
|
|
|
|
2017-07-06 08:33:31 +00:00
|
|
|
// Counters ...
|
|
|
|
type Counters struct {
|
|
|
|
r metrics.Registry
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewCounters() *Counters {
|
|
|
|
counters := &Counters{
|
|
|
|
r: metrics.NewRegistry(),
|
|
|
|
}
|
|
|
|
return counters
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Counters) Inc(name string) {
|
|
|
|
metrics.GetOrRegisterCounter(name, c.r).Inc(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Counters) Dec(name string) {
|
|
|
|
metrics.GetOrRegisterCounter(name, c.r).Dec(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Counters) IncBy(name string, n int64) {
|
|
|
|
metrics.GetOrRegisterCounter(name, c.r).Inc(n)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Counters) DecBy(name string, n int64) {
|
|
|
|
metrics.GetOrRegisterCounter(name, c.r).Dec(n)
|
|
|
|
}
|
|
|
|
|
2017-07-03 06:42:34 +00:00
|
|
|
// Server ...
|
|
|
|
type Server struct {
|
|
|
|
bind string
|
|
|
|
config Config
|
|
|
|
store *cache.Cache
|
|
|
|
templates *templice.Template
|
|
|
|
router *httprouter.Router
|
2017-07-06 08:33:31 +00:00
|
|
|
|
|
|
|
// Logger
|
|
|
|
logger *logger.Logger
|
|
|
|
|
|
|
|
// Stats/Metrics
|
|
|
|
counters *Counters
|
|
|
|
stats *stats.Stats
|
2017-07-03 06:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) render(w http.ResponseWriter, tmpl string, data interface{}) {
|
|
|
|
err := s.templates.ExecuteTemplate(w, tmpl+".html", data)
|
|
|
|
if err != nil {
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// IndexHandler ...
|
|
|
|
func (s *Server) IndexHandler() httprouter.Handle {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {
|
2017-07-06 08:33:31 +00:00
|
|
|
s.counters.Inc("n_index")
|
|
|
|
|
2017-07-03 08:46:08 +00:00
|
|
|
accepts, err := accept.Negotiate(
|
|
|
|
r.Header.Get("Accept"), AcceptedTypes...,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("error negotiating: %s", err)
|
|
|
|
http.Error(w, "Internal Error", http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
switch accepts {
|
|
|
|
case "text/html":
|
|
|
|
s.render(w, "index", nil)
|
|
|
|
case "text/plain":
|
|
|
|
default:
|
|
|
|
}
|
2017-07-03 06:42:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// PasteHandler ...
|
|
|
|
func (s *Server) PasteHandler() httprouter.Handle {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
|
2017-07-06 08:33:31 +00:00
|
|
|
s.counters.Inc("n_paste")
|
|
|
|
|
2017-07-03 08:46:08 +00:00
|
|
|
var blob string
|
|
|
|
|
|
|
|
body, err := ioutil.ReadAll(r.Body)
|
|
|
|
if err != nil {
|
|
|
|
http.Error(w, "Internal Error", http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
blob = string(body)
|
|
|
|
|
|
|
|
err = r.ParseForm()
|
2017-07-03 06:42:34 +00:00
|
|
|
if err != nil {
|
|
|
|
http.Error(w, "Internal Error", http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-07-03 08:46:08 +00:00
|
|
|
if blob == "" {
|
|
|
|
blob = r.Form.Get("blob")
|
|
|
|
}
|
|
|
|
|
|
|
|
if blob == "" {
|
|
|
|
blob = r.URL.Query().Get("blob")
|
|
|
|
}
|
|
|
|
|
|
|
|
if blob == "" {
|
|
|
|
http.Error(w, "Bad Request", http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-07-03 06:42:34 +00:00
|
|
|
uuid := shortuuid.NewWithNamespace(s.config.fqdn)
|
|
|
|
s.store.Set(uuid, blob, cache.DefaultExpiration)
|
|
|
|
|
2017-07-06 08:33:31 +00:00
|
|
|
u, err := url.Parse(fmt.Sprintf("./view/%s", uuid))
|
2017-07-03 06:42:34 +00:00
|
|
|
if err != nil {
|
|
|
|
http.Error(w, "Internal Error", http.StatusInternalServerError)
|
|
|
|
}
|
|
|
|
http.Redirect(w, r, r.URL.ResolveReference(u).String(), http.StatusFound)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ViewHandler ...
|
|
|
|
func (s *Server) ViewHandler() httprouter.Handle {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
|
2017-07-06 08:33:31 +00:00
|
|
|
s.counters.Inc("n_view")
|
|
|
|
|
2017-07-03 08:46:08 +00:00
|
|
|
accepts, err := accept.Negotiate(
|
|
|
|
r.Header.Get("Accept"), AcceptedTypes...,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("error negotiating: %s", err)
|
|
|
|
http.Error(w, "Internal Error", http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-07-03 06:42:34 +00:00
|
|
|
uuid := p.ByName("uuid")
|
|
|
|
if uuid == "" {
|
|
|
|
http.Error(w, "Bad Request", http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
blob, ok := s.store.Get(uuid)
|
|
|
|
if !ok {
|
|
|
|
http.Error(w, "Not Found", http.StatusNotFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-07-03 08:46:08 +00:00
|
|
|
switch accepts {
|
|
|
|
case "text/html":
|
|
|
|
s.render(w, "view", struct{ Blob string }{Blob: blob.(string)})
|
|
|
|
case "text/plain":
|
|
|
|
w.Write([]byte(blob.(string)))
|
|
|
|
default:
|
|
|
|
w.Write([]byte(blob.(string)))
|
|
|
|
}
|
2017-07-03 06:42:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-06 08:33:31 +00:00
|
|
|
// StatsHandler ...
|
|
|
|
func (s *Server) StatsHandler() httprouter.Handle {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
|
|
|
|
w.Header().Set("Content-Type", "application/json; charset=utf-8")
|
|
|
|
bs, err := json.Marshal(s.stats.Data())
|
|
|
|
if err != nil {
|
|
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
|
|
}
|
|
|
|
w.Write(bs)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-03 06:42:34 +00:00
|
|
|
// ListenAndServe ...
|
|
|
|
func (s *Server) ListenAndServe() {
|
2017-07-06 08:33:31 +00:00
|
|
|
log.Fatal(
|
|
|
|
http.ListenAndServe(
|
|
|
|
s.bind,
|
|
|
|
s.logger.Handler(
|
|
|
|
s.stats.Handler(s.router),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
2017-07-03 06:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) initRoutes() {
|
2017-07-06 08:33:31 +00:00
|
|
|
s.router.Handler("GET", "/debug/metrics", exp.ExpHandler(s.counters.r))
|
|
|
|
s.router.GET("/debug/stats", s.StatsHandler())
|
|
|
|
|
2017-07-03 06:42:34 +00:00
|
|
|
s.router.GET("/", s.IndexHandler())
|
|
|
|
s.router.POST("/", s.PasteHandler())
|
2017-07-06 08:33:31 +00:00
|
|
|
s.router.GET("/view/:uuid", s.ViewHandler())
|
2017-07-03 06:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewServer ...
|
|
|
|
func NewServer(bind string, config Config) *Server {
|
|
|
|
server := &Server{
|
|
|
|
bind: bind,
|
|
|
|
config: config,
|
|
|
|
router: httprouter.New(),
|
2017-07-03 06:57:32 +00:00
|
|
|
store: cache.New(cfg.expiry, cfg.expiry*2),
|
2017-07-03 06:42:34 +00:00
|
|
|
templates: templice.New(rice.MustFindBox("templates")),
|
2017-07-06 08:33:31 +00:00
|
|
|
|
|
|
|
// Logger
|
|
|
|
logger: logger.New(logger.Options{
|
|
|
|
Prefix: "pastebin",
|
|
|
|
RemoteAddressHeaders: []string{"X-Forwarded-For"},
|
|
|
|
OutputFlags: log.LstdFlags,
|
|
|
|
}),
|
|
|
|
|
|
|
|
// Stats/Metrics
|
|
|
|
counters: NewCounters(),
|
|
|
|
stats: stats.New(),
|
2017-07-03 06:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err := server.templates.Load()
|
|
|
|
if err != nil {
|
|
|
|
log.Panicf("error loading templates: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
server.initRoutes()
|
|
|
|
|
|
|
|
return server
|
|
|
|
}
|