73 lines
1.3 KiB
Go
73 lines
1.3 KiB
Go
|
package projects
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"strings"
|
||
|
"time"
|
||
|
|
||
|
"github.com/go-git/go-git/v5"
|
||
|
)
|
||
|
|
||
|
type Project struct {
|
||
|
ID int
|
||
|
Description string
|
||
|
SSHURLToRepo string
|
||
|
HTTPURLToRepo string
|
||
|
WebURL string
|
||
|
Name string
|
||
|
NameWithNamespace string
|
||
|
Path string
|
||
|
PathWithNamespace string
|
||
|
AvatarURL string
|
||
|
LastActivityAt time.Time
|
||
|
Readme string
|
||
|
Remote string
|
||
|
Owner string
|
||
|
Languages *ProjectLanguages
|
||
|
gitRepo *git.Repository
|
||
|
}
|
||
|
|
||
|
type ProjectLanguages []*ProjectLanguage
|
||
|
|
||
|
type ProjectLanguage struct {
|
||
|
Name string
|
||
|
Percentage float32
|
||
|
}
|
||
|
|
||
|
func (p *Project) String() string {
|
||
|
var projectString string
|
||
|
if p != nil {
|
||
|
projectString = fmt.Sprintf("%s (%s)", p.Path, p.PathWithNamespace)
|
||
|
}
|
||
|
return projectString
|
||
|
}
|
||
|
|
||
|
func (p *Project) GetLanguage() *ProjectLanguage {
|
||
|
if p.Languages == nil {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
var lang *ProjectLanguage
|
||
|
var maxPcnt float32
|
||
|
for _, p := range *p.Languages {
|
||
|
if p.Percentage > maxPcnt {
|
||
|
lang = p
|
||
|
}
|
||
|
maxPcnt = p.Percentage
|
||
|
}
|
||
|
|
||
|
return lang
|
||
|
}
|
||
|
|
||
|
func (p *Project) SanitizedPath() string {
|
||
|
return strings.Trim(p.PathWithNamespace, " '\"%<>|`")
|
||
|
}
|
||
|
|
||
|
func (p *Project) SetRepo(r *git.Repository) {
|
||
|
p.gitRepo = r
|
||
|
}
|
||
|
|
||
|
func (p *Project) GetRepo() *git.Repository {
|
||
|
return p.gitRepo
|
||
|
}
|