Replace sqlite with mysql

This commit is contained in:
Eliot Whalan 2016-06-19 16:27:54 +10:00
parent 4fb704c002
commit 1b342f9976
No known key found for this signature in database
GPG Key ID: C0A42175139840D6
1 changed files with 14 additions and 7 deletions

13
main.go
View File

@ -13,10 +13,12 @@ import (
"log" "log"
"net/http" "net/http"
"database/sql"
"github.com/dchest/uniuri" "github.com/dchest/uniuri"
"github.com/ewhal/pygments" "github.com/ewhal/pygments"
_ "github.com/go-sql-driver/mysql"
"github.com/gorilla/mux" "github.com/gorilla/mux"
_ "github.com/mattn/go-sqlite3"
) )
const ( const (
@ -24,6 +26,10 @@ const (
LENGTH = 6 LENGTH = 6
TEXT = "$ <command> | curl -F 'p=<-' " + ADDRESS + "\n" TEXT = "$ <command> | curl -F 'p=<-' " + ADDRESS + "\n"
PORT = ":9900" PORT = ":9900"
USERNAME = ""
PASS = ""
NAME = ""
DATABASE = USERNAME + ":" + PASS + "@/" + NAME + "?charset=utf8"
) )
type Response struct { type Response struct {
@ -42,7 +48,7 @@ func check(err error) {
func generateName() string { func generateName() string {
s := uniuri.NewLen(LENGTH) s := uniuri.NewLen(LENGTH)
db, err := sql.Open("sqlite3", "./database.db") db, err := sql.Open("mysql", DATABASE)
check(err) check(err)
query, err := db.Query("select id from pastebin") query, err := db.Query("select id from pastebin")
@ -131,7 +137,8 @@ func saveHandler(w http.ResponseWriter, r *http.Request) {
w.Write(x) w.Write(x)
default: default:
io.WriteString(w, values[2]+"\n") io.WriteString(w, b.URL+"\n")
io.WriteString(w, "delete key: "+b.DELKEY+"\n")
} }
} }