|
|
@ -19,6 +19,20 @@ import ( |
|
|
|
|
|
|
|
|
|
|
|
const fileSizeLimit int64 = 16 * 1024 * 1024 |
|
|
|
const fileSizeLimit int64 = 16 * 1024 * 1024 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// specialLanguages defines list of languages that are excluded from the calculation
|
|
|
|
|
|
|
|
// unless they are the only language present in repository. Only languages which under
|
|
|
|
|
|
|
|
// normal circumstances are not considered to be code should be listed here.
|
|
|
|
|
|
|
|
var specialLanguages = []string{ |
|
|
|
|
|
|
|
"XML", |
|
|
|
|
|
|
|
"JSON", |
|
|
|
|
|
|
|
"TOML", |
|
|
|
|
|
|
|
"YAML", |
|
|
|
|
|
|
|
"INI", |
|
|
|
|
|
|
|
"SVG", |
|
|
|
|
|
|
|
"Text", |
|
|
|
|
|
|
|
"Markdown", |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// GetLanguageStats calculates language stats for git repository at specified commit
|
|
|
|
// GetLanguageStats calculates language stats for git repository at specified commit
|
|
|
|
func (repo *Repository) GetLanguageStats(commitID string) (map[string]int64, error) { |
|
|
|
func (repo *Repository) GetLanguageStats(commitID string) (map[string]int64, error) { |
|
|
|
r, err := git.PlainOpen(repo.Path) |
|
|
|
r, err := git.PlainOpen(repo.Path) |
|
|
@ -43,7 +57,7 @@ func (repo *Repository) GetLanguageStats(commitID string) (map[string]int64, err |
|
|
|
|
|
|
|
|
|
|
|
sizes := make(map[string]int64) |
|
|
|
sizes := make(map[string]int64) |
|
|
|
err = tree.Files().ForEach(func(f *object.File) error { |
|
|
|
err = tree.Files().ForEach(func(f *object.File) error { |
|
|
|
if enry.IsVendor(f.Name) || enry.IsDotFile(f.Name) || |
|
|
|
if f.Size == 0 || enry.IsVendor(f.Name) || enry.IsDotFile(f.Name) || |
|
|
|
enry.IsDocumentation(f.Name) || enry.IsConfiguration(f.Name) { |
|
|
|
enry.IsDocumentation(f.Name) || enry.IsConfiguration(f.Name) { |
|
|
|
return nil |
|
|
|
return nil |
|
|
|
} |
|
|
|
} |
|
|
@ -58,7 +72,13 @@ func (repo *Repository) GetLanguageStats(commitID string) (map[string]int64, err |
|
|
|
|
|
|
|
|
|
|
|
language := analyze.GetCodeLanguage(f.Name, content) |
|
|
|
language := analyze.GetCodeLanguage(f.Name, content) |
|
|
|
if language == enry.OtherLanguage || language == "" { |
|
|
|
if language == enry.OtherLanguage || language == "" { |
|
|
|
language = "other" |
|
|
|
return nil |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// group languages, such as Pug -> HTML; SCSS -> CSS
|
|
|
|
|
|
|
|
group := enry.GetLanguageGroup(language) |
|
|
|
|
|
|
|
if group != "" { |
|
|
|
|
|
|
|
language = group |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
sizes[language] += f.Size |
|
|
|
sizes[language] += f.Size |
|
|
@ -69,8 +89,11 @@ func (repo *Repository) GetLanguageStats(commitID string) (map[string]int64, err |
|
|
|
return nil, err |
|
|
|
return nil, err |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if len(sizes) == 0 { |
|
|
|
// filter special languages unless they are the only language
|
|
|
|
sizes["other"] = 0 |
|
|
|
if len(sizes) > 1 { |
|
|
|
|
|
|
|
for _, language := range specialLanguages { |
|
|
|
|
|
|
|
delete(sizes, language) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return sizes, nil |
|
|
|
return sizes, nil |
|
|
|