|
|
@ -8,9 +8,11 @@ import ( |
|
|
|
"errors" |
|
|
|
"errors" |
|
|
|
"fmt" |
|
|
|
"fmt" |
|
|
|
"io/ioutil" |
|
|
|
"io/ioutil" |
|
|
|
|
|
|
|
"html/template" |
|
|
|
"os" |
|
|
|
"os" |
|
|
|
"path" |
|
|
|
"path" |
|
|
|
"path/filepath" |
|
|
|
"path/filepath" |
|
|
|
|
|
|
|
"regexp" |
|
|
|
"runtime" |
|
|
|
"runtime" |
|
|
|
"sort" |
|
|
|
"sort" |
|
|
|
"strings" |
|
|
|
"strings" |
|
|
@ -46,6 +48,10 @@ var ( |
|
|
|
LanguageIgns, Licenses []string |
|
|
|
LanguageIgns, Licenses []string |
|
|
|
) |
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var ( |
|
|
|
|
|
|
|
DescriptionPattern = regexp.MustCompile(`https?://\S+`) |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
// getAssetList returns corresponding asset list in 'conf'.
|
|
|
|
// getAssetList returns corresponding asset list in 'conf'.
|
|
|
|
func getAssetList(prefix string) []string { |
|
|
|
func getAssetList(prefix string) []string { |
|
|
|
assets := make([]string, 0, 15) |
|
|
|
assets := make([]string, 0, 15) |
|
|
@ -145,6 +151,10 @@ func (repo *Repository) GetOwner() (err error) { |
|
|
|
return err |
|
|
|
return err |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (repo *Repository) DescriptionHtml() template.HTML { |
|
|
|
|
|
|
|
return template.HTML(DescriptionPattern.ReplaceAllString(repo.Description, `<a href="$0" target="_blank">$0</a>`)) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// IsRepositoryExist returns true if the repository with given name under user has already existed.
|
|
|
|
// IsRepositoryExist returns true if the repository with given name under user has already existed.
|
|
|
|
func IsRepositoryExist(u *User, repoName string) (bool, error) { |
|
|
|
func IsRepositoryExist(u *User, repoName string) (bool, error) { |
|
|
|
repo := Repository{OwnerId: u.Id} |
|
|
|
repo := Repository{OwnerId: u.Id} |
|
|
|