|
|
@ -1595,6 +1595,7 @@ func GetRepositoryByID(id int64) (*Repository, error) { |
|
|
|
type UserRepoOptions struct { |
|
|
|
type UserRepoOptions struct { |
|
|
|
UserID int64 |
|
|
|
UserID int64 |
|
|
|
Private bool |
|
|
|
Private bool |
|
|
|
|
|
|
|
LabelID int64 |
|
|
|
Page int |
|
|
|
Page int |
|
|
|
PageSize int |
|
|
|
PageSize int |
|
|
|
} |
|
|
|
} |
|
|
@ -1605,6 +1606,9 @@ func GetUserRepositories(opts *UserRepoOptions) ([]*Repository, error) { |
|
|
|
if !opts.Private { |
|
|
|
if !opts.Private { |
|
|
|
sess.And("is_private=?", false) |
|
|
|
sess.And("is_private=?", false) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if opts.LabelID != 0 { |
|
|
|
|
|
|
|
sess.Join("INNER", "repository_repo_label", "repository_repo_label.repository_id=repository.id AND repository_repo_label.label_id=?", opts.LabelID) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if opts.Page <= 0 { |
|
|
|
if opts.Page <= 0 { |
|
|
|
opts.Page = 1 |
|
|
|
opts.Page = 1 |
|
|
@ -1665,10 +1669,16 @@ func (l *RepositoryLabel) ForegroundColor() template.CSS { |
|
|
|
return template.CSS("#000") |
|
|
|
return template.CSS("#000") |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func CreateRepositoryLabel(owner *User, opts *CreateRepoLabelOptions) (_ *RepositoryLabel, err error) { |
|
|
|
func (l *RepositoryLabel) GetOwner() *User { |
|
|
|
if !owner.CanCreateRepo() { |
|
|
|
if l.Owner == nil { |
|
|
|
return nil, errors.ReachLimitOfRepo{owner.RepoCreationNum()} |
|
|
|
if owner, err := GetUserByID(l.OwnerID); err == nil { |
|
|
|
|
|
|
|
l.Owner = owner |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return l.Owner |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func CreateRepositoryLabel(owner *User, opts *CreateRepoLabelOptions) (_ *RepositoryLabel, err error) { |
|
|
|
if !labelColorPattern.MatchString(opts.Color) { |
|
|
|
if !labelColorPattern.MatchString(opts.Color) { |
|
|
|
return nil, fmt.Errorf("bad HTML color code %s", opts.Color) |
|
|
|
return nil, fmt.Errorf("bad HTML color code %s", opts.Color) |
|
|
|
} |
|
|
|
} |
|
|
@ -1695,9 +1705,6 @@ func CreateRepositoryLabel(owner *User, opts *CreateRepoLabelOptions) (_ *Reposi |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func UpdateRepositoryLabel(id int64, owner *User, opts *CreateRepoLabelOptions) (_ *RepositoryLabel, err error) { |
|
|
|
func UpdateRepositoryLabel(id int64, owner *User, opts *CreateRepoLabelOptions) (_ *RepositoryLabel, err error) { |
|
|
|
if !owner.CanCreateRepo() { |
|
|
|
|
|
|
|
return nil, errors.ReachLimitOfRepo{owner.RepoCreationNum()} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if !labelColorPattern.MatchString(opts.Color) { |
|
|
|
if !labelColorPattern.MatchString(opts.Color) { |
|
|
|
return nil, fmt.Errorf("bad HTML color code %s", opts.Color) |
|
|
|
return nil, fmt.Errorf("bad HTML color code %s", opts.Color) |
|
|
|
} |
|
|
|
} |
|
|
|