2016-11-04 01:45:16 +03:00
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2016-11-11 15:11:45 +03:00
|
|
|
"code.gitea.io/git"
|
2016-11-10 19:24:48 +03:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2016-11-04 01:45:16 +03:00
|
|
|
)
|
|
|
|
|
2016-11-05 18:58:53 +03:00
|
|
|
func SetEditorconfigIfExists(ctx *context.Context) {
|
2016-11-04 01:45:16 +03:00
|
|
|
ec, err := ctx.Repo.GetEditorconfig()
|
|
|
|
|
|
|
|
if err != nil && !git.IsErrNotExist(err) {
|
|
|
|
description := fmt.Sprintf("Error while getting .editorconfig file: %v", err)
|
|
|
|
if err := models.CreateRepositoryNotice(description); err != nil {
|
|
|
|
ctx.Handle(500, "ErrCreatingReporitoryNotice", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Editorconfig"] = ec
|
|
|
|
}
|