2016-11-03 23:45:16 +01:00
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/go-gitea/gitea/models"
|
|
|
|
"github.com/go-gitea/gitea/modules/context"
|
2016-11-05 17:56:35 +01:00
|
|
|
git "github.com/gogits/git-module"
|
2016-11-03 23:45:16 +01:00
|
|
|
)
|
|
|
|
|
2016-11-05 16:58:53 +01:00
|
|
|
func SetEditorconfigIfExists(ctx *context.Context) {
|
2016-11-03 23:45:16 +01: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
|
|
|
|
}
|