no longer pass base64 encoding to handlers
This commit is contained in:
parent
9f1c4dd9e6
commit
08fbba0e0a
3 changed files with 4 additions and 7 deletions
5
main.go
5
main.go
|
@ -2,7 +2,6 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"embed"
|
"embed"
|
||||||
"encoding/base64"
|
|
||||||
"errors"
|
"errors"
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
@ -37,12 +36,12 @@ func run() error {
|
||||||
mux.Handle(
|
mux.Handle(
|
||||||
"POST /api/password",
|
"POST /api/password",
|
||||||
middlewares.RateLimiter(
|
middlewares.RateLimiter(
|
||||||
routes.CreatePassword(storage, maxPasswordLength, base64.StdEncoding),
|
routes.CreatePassword(storage, maxPasswordLength),
|
||||||
1*time.Minute,
|
1*time.Minute,
|
||||||
5,
|
5,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
mux.Handle("GET /api/password/{id}", routes.GetPassword(storage, base64.StdEncoding))
|
mux.Handle("GET /api/password/{id}", routes.GetPassword(storage))
|
||||||
mux.Handle("HEAD /api/password/{id}", routes.HasPassword(storage))
|
mux.Handle("HEAD /api/password/{id}", routes.HasPassword(storage))
|
||||||
|
|
||||||
if logRequests {
|
if logRequests {
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
package routes
|
package routes
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/base64"
|
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"net/http"
|
"net/http"
|
||||||
"time"
|
"time"
|
||||||
|
@ -9,7 +8,7 @@ import (
|
||||||
"git.1e99.eu/1e99/passed/storage"
|
"git.1e99.eu/1e99/passed/storage"
|
||||||
)
|
)
|
||||||
|
|
||||||
func CreatePassword(store storage.Store, maxLength int, encoding *base64.Encoding) http.HandlerFunc {
|
func CreatePassword(store storage.Store, maxLength int) http.HandlerFunc {
|
||||||
return func(res http.ResponseWriter, req *http.Request) {
|
return func(res http.ResponseWriter, req *http.Request) {
|
||||||
var reqBody struct {
|
var reqBody struct {
|
||||||
// Go automatically decodes byte arrays using Base64
|
// Go automatically decodes byte arrays using Base64
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
package routes
|
package routes
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/base64"
|
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"git.1e99.eu/1e99/passed/storage"
|
"git.1e99.eu/1e99/passed/storage"
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetPassword(store storage.Store, encoding *base64.Encoding) http.HandlerFunc {
|
func GetPassword(store storage.Store) http.HandlerFunc {
|
||||||
return func(res http.ResponseWriter, req *http.Request) {
|
return func(res http.ResponseWriter, req *http.Request) {
|
||||||
id := req.PathValue("id")
|
id := req.PathValue("id")
|
||||||
password, err := store.Get(id)
|
password, err := store.Get(id)
|
||||||
|
|
Loading…
Add table
Reference in a new issue