Fix up minor bugs and add more features
This commit is contained in:
parent
e17249cbe6
commit
a32b275cd5
39
main.go
39
main.go
|
@ -1,8 +1,11 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
|
"github.com/dchest/uniuri"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"os"
|
||||||
)
|
)
|
||||||
|
|
||||||
func check(e error) {
|
func check(e error) {
|
||||||
|
@ -11,15 +14,45 @@ func check(e error) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func exists(location string) bool {
|
||||||
|
if _, err := os.Stat(location); err != nil {
|
||||||
|
if os.IsNotExist(err) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func generateName() string {
|
||||||
|
s := uniuri.NewLen(4)
|
||||||
|
return s
|
||||||
|
|
||||||
|
}
|
||||||
|
func save(buf []byte) string {
|
||||||
|
paste := buf[92 : len(buf)-46]
|
||||||
|
address := "localhost:8080/p/"
|
||||||
|
|
||||||
|
dir := "/tmp/"
|
||||||
|
s := generateName()
|
||||||
|
loc := dir + s
|
||||||
|
|
||||||
|
err := ioutil.WriteFile(loc, paste, 0644)
|
||||||
|
check(err)
|
||||||
|
|
||||||
|
url := address + s
|
||||||
|
return url
|
||||||
|
}
|
||||||
|
|
||||||
func pasteHandler(w http.ResponseWriter, req *http.Request) {
|
func pasteHandler(w http.ResponseWriter, req *http.Request) {
|
||||||
buf, _ := ioutil.ReadAll(req.Body)
|
buf, _ := ioutil.ReadAll(req.Body)
|
||||||
paste := buf[89 : len(buf)-46]
|
fmt.Fprintf(w, save(buf))
|
||||||
err := ioutil.WriteFile("/tmp/dat1", paste, 0644)
|
|
||||||
check(err)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
http.HandleFunc("/", pasteHandler)
|
http.HandleFunc("/", pasteHandler)
|
||||||
|
http.Handle("/p/", http.StripPrefix("/p/", http.FileServer(http.Dir("/tmp"))))
|
||||||
|
|
||||||
http.ListenAndServe(":8080", nil)
|
http.ListenAndServe(":8080", nil)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue