transfer.sh/server/handlers.go

619 lines
15 KiB
Go
Raw Normal View History

2014-10-16 20:01:43 +02:00
/*
The MIT License (MIT)
Copyright (c) 2014 DutchCoders [https://github.com/dutchcoders/]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
package server
2014-10-16 20:01:43 +02:00
import (
// _ "transfer.sh/app/handlers"
// _ "transfer.sh/app/utils"
"archive/tar"
"archive/zip"
"bytes"
"compress/gzip"
"errors"
"fmt"
"html"
2014-10-20 14:54:42 +02:00
html_template "html/template"
2014-10-16 20:01:43 +02:00
"io"
"io/ioutil"
"log"
"math/rand"
"mime"
"net/http"
"net/url"
2014-10-16 20:01:43 +02:00
"os"
"path"
2014-10-16 20:01:43 +02:00
"path/filepath"
2014-10-20 14:54:42 +02:00
"strconv"
2014-10-16 20:01:43 +02:00
"strings"
text_template "text/template"
2014-10-20 14:54:42 +02:00
"time"
2016-01-14 09:33:02 +01:00
"net"
web "github.com/dutchcoders/transfer.sh-web"
2016-01-14 09:33:02 +01:00
"github.com/gorilla/mux"
"github.com/kennygrant/sanitize"
"github.com/russross/blackfriday"
2014-10-16 20:01:43 +02:00
)
var (
2017-03-22 22:25:42 +01:00
htmlTemplates = initHTMLTemplates()
textTemplates = initTextTemplates()
)
func stripPrefix(path string) string {
return strings.Replace(path, web.Prefix+"/", "", -1)
}
func initTextTemplates() *text_template.Template {
templateMap := text_template.FuncMap{"format": formatNumber}
// Templates with functions available to them
var templates = text_template.New("").Funcs(templateMap)
return templates
}
func initHTMLTemplates() *html_template.Template {
templateMap := html_template.FuncMap{"format": formatNumber}
// Templates with functions available to them
var templates = html_template.New("").Funcs(templateMap)
return templates
}
2014-10-16 20:01:43 +02:00
func healthHandler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Approaching Neutral Zone, all systems normal and functioning.")
}
/* The preview handler will show a preview of the content for browsers (accept type text/html), and referer is not transfer.sh */
func (s *Server) previewHandler(w http.ResponseWriter, r *http.Request) {
2014-10-16 20:01:43 +02:00
vars := mux.Vars(r)
token := vars["token"]
filename := vars["filename"]
2017-03-22 22:27:26 +01:00
contentType, contentLength, err := s.storage.Head(token, filename)
if err != nil {
http.Error(w, http.StatusText(404), 404)
return
}
2014-10-16 20:01:43 +02:00
var templatePath string
var content html_template.HTML
2014-10-16 20:01:43 +02:00
switch {
case strings.HasPrefix(contentType, "image/"):
templatePath = "download.image.html"
case strings.HasPrefix(contentType, "video/"):
templatePath = "download.video.html"
case strings.HasPrefix(contentType, "audio/"):
templatePath = "download.audio.html"
case strings.HasPrefix(contentType, "text/"):
templatePath = "download.markdown.html"
var reader io.ReadCloser
2017-03-22 22:27:26 +01:00
if reader, _, _, err = s.storage.Get(token, filename); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
2014-10-16 20:01:43 +02:00
var data []byte
if data, err = ioutil.ReadAll(reader); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
2014-10-16 20:01:43 +02:00
}
if strings.HasPrefix(contentType, "text/x-markdown") || strings.HasPrefix(contentType, "text/markdown") {
output := blackfriday.MarkdownCommon(data)
content = html_template.HTML(output)
} else if strings.HasPrefix(contentType, "text/plain") {
content = html_template.HTML(fmt.Sprintf("<pre>%s</pre>", html.EscapeString(string(data))))
} else {
2016-01-14 09:33:02 +01:00
templatePath = "download.sandbox.html"
}
default:
templatePath = "download.html"
2014-10-16 20:01:43 +02:00
}
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
data := struct {
ContentType string
Content html_template.HTML
Filename string
Url string
ContentLength uint64
}{
contentType,
content,
filename,
r.URL.String(),
contentLength,
}
2017-03-22 22:25:42 +01:00
if err := htmlTemplates.ExecuteTemplate(w, templatePath, data); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
}
// this handler will output html or text, depending on the
// support of the client (Accept header).
func (s *Server) viewHandler(w http.ResponseWriter, r *http.Request) {
// vars := mux.Vars(r)
2017-03-22 21:09:40 +01:00
if acceptsHTML(r.Header) {
2017-03-22 22:25:42 +01:00
if err := htmlTemplates.ExecuteTemplate(w, "index.html", nil); err != nil {
2014-10-16 20:01:43 +02:00
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
} else {
2017-03-22 22:25:42 +01:00
if err := textTemplates.ExecuteTemplate(w, "index.txt", nil); err != nil {
2014-10-16 20:01:43 +02:00
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
}
}
func (s *Server) notFoundHandler(w http.ResponseWriter, r *http.Request) {
2014-10-20 14:54:42 +02:00
http.Error(w, http.StatusText(404), 404)
2014-10-16 20:01:43 +02:00
}
func (s *Server) postHandler(w http.ResponseWriter, r *http.Request) {
2014-10-16 20:01:43 +02:00
if err := r.ParseMultipartForm(_24K); nil != err {
log.Printf("%s", err.Error())
2016-08-10 20:50:36 +02:00
http.Error(w, "Error occurred copying to output stream", 500)
2014-10-16 20:01:43 +02:00
return
}
token := Encode(10000000 + int64(rand.Intn(1000000000)))
w.Header().Set("Content-Type", "text/plain")
for _, fheaders := range r.MultipartForm.File {
for _, fheader := range fheaders {
filename := sanitize.Path(filepath.Base(fheader.Filename))
contentType := fheader.Header.Get("Content-Type")
if contentType == "" {
contentType = mime.TypeByExtension(filepath.Ext(fheader.Filename))
}
var f io.Reader
var err error
if f, err = fheader.Open(); err != nil {
log.Printf("%s", err.Error())
2014-10-16 20:01:43 +02:00
http.Error(w, err.Error(), 500)
return
}
var b bytes.Buffer
n, err := io.CopyN(&b, f, _24K+1)
if err != nil && err != io.EOF {
log.Printf("%s", err.Error())
2014-10-16 20:01:43 +02:00
http.Error(w, err.Error(), 500)
return
}
var reader io.Reader
if n > _24K {
file, err := ioutil.TempFile(s.tempPath, "transfer-")
2014-10-16 20:01:43 +02:00
if err != nil {
log.Fatal(err)
}
defer file.Close()
n, err = io.Copy(file, io.MultiReader(&b, f))
if err != nil {
os.Remove(file.Name())
log.Printf("%s", err.Error())
2014-10-16 20:01:43 +02:00
http.Error(w, err.Error(), 500)
return
}
reader, err = os.Open(file.Name())
} else {
reader = bytes.NewReader(b.Bytes())
}
contentLength := n
log.Printf("Uploading %s %s %d %s", token, filename, contentLength, contentType)
2014-10-16 20:01:43 +02:00
2017-03-22 22:27:26 +01:00
if err = s.storage.Put(token, filename, reader, contentType, uint64(contentLength)); err != nil {
log.Printf("Backend storage error: %s", err.Error())
2014-10-16 20:01:43 +02:00
http.Error(w, err.Error(), 500)
return
}
relativeURL, _ := url.Parse(path.Join(token, filename))
fmt.Fprint(w, getURL(r).ResolveReference(relativeURL).String())
2014-10-16 20:01:43 +02:00
}
}
}
func (s *Server) putHandler(w http.ResponseWriter, r *http.Request) {
2014-10-16 20:01:43 +02:00
vars := mux.Vars(r)
filename := sanitize.Path(filepath.Base(vars["filename"]))
contentLength := r.ContentLength
var reader io.Reader
reader = r.Body
if contentLength == -1 {
// queue file to disk, because s3 needs content length
var err error
var f io.Reader
f = reader
var b bytes.Buffer
n, err := io.CopyN(&b, f, _24K+1)
if err != nil && err != io.EOF {
log.Printf("Error putting new file: %s", err.Error())
2014-10-16 20:01:43 +02:00
http.Error(w, err.Error(), 500)
return
}
if n > _24K {
file, err := ioutil.TempFile(s.tempPath, "transfer-")
2014-10-16 20:01:43 +02:00
if err != nil {
log.Printf("%s", err.Error())
2014-10-16 20:01:43 +02:00
http.Error(w, err.Error(), 500)
return
}
defer file.Close()
n, err = io.Copy(file, io.MultiReader(&b, f))
if err != nil {
os.Remove(file.Name())
log.Printf("%s", err.Error())
2014-10-16 20:01:43 +02:00
http.Error(w, err.Error(), 500)
return
}
reader, err = os.Open(file.Name())
} else {
reader = bytes.NewReader(b.Bytes())
}
contentLength = n
}
contentType := r.Header.Get("Content-Type")
if contentType == "" {
contentType = mime.TypeByExtension(filepath.Ext(vars["filename"]))
}
2014-10-20 14:54:42 +02:00
token := Encode(10000000 + int64(rand.Intn(1000000000)))
2014-10-16 20:01:43 +02:00
2016-01-29 16:40:04 +01:00
log.Printf("Uploading %s %s %d %s", token, filename, contentLength, contentType)
2014-10-16 20:01:43 +02:00
var err error
2017-03-22 22:27:26 +01:00
if err = s.storage.Put(token, filename, reader, contentType, uint64(contentLength)); err != nil {
log.Printf("Error putting new file: %s", err.Error())
2014-10-16 20:01:43 +02:00
http.Error(w, errors.New("Could not save file").Error(), 500)
return
}
// w.Statuscode = 200
w.Header().Set("Content-Type", "text/plain")
relativeURL, _ := url.Parse(path.Join(token, filename))
fmt.Fprint(w, getURL(r).ResolveReference(relativeURL).String())
}
func getURL(r *http.Request) *url.URL {
u := *r.URL
if r.TLS != nil {
u.Scheme = "https"
} else if proto := r.Header.Get("X-Forwarded-Proto"); proto != "" {
u.Scheme = proto
} else {
u.Scheme = "http"
}
if u.Host != "" {
} else if host, port, err := net.SplitHostPort(r.Host); err != nil {
} else {
if port == "80" && u.Scheme == "http" {
u.Host = host
} else if port == "443" && u.Scheme == "https" {
u.Host = host
} else {
u.Host = net.JoinHostPort(host, port)
}
}
return &u
2014-10-16 20:01:43 +02:00
}
func (s *Server) zipHandler(w http.ResponseWriter, r *http.Request) {
2014-10-16 20:01:43 +02:00
vars := mux.Vars(r)
files := vars["files"]
zipfilename := fmt.Sprintf("transfersh-%d.zip", uint16(time.Now().UnixNano()))
2014-10-16 20:01:43 +02:00
w.Header().Set("Content-Type", "application/zip")
w.Header().Set("Content-Disposition", fmt.Sprintf("attachment; filename=\"%s\"", zipfilename))
2014-10-16 20:01:43 +02:00
w.Header().Set("Connection", "close")
zw := zip.NewWriter(w)
for _, key := range strings.Split(files, ",") {
if strings.HasPrefix(key, "/") {
key = key[1:]
}
key = strings.Replace(key, "\\", "/", -1)
token := strings.Split(key, "/")[0]
2014-10-20 14:54:42 +02:00
filename := sanitize.Path(strings.Split(key, "/")[1])
2017-03-22 22:27:26 +01:00
reader, _, _, err := s.storage.Get(token, filename)
2014-10-16 20:01:43 +02:00
if err != nil {
2017-03-22 22:27:26 +01:00
if s.storage.IsNotExist(err) {
2014-10-16 20:01:43 +02:00
http.Error(w, "File not found", 404)
return
} else {
log.Printf("%s", err.Error())
http.Error(w, "Could not retrieve file.", 500)
return
}
}
2014-10-20 14:54:42 +02:00
defer reader.Close()
2014-10-16 20:01:43 +02:00
header := &zip.FileHeader{
Name: strings.Split(key, "/")[1],
Method: zip.Store,
ModifiedTime: uint16(time.Now().UnixNano()),
ModifiedDate: uint16(time.Now().UnixNano()),
}
fw, err := zw.CreateHeader(header)
if err != nil {
log.Printf("%s", err.Error())
http.Error(w, "Internal server error.", 500)
return
}
if _, err = io.Copy(fw, reader); err != nil {
2014-10-16 20:01:43 +02:00
log.Printf("%s", err.Error())
http.Error(w, "Internal server error.", 500)
return
}
}
if err := zw.Close(); err != nil {
log.Printf("%s", err.Error())
http.Error(w, "Internal server error.", 500)
return
}
}
func (s *Server) tarGzHandler(w http.ResponseWriter, r *http.Request) {
2014-10-16 20:01:43 +02:00
vars := mux.Vars(r)
files := vars["files"]
tarfilename := fmt.Sprintf("transfersh-%d.tar.gz", uint16(time.Now().UnixNano()))
2014-10-16 20:01:43 +02:00
w.Header().Set("Content-Type", "application/x-gzip")
w.Header().Set("Content-Disposition", fmt.Sprintf("attachment; filename=\"%s\"", tarfilename))
2014-10-16 20:01:43 +02:00
w.Header().Set("Connection", "close")
os := gzip.NewWriter(w)
defer os.Close()
zw := tar.NewWriter(os)
defer zw.Close()
for _, key := range strings.Split(files, ",") {
if strings.HasPrefix(key, "/") {
key = key[1:]
}
key = strings.Replace(key, "\\", "/", -1)
2014-10-20 14:54:42 +02:00
token := strings.Split(key, "/")[0]
filename := sanitize.Path(strings.Split(key, "/")[1])
2017-03-22 22:27:26 +01:00
reader, _, contentLength, err := s.storage.Get(token, filename)
2014-10-16 20:01:43 +02:00
if err != nil {
2017-03-22 22:27:26 +01:00
if s.storage.IsNotExist(err) {
2014-10-16 20:01:43 +02:00
http.Error(w, "File not found", 404)
return
} else {
log.Printf("%s", err.Error())
http.Error(w, "Could not retrieve file.", 500)
return
}
}
2014-10-20 14:54:42 +02:00
defer reader.Close()
2014-10-16 20:01:43 +02:00
header := &tar.Header{
Name: strings.Split(key, "/")[1],
Size: int64(contentLength),
}
err = zw.WriteHeader(header)
if err != nil {
log.Printf("%s", err.Error())
http.Error(w, "Internal server error.", 500)
return
}
if _, err = io.Copy(zw, reader); err != nil {
2014-10-16 20:01:43 +02:00
log.Printf("%s", err.Error())
http.Error(w, "Internal server error.", 500)
return
}
}
}
func (s *Server) tarHandler(w http.ResponseWriter, r *http.Request) {
2014-10-16 20:01:43 +02:00
vars := mux.Vars(r)
files := vars["files"]
tarfilename := fmt.Sprintf("transfersh-%d.tar", uint16(time.Now().UnixNano()))
2014-10-16 20:01:43 +02:00
w.Header().Set("Content-Type", "application/x-tar")
w.Header().Set("Content-Disposition", fmt.Sprintf("attachment; filename=\"%s\"", tarfilename))
2014-10-16 20:01:43 +02:00
w.Header().Set("Connection", "close")
zw := tar.NewWriter(w)
defer zw.Close()
for _, key := range strings.Split(files, ",") {
2014-10-20 14:54:42 +02:00
token := strings.Split(key, "/")[0]
filename := strings.Split(key, "/")[1]
2017-03-22 22:27:26 +01:00
reader, _, contentLength, err := s.storage.Get(token, filename)
2014-10-16 20:01:43 +02:00
if err != nil {
2017-03-22 22:27:26 +01:00
if s.storage.IsNotExist(err) {
2014-10-16 20:01:43 +02:00
http.Error(w, "File not found", 404)
return
} else {
log.Printf("%s", err.Error())
http.Error(w, "Could not retrieve file.", 500)
return
}
}
2014-10-20 14:54:42 +02:00
defer reader.Close()
2014-10-16 20:01:43 +02:00
header := &tar.Header{
Name: strings.Split(key, "/")[1],
Size: int64(contentLength),
}
err = zw.WriteHeader(header)
if err != nil {
log.Printf("%s", err.Error())
http.Error(w, "Internal server error.", 500)
return
}
if _, err = io.Copy(zw, reader); err != nil {
2014-10-16 20:01:43 +02:00
log.Printf("%s", err.Error())
http.Error(w, "Internal server error.", 500)
return
}
}
}
func (s *Server) getHandler(w http.ResponseWriter, r *http.Request) {
2014-10-16 20:01:43 +02:00
vars := mux.Vars(r)
token := vars["token"]
filename := vars["filename"]
2017-03-22 22:27:26 +01:00
reader, contentType, contentLength, err := s.storage.Get(token, filename)
2014-10-16 20:01:43 +02:00
if err != nil {
2017-03-22 22:27:26 +01:00
if s.storage.IsNotExist(err) {
2014-10-16 20:01:43 +02:00
http.Error(w, "File not found", 404)
return
} else {
log.Printf("%s", err.Error())
http.Error(w, "Could not retrieve file.", 500)
return
}
}
2014-10-20 14:54:42 +02:00
defer reader.Close()
2014-10-16 20:01:43 +02:00
w.Header().Set("Content-Type", contentType)
2014-10-20 14:54:42 +02:00
w.Header().Set("Content-Length", strconv.FormatUint(contentLength, 10))
w.Header().Set("Content-Disposition", fmt.Sprintf("attachment; filename=\"%s\"", filename))
2014-10-16 20:01:43 +02:00
w.Header().Set("Connection", "close")
if _, err = io.Copy(w, reader); err != nil {
log.Printf("%s", err.Error())
2016-08-10 20:50:36 +02:00
http.Error(w, "Error occurred copying to output stream", 500)
2014-10-16 20:01:43 +02:00
return
}
}
func (s *Server) RedirectHandler(h http.Handler) http.HandlerFunc {
2014-10-16 20:01:43 +02:00
return func(w http.ResponseWriter, r *http.Request) {
if !s.forceHTTPs {
// we don't want to enforce https
} else if r.URL.Path == "/health.html" {
// health check url won't redirect
} else if strings.HasSuffix(ipAddrFromRemoteAddr(r.Host), ".onion") {
// .onion addresses cannot get a valid certificate, so don't redirect
} else if r.Header.Get("X-Forwarded-Proto") == "https" {
} else if r.URL.Scheme == "https" {
} else {
u := *r.URL
u.Scheme = "https"
http.Redirect(w, r, u.String(), http.StatusPermanentRedirect)
2014-10-16 20:01:43 +02:00
return
}
h.ServeHTTP(w, r)
}
}
// Create a log handler for every request it receives.
func LoveHandler(h http.Handler) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("x-made-with", "<3 by DutchCoders")
w.Header().Set("x-served-by", "Proudly served by DutchCoders")
w.Header().Set("Server", "Transfer.sh HTTP Server 1.0")
h.ServeHTTP(w, r)
}
}