nat/main.go

110 lines
2.1 KiB
Go
Raw Normal View History

package main
import (
"database/sql"
2016-06-11 03:33:29 +00:00
"fmt"
"html"
2016-06-11 01:22:19 +00:00
"io"
"io/ioutil"
"net/http"
2016-06-19 00:17:35 +00:00
"github.com/dchest/uniuri"
"github.com/ewhal/pygments"
_ "github.com/mattn/go-sqlite3"
)
2016-06-11 01:22:19 +00:00
const (
ADDRESS = "https://p.pantsu.cat/"
LENGTH = 6
TEXT = "$ <command> | curl -F 'p=<-' " + ADDRESS + "\n"
PORT = ":9900"
2016-06-11 01:22:19 +00:00
)
2016-06-10 14:29:22 +00:00
2016-06-11 03:33:29 +00:00
func check(err error) {
if err != nil {
fmt.Println(err)
}
}
func generateName() string {
2016-06-11 02:31:03 +00:00
s := uniuri.NewLen(LENGTH)
db, err := sql.Open("sqlite3", "./database.db")
check(err)
query, err := db.Query("select id from pastebin")
for query.Next() {
var id string
err := query.Scan(&id)
if err != nil {
}
if id == s {
generateName()
}
2016-06-10 14:29:22 +00:00
}
db.Close()
2016-06-10 14:29:22 +00:00
return s
}
2016-06-11 02:31:03 +00:00
func save(raw []byte) string {
paste := raw[86 : len(raw)-46]
s := generateName()
db, err := sql.Open("sqlite3", "./database.db")
check(err)
stmt, err := db.Prepare("INSERT INTO pastebin(id, data) values(?,?)")
_, err = stmt.Exec(s, html.EscapeString(string(paste)))
check(err)
db.Close()
2016-06-11 01:22:19 +00:00
return s
}
2016-06-10 14:29:22 +00:00
func pasteHandler(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case "GET":
param1 := html.EscapeString(r.URL.Query().Get("p"))
param2 := html.EscapeString(r.URL.Query().Get("lang"))
db, err := sql.Open("sqlite3", "./database.db")
var s string
err = db.QueryRow("select data from pastebin where id=?", param1).Scan(&s)
db.Close()
2016-06-19 02:10:38 +00:00
check(err)
2016-06-11 03:09:28 +00:00
if param1 != "" {
2016-06-19 02:10:38 +00:00
if err == sql.ErrNoRows {
io.WriteString(w, "Error invalid paste")
}
if param2 != "" {
highlight := pygments.Highlight(html.UnescapeString(s), param2, "html", "full, style=autumn,linenos=True, lineanchors=True,anchorlinenos=True,", "utf-8")
io.WriteString(w, highlight)
2016-06-11 03:33:29 +00:00
2016-06-11 03:09:28 +00:00
} else {
io.WriteString(w, html.UnescapeString(s))
2016-06-11 03:09:28 +00:00
}
} else {
2016-06-11 02:31:03 +00:00
io.WriteString(w, TEXT)
}
2016-06-10 14:29:22 +00:00
case "POST":
2016-06-11 02:22:22 +00:00
buf, err := ioutil.ReadAll(r.Body)
2016-06-11 03:33:29 +00:00
if err != nil {
http.Error(w, err.Error(), 500)
}
name := save(buf)
io.WriteString(w, ADDRESS+"?p="+name+"\n")
2016-06-10 14:29:22 +00:00
case "DELETE":
// Remove the record.
}
}
func main() {
http.HandleFunc("/", pasteHandler)
2016-06-11 02:31:03 +00:00
err := http.ListenAndServe(PORT, nil)
2016-06-11 03:33:29 +00:00
if err != nil {
panic(err)
}
}