api: run go fmt

This commit is contained in:
Adhityaa 2018-06-10 23:13:42 +05:30
parent 42a58f1d87
commit 8b0d198934
10 changed files with 27 additions and 28 deletions

View File

@ -32,7 +32,7 @@ func commenterNew(email string, name string, link string, photo string, provider
} }
passwordHash := []byte{} passwordHash := []byte{}
if (password != "") { if password != "" {
passwordHash, err = bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost) passwordHash, err = bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
if err != nil { if err != nil {
logger.Errorf("cannot generate hash from password: %v\n", err) logger.Errorf("cannot generate hash from password: %v\n", err)
@ -54,7 +54,6 @@ func commenterNew(email string, name string, link string, photo string, provider
return commenterHex, nil return commenterHex, nil
} }
func commenterNewHandler(w http.ResponseWriter, r *http.Request) { func commenterNewHandler(w http.ResponseWriter, r *http.Request) {
type request struct { type request struct {
Email *string `json:"email"` Email *string `json:"email"`

View File

@ -2,8 +2,8 @@ package main
import ( import (
"os" "os"
"strings"
"path/filepath" "path/filepath"
"strings"
) )
func parseConfig() error { func parseConfig() error {

View File

@ -2,8 +2,8 @@ package main
import ( import (
"os" "os"
"testing"
"path/filepath" "path/filepath"
"testing"
) )
func TestParseConfigBasics(t *testing.T) { func TestParseConfigBasics(t *testing.T) {

View File

@ -37,7 +37,7 @@ func googleOauthConfigure() error {
Endpoint: google.Endpoint, Endpoint: google.Endpoint,
} }
configuredOauths = append(configuredOauths, "google"); configuredOauths = append(configuredOauths, "google")
return nil return nil
} }

View File

@ -6,10 +6,10 @@ import (
"github.com/gorilla/mux" "github.com/gorilla/mux"
"html/template" "html/template"
"io/ioutil" "io/ioutil"
"mime"
"net/http" "net/http"
"os" "os"
"path" "path"
"mime"
) )
func redirectLogin(w http.ResponseWriter, r *http.Request) { func redirectLogin(w http.ResponseWriter, r *http.Request) {
@ -52,7 +52,7 @@ func initStaticRouter(router *mux.Router) error {
prefix += "window.commento_cdn='" + os.Getenv("CDN_PREFIX") + "';\n" prefix += "window.commento_cdn='" + os.Getenv("CDN_PREFIX") + "';\n"
} }
asset[p] = prefix + string(contents); asset[p] = prefix + string(contents)
router.HandleFunc(p, func(w http.ResponseWriter, r *http.Request) { router.HandleFunc(p, func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", mime.TypeByExtension(path.Ext(r.URL.Path))) w.Header().Set("Content-Type", mime.TypeByExtension(path.Ext(r.URL.Path)))

View File

@ -1,9 +1,9 @@
package main package main
import ( import (
"os"
"fmt" "fmt"
"html/template" "html/template"
"os"
) )
var headerTemplate *template.Template var headerTemplate *template.Template