autofix: format code with gofumpt and gofmt (#6803)

Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
pull/6811/head
deepsource-autofix[bot] 2022-03-06 17:55:17 +08:00 committed by GitHub
parent 2466da4e82
commit e452d94fc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 21 additions and 18 deletions

View File

@ -1,3 +1,4 @@
//go:build pam
// +build pam
// Copyright 2014 The Gogs Authors. All rights reserved.

View File

@ -42,8 +42,10 @@ portable among all supported database engines.`,
},
}
const currentBackupFormatVersion = 1
const archiveRootDir = "gogs-backup"
const (
currentBackupFormatVersion = 1
archiveRootDir = "gogs-backup"
)
func runBackup(c *cli.Context) error {
zip.Verbose = c.Bool("verbose")

View File

@ -1,3 +1,4 @@
//go:build cert
// +build cert
// Copyright 2009 The Go Authors. All rights reserved.

View File

@ -456,7 +456,6 @@ func runWeb(c *cli.Context) error {
Post(bindIgnErr(form.AddSSHKey{}), repo.SettingsDeployKeysPost)
m.Post("/delete", repo.DeleteDeployKey)
})
}, func(c *context.Context) {
c.Data["PageIsSettings"] = true
})
@ -734,7 +733,8 @@ func runWeb(c *cli.Context) error {
tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,
tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
},
}, Handler: m}
}, Handler: m,
}
err = server.ListenAndServeTLS(conf.Server.CertFile, conf.Server.KeyFile)
case "fcgi":

View File

@ -1,3 +1,4 @@
//go:build minwinsvc
// +build minwinsvc
// Copyright 2015 The Gogs Authors. All rights reserved.

View File

@ -83,7 +83,7 @@ func getEngine() (*xorm.Engine, error) {
connStr = fmt.Sprintf("%s:%s@tcp(%s)/%s%scharset=utf8mb4&parseTime=true",
conf.Database.User, conf.Database.Password, conf.Database.Host, conf.Database.Name, Param)
}
var engineParams = map[string]string{"rowFormat": "DYNAMIC"}
engineParams := map[string]string{"rowFormat": "DYNAMIC"}
return xorm.NewEngineWithParams(conf.Database.Type, connStr, engineParams)
case "postgres":

View File

@ -41,6 +41,7 @@ func Test_perms(t *testing.T) {
})
}
}
func test_perms_AccessMode(t *testing.T, db *perms) {
// Set up permissions
err := db.SetRepoPerms(1, map[int64]AccessMode{

View File

@ -18,7 +18,7 @@ const (
DingtalkNotificationTitle = "Gogs Notification"
)
//Refer: https://open-doc.dingtalk.com/docs/doc.htm?treeId=257&articleId=105735&docType=1
// Refer: https://open-doc.dingtalk.com/docs/doc.htm?treeId=257&articleId=105735&docType=1
type DingtalkActionCard struct {
Title string `json:"title"`
Text string `json:"text"`
@ -28,13 +28,13 @@ type DingtalkActionCard struct {
SingleURL string `json:"singleURL"`
}
//Refer: https://open-doc.dingtalk.com/docs/doc.htm?treeId=257&articleId=105735&docType=1
// Refer: https://open-doc.dingtalk.com/docs/doc.htm?treeId=257&articleId=105735&docType=1
type DingtalkAtObject struct {
AtMobiles []string `json:"atMobiles"`
IsAtAll bool `json:"isAtAll"`
}
//Refer: https://open-doc.dingtalk.com/docs/doc.htm?treeId=257&articleId=105735&docType=1
// Refer: https://open-doc.dingtalk.com/docs/doc.htm?treeId=257&articleId=105735&docType=1
type DingtalkPayload struct {
MsgType string `json:"msgtype"`
At DingtalkAtObject `json:"at"`
@ -57,7 +57,7 @@ func NewDingtalkActionCard(singleTitle, singleURL string) DingtalkActionCard {
}
}
//TODO: add content
// TODO: add content
func GetDingtalkPayload(p api.Payloader, event HookEventType) (payload *DingtalkPayload, err error) {
switch event {
case HOOK_EVENT_CREATE:
@ -255,7 +255,7 @@ func getDingtalkReleasePayload(p *api.ReleasePayload) (*DingtalkPayload, error)
return &DingtalkPayload{MsgType: "actionCard", ActionCard: actionCard}, nil
}
//Format link addr and title into markdown style
// Format link addr and title into markdown style
func MarkdownLinkFormatter(link, text string) string {
return "[" + text + "](" + link + ")"
}

View File

@ -20,7 +20,6 @@ type Error struct {
func (e Error) NotFound() bool {
return IsErrSubmoduleNotExist(e.error) ||
IsErrRevisionNotExist(e.error)
}
// NewError wraps given error.

View File

@ -15,9 +15,7 @@ import (
log "unknwon.dev/clog/v2"
)
var (
ErrExecTimeout = errors.New("process execution timeout")
)
var ErrExecTimeout = errors.New("process execution timeout")
const DEFAULT_TIMEOUT = 60 * time.Second
@ -41,8 +39,10 @@ func (c *pidCounter) PID() int64 {
return c.pid
}
var counter = new(pidCounter)
var Processes []*Process
var (
counter = new(pidCounter)
Processes []*Process
)
// Add adds a process to global list and returns its PID.
func Add(desc string, cmd *exec.Cmd) int64 {

View File

@ -27,7 +27,6 @@ func RegisterRoutes(r *macaron.Router) {
r.Group("", func() {
r.Post("/objects/batch", authorize(db.AccessModeRead), verifyAccept, verifyContentTypeJSON, serveBatch)
r.Group("/objects/basic", func() {
basic := &basicHandler{
defaultStorage: lfsutil.Storage(conf.LFS.Storage),
storagers: map[lfsutil.Storage]lfsutil.Storager{

View File

@ -553,7 +553,6 @@ func PrepareCompareDiff(
meta *gitutil.PullRequestMeta,
headBranch string,
) bool {
var (
repo = c.Repo.Repository
err error