api: run go fmt

This commit is contained in:
Adhityaa 2018-06-16 19:00:03 +05:30
parent 816b0ec6f3
commit 590e878679
2 changed files with 26 additions and 26 deletions

View File

@ -16,9 +16,9 @@ func parseConfig() error {
defaults := map[string]string{ defaults := map[string]string{
"POSTGRES": "postgres://postgres:postgres@localhost/commento?sslmode=disable", "POSTGRES": "postgres://postgres:postgres@localhost/commento?sslmode=disable",
"BIND_ADDRESS": "127.0.0.1", "BIND_ADDRESS": "127.0.0.1",
"PORT": "8080", "PORT": "8080",
"ORIGIN": "", "ORIGIN": "",
"CDN_PREFIX": "", "CDN_PREFIX": "",

View File

@ -1,27 +1,27 @@
package main package main
import ( import (
"time"
"io/ioutil"
"net/http"
"compress/gzip" "compress/gzip"
"encoding/xml" "encoding/xml"
"io/ioutil"
"net/http"
"time"
// "github.com/grokify/html-strip-tags-go" // "github.com/grokify/html-strip-tags-go"
"github.com/lunny/html2md" "github.com/lunny/html2md"
) )
type disqusThread struct { type disqusThread struct {
XMLName xml.Name `xml:"thread"` XMLName xml.Name `xml:"thread"`
Id string `xml:"http://disqus.com/disqus-internals id,attr"` Id string `xml:"http://disqus.com/disqus-internals id,attr"`
URL string `xml:"link"` URL string `xml:"link"`
Name string `xml:"name"` Name string `xml:"name"`
} }
type disqusAuthor struct { type disqusAuthor struct {
XMLName xml.Name `xml:"author"` XMLName xml.Name `xml:"author"`
IsAnonymous bool `xml:"isAnonymous"` IsAnonymous bool `xml:"isAnonymous"`
Name string `xml:"name"` Name string `xml:"name"`
Email string `xml:"email"` Email string `xml:"email"`
} }
type disqusThreadId struct { type disqusThreadId struct {
@ -40,22 +40,22 @@ type disqusPostId struct {
} }
type disqusPost struct { type disqusPost struct {
XMLName xml.Name `xml:"post"` XMLName xml.Name `xml:"post"`
Id string `xml:"http://disqus.com/disqus-internals id,attr"` Id string `xml:"http://disqus.com/disqus-internals id,attr"`
ThreadId disqusThreadId `xml:"thread"` ThreadId disqusThreadId `xml:"thread"`
ParentId disqusParentId `xml:"parent"` ParentId disqusParentId `xml:"parent"`
PostId disqusPostId `xml:"post"` PostId disqusPostId `xml:"post"`
Message string `xml:"message"` Message string `xml:"message"`
CreationDate time.Time `xml:"createdAt"` CreationDate time.Time `xml:"createdAt"`
IsDeleted bool `xml:"isDeleted"` IsDeleted bool `xml:"isDeleted"`
IsSpam bool `xml:"isSpam"` IsSpam bool `xml:"isSpam"`
Author disqusAuthor `xml:"author"` Author disqusAuthor `xml:"author"`
} }
type disqusXML struct { type disqusXML struct {
XMLName xml.Name `xml:"disqus"` XMLName xml.Name `xml:"disqus"`
Threads []disqusThread `xml:"thread"` Threads []disqusThread `xml:"thread"`
Posts []disqusPost `xml:"post"` Posts []disqusPost `xml:"post"`
} }
func domainImportDisqus(domain string, url string) (int, error) { func domainImportDisqus(domain string, url string) (int, error) {
@ -170,8 +170,8 @@ func domainImportDisqus(domain string, url string) (int, error) {
func domainImportDisqusHandler(w http.ResponseWriter, r *http.Request) { func domainImportDisqusHandler(w http.ResponseWriter, r *http.Request) {
type request struct { type request struct {
Session *string `json:"session"` Session *string `json:"session"`
Domain *string `json:"domain"` Domain *string `json:"domain"`
URL *string `json:"url"` URL *string `json:"url"`
} }
var x request var x request