2018-04-11 02:51:44 +00:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2018-04-11 02:51:44 +00:00
|
|
|
|
2021-12-12 15:48:20 +00:00
|
|
|
package repo
|
2018-04-11 02:51:44 +00:00
|
|
|
|
|
|
|
import (
|
2021-12-12 15:48:20 +00:00
|
|
|
"context"
|
2018-04-11 02:51:44 +00:00
|
|
|
"fmt"
|
2018-06-21 09:09:46 +00:00
|
|
|
"regexp"
|
2018-04-11 02:51:44 +00:00
|
|
|
"strings"
|
|
|
|
|
2021-09-19 11:49:59 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-10-12 05:18:26 +00:00
|
|
|
"code.gitea.io/gitea/modules/container"
|
2019-08-15 14:46:21 +00:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2022-10-18 05:50:37 +00:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2018-04-11 02:51:44 +00:00
|
|
|
|
2019-06-23 15:22:43 +00:00
|
|
|
"xorm.io/builder"
|
2018-04-11 02:51:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2021-09-19 11:49:59 +00:00
|
|
|
db.RegisterModel(new(Topic))
|
|
|
|
db.RegisterModel(new(RepoTopic))
|
2018-04-11 02:51:44 +00:00
|
|
|
}
|
|
|
|
|
2018-06-21 09:09:46 +00:00
|
|
|
var topicPattern = regexp.MustCompile(`^[a-z0-9][a-z0-9-]*$`)
|
|
|
|
|
2018-04-11 02:51:44 +00:00
|
|
|
// Topic represents a topic of repositories
|
|
|
|
type Topic struct {
|
2020-09-10 19:45:01 +00:00
|
|
|
ID int64 `xorm:"pk autoincr"`
|
2020-12-26 23:28:47 +00:00
|
|
|
Name string `xorm:"UNIQUE VARCHAR(50)"`
|
2018-04-11 02:51:44 +00:00
|
|
|
RepoCount int
|
2019-08-15 14:46:21 +00:00
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
|
|
|
|
UpdatedUnix timeutil.TimeStamp `xorm:"INDEX updated"`
|
2018-04-11 02:51:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// RepoTopic represents associated repositories and topics
|
2021-12-12 15:48:20 +00:00
|
|
|
type RepoTopic struct { //revive:disable-line:exported
|
2020-09-10 19:45:01 +00:00
|
|
|
RepoID int64 `xorm:"pk"`
|
|
|
|
TopicID int64 `xorm:"pk"`
|
2018-04-11 02:51:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ErrTopicNotExist represents an error that a topic is not exist
|
|
|
|
type ErrTopicNotExist struct {
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrTopicNotExist checks if an error is an ErrTopicNotExist.
|
|
|
|
func IsErrTopicNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrTopicNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error implements error interface
|
|
|
|
func (err ErrTopicNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("topic is not exist [name: %s]", err.Name)
|
|
|
|
}
|
|
|
|
|
2022-10-18 05:50:37 +00:00
|
|
|
func (err ErrTopicNotExist) Unwrap() error {
|
|
|
|
return util.ErrNotExist
|
|
|
|
}
|
|
|
|
|
2019-09-03 15:46:24 +00:00
|
|
|
// ValidateTopic checks a topic by length and match pattern rules
|
2018-06-21 09:09:46 +00:00
|
|
|
func ValidateTopic(topic string) bool {
|
|
|
|
return len(topic) <= 35 && topicPattern.MatchString(topic)
|
|
|
|
}
|
|
|
|
|
2019-09-03 15:46:24 +00:00
|
|
|
// SanitizeAndValidateTopics sanitizes and checks an array or topics
|
2021-03-14 18:52:12 +00:00
|
|
|
func SanitizeAndValidateTopics(topics []string) (validTopics, invalidTopics []string) {
|
2019-09-03 15:46:24 +00:00
|
|
|
validTopics = make([]string, 0)
|
2022-10-12 05:18:26 +00:00
|
|
|
mValidTopics := make(container.Set[string])
|
2019-09-03 15:46:24 +00:00
|
|
|
invalidTopics = make([]string, 0)
|
|
|
|
|
|
|
|
for _, topic := range topics {
|
|
|
|
topic = strings.TrimSpace(strings.ToLower(topic))
|
|
|
|
// ignore empty string
|
|
|
|
if len(topic) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// ignore same topic twice
|
2022-10-12 05:18:26 +00:00
|
|
|
if mValidTopics.Contains(topic) {
|
2019-09-03 15:46:24 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
if ValidateTopic(topic) {
|
|
|
|
validTopics = append(validTopics, topic)
|
2022-10-12 05:18:26 +00:00
|
|
|
mValidTopics.Add(topic)
|
2019-09-03 15:46:24 +00:00
|
|
|
} else {
|
|
|
|
invalidTopics = append(invalidTopics, topic)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return validTopics, invalidTopics
|
|
|
|
}
|
|
|
|
|
2018-04-11 02:51:44 +00:00
|
|
|
// GetTopicByName retrieves topic by name
|
|
|
|
func GetTopicByName(name string) (*Topic, error) {
|
|
|
|
var topic Topic
|
2021-09-23 15:45:36 +00:00
|
|
|
if has, err := db.GetEngine(db.DefaultContext).Where("name = ?", name).Get(&topic); err != nil {
|
2018-04-11 02:51:44 +00:00
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
|
|
|
return nil, ErrTopicNotExist{name}
|
|
|
|
}
|
|
|
|
return &topic, nil
|
|
|
|
}
|
|
|
|
|
2019-09-03 15:46:24 +00:00
|
|
|
// addTopicByNameToRepo adds a topic name to a repo and increments the topic count.
|
|
|
|
// Returns topic after the addition
|
2022-05-20 14:08:52 +00:00
|
|
|
func addTopicByNameToRepo(ctx context.Context, repoID int64, topicName string) (*Topic, error) {
|
2019-09-03 15:46:24 +00:00
|
|
|
var topic Topic
|
2022-05-20 14:08:52 +00:00
|
|
|
e := db.GetEngine(ctx)
|
2019-09-03 15:46:24 +00:00
|
|
|
has, err := e.Where("name = ?", topicName).Get(&topic)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if !has {
|
|
|
|
topic.Name = topicName
|
|
|
|
topic.RepoCount = 1
|
2022-05-20 14:08:52 +00:00
|
|
|
if err := db.Insert(ctx, &topic); err != nil {
|
2019-09-03 15:46:24 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
topic.RepoCount++
|
|
|
|
if _, err := e.ID(topic.ID).Cols("repo_count").Update(&topic); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-20 14:08:52 +00:00
|
|
|
if err := db.Insert(ctx, &RepoTopic{
|
2019-09-03 15:46:24 +00:00
|
|
|
RepoID: repoID,
|
|
|
|
TopicID: topic.ID,
|
|
|
|
}); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &topic, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// removeTopicFromRepo remove a topic from a repo and decrements the topic repo count
|
2022-05-20 14:08:52 +00:00
|
|
|
func removeTopicFromRepo(ctx context.Context, repoID int64, topic *Topic) error {
|
2019-09-03 15:46:24 +00:00
|
|
|
topic.RepoCount--
|
2022-05-20 14:08:52 +00:00
|
|
|
e := db.GetEngine(ctx)
|
2019-09-03 15:46:24 +00:00
|
|
|
if _, err := e.ID(topic.ID).Cols("repo_count").Update(topic); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := e.Delete(&RepoTopic{
|
|
|
|
RepoID: repoID,
|
|
|
|
TopicID: topic.ID,
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-12-12 15:48:20 +00:00
|
|
|
// RemoveTopicsFromRepo remove all topics from the repo and decrements respective topics repo count
|
|
|
|
func RemoveTopicsFromRepo(ctx context.Context, repoID int64) error {
|
|
|
|
e := db.GetEngine(ctx)
|
2020-01-31 06:57:19 +00:00
|
|
|
_, err := e.Where(
|
|
|
|
builder.In("id",
|
|
|
|
builder.Select("topic_id").From("repo_topic").Where(builder.Eq{"repo_id": repoID}),
|
|
|
|
),
|
|
|
|
).Cols("repo_count").SetExpr("repo_count", "repo_count-1").Update(&Topic{})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err = e.Delete(&RepoTopic{RepoID: repoID}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-04-11 02:51:44 +00:00
|
|
|
// FindTopicOptions represents the options when fdin topics
|
|
|
|
type FindTopicOptions struct {
|
2021-09-24 11:32:56 +00:00
|
|
|
db.ListOptions
|
2018-04-11 02:51:44 +00:00
|
|
|
RepoID int64
|
|
|
|
Keyword string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (opts *FindTopicOptions) toConds() builder.Cond {
|
2021-03-14 18:52:12 +00:00
|
|
|
cond := builder.NewCond()
|
2018-04-11 02:51:44 +00:00
|
|
|
if opts.RepoID > 0 {
|
|
|
|
cond = cond.And(builder.Eq{"repo_topic.repo_id": opts.RepoID})
|
|
|
|
}
|
|
|
|
|
|
|
|
if opts.Keyword != "" {
|
|
|
|
cond = cond.And(builder.Like{"topic.name", opts.Keyword})
|
|
|
|
}
|
|
|
|
|
|
|
|
return cond
|
|
|
|
}
|
|
|
|
|
|
|
|
// FindTopics retrieves the topics via FindTopicOptions
|
2021-08-12 12:43:08 +00:00
|
|
|
func FindTopics(opts *FindTopicOptions) ([]*Topic, int64, error) {
|
2021-09-23 15:45:36 +00:00
|
|
|
sess := db.GetEngine(db.DefaultContext).Select("topic.*").Where(opts.toConds())
|
2023-04-14 19:29:05 +00:00
|
|
|
orderBy := "topic.repo_count DESC"
|
2018-04-11 02:51:44 +00:00
|
|
|
if opts.RepoID > 0 {
|
|
|
|
sess.Join("INNER", "repo_topic", "repo_topic.topic_id = topic.id")
|
2023-04-14 19:29:05 +00:00
|
|
|
orderBy = "topic.name" // when render topics for a repo, it's better to sort them by name, to get consistent result
|
2018-04-11 02:51:44 +00:00
|
|
|
}
|
2020-01-24 19:00:29 +00:00
|
|
|
if opts.PageSize != 0 && opts.Page != 0 {
|
2021-09-24 11:32:56 +00:00
|
|
|
sess = db.SetSessionPagination(sess, opts)
|
2018-04-11 02:51:44 +00:00
|
|
|
}
|
2021-08-12 12:43:08 +00:00
|
|
|
topics := make([]*Topic, 0, 10)
|
2023-04-14 19:29:05 +00:00
|
|
|
total, err := sess.OrderBy(orderBy).FindAndCount(&topics)
|
2021-08-12 12:43:08 +00:00
|
|
|
return topics, total, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// CountTopics counts the number of topics matching the FindTopicOptions
|
|
|
|
func CountTopics(opts *FindTopicOptions) (int64, error) {
|
2021-09-23 15:45:36 +00:00
|
|
|
sess := db.GetEngine(db.DefaultContext).Where(opts.toConds())
|
2021-08-12 12:43:08 +00:00
|
|
|
if opts.RepoID > 0 {
|
|
|
|
sess.Join("INNER", "repo_topic", "repo_topic.topic_id = topic.id")
|
|
|
|
}
|
|
|
|
return sess.Count(new(Topic))
|
2018-04-11 02:51:44 +00:00
|
|
|
}
|
|
|
|
|
2021-07-08 11:38:13 +00:00
|
|
|
// GetRepoTopicByName retrieves topic from name for a repo if it exist
|
2022-05-20 14:08:52 +00:00
|
|
|
func GetRepoTopicByName(ctx context.Context, repoID int64, topicName string) (*Topic, error) {
|
2021-03-14 18:52:12 +00:00
|
|
|
cond := builder.NewCond()
|
2019-09-03 15:46:24 +00:00
|
|
|
var topic Topic
|
|
|
|
cond = cond.And(builder.Eq{"repo_topic.repo_id": repoID}).And(builder.Eq{"topic.name": topicName})
|
2022-05-20 14:08:52 +00:00
|
|
|
sess := db.GetEngine(ctx).Table("topic").Where(cond)
|
2019-09-03 15:46:24 +00:00
|
|
|
sess.Join("INNER", "repo_topic", "repo_topic.topic_id = topic.id")
|
2022-05-20 14:08:52 +00:00
|
|
|
has, err := sess.Select("topic.*").Get(&topic)
|
2019-09-03 15:46:24 +00:00
|
|
|
if has {
|
|
|
|
return &topic, err
|
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
[F3] Forgejo driver and CLI
user, topic, project, label, milestone, repository, pull_request,
release, asset, comment, reaction, review providers
Signed-off-by: Earl Warren <contact@earl-warren.org>
Preserve file size when creating attachments
Introduced in c6f50297084ebd9ec8b8c25370b9b963167274eb
repoList.LoadAttributes has a ctx argument now
Rename `repo.GetOwner` to `repo.LoadOwner`
bd66fa586a0da58c4cf2f5f8390aef4bac9d0527
upgrade to the latest gof3
(cherry picked from commit c77071365629984c1dc39a7a83e7252fd5b298e2)
[F3] ID remapping logic is in place, remove workaround
(cherry picked from commit d0fee301670c37c0e73afb271e0a8dd6b622f6f6)
[F3] it is experimental, do not enable by default
(cherry picked from commit de325b21d0adad199ec05652cb8d9fff19248ddb)
(cherry picked from commit 547e7b3c40f15766deb569cf2acface3290cf092)
(cherry picked from commit 820df3a56bc194645b482ef77a8845255d1185fe)
(cherry picked from commit eaba87689bbea84a215558033fc7d514b1b44f3e)
(cherry picked from commit 1b86896b3b4144254ed27064a167650b4e12c690)
(cherry picked from commit 0046aac1c639e021e719408e374cfc84fcbaa1d8)
(cherry picked from commit f14220df8ff692bdcfdcc94660acf64c77e732f5)
(cherry picked from commit 559b73100149978173b0ca8085280cc7fb79982f)
(cherry picked from commit 801f7d600de923afb9f24b74f2b28cc380f09cd0)
(cherry picked from commit 6aa76e9bcf243500675b5dbd543ee89d301ca44e)
(cherry picked from commit a8757dcb071093faea8a398413ee5681193b0627)
[F3] promote F3 users to matching OAuth2 users on first sign-in
(cherry picked from commit bd7fef7496c6f50e1559eac5922ec3280745864d)
(cherry picked from commit 07412698e8828bff3e1894d57356d92bb0063665)
(cherry picked from commit d143e5b2a3dda118529d29caea5e12423b5f5116)
[F3] upgrade to gof3 50a6e740ac04
Add new methods GetIDString() & SetIDString() & ToFormatInterface()
Change the prototype of the fixture function
(cherry picked from commit d7b263ff8b6fda188fe51b2ce75fa333d4aaa23e)
(cherry picked from commit b3eaf2249d3a8b35a564890674f9f50c4e2fde35)
(cherry picked from commit d492ddd9bba3df102e513e748fcafe7808206cb2)
[F3] add GetLocalMatchingRemote with a default implementation
(cherry picked from commit 0a2201503960a18a4308fcf9c13843c6b48569b0)
(cherry picked from commit f1310c38fbc4b2b941af323be215a6313de08232)
(cherry picked from commit deb68552f24ce22e35b5c7a88ceb45190b9df0a2)
[F3] GetLocalMatchingRemote for user
(cherry picked from commit e73cb837f57be0d6c65d6ecb13da621a362351da)
(cherry picked from commit a24bc0b85e1702917a6b39282a869b26654b1aa0)
(cherry picked from commit 846a522ecc5fcdfff1e875e3d006ea68f26137dd)
[F3] GetAdminUser now has a ctx argument
(cherry picked from commit 37357a92afe74405909721a0e0062c3eebcb3454)
(cherry picked from commit 660bc1673c189a16e88bd492947280a6e25fc7dd)
(cherry picked from commit 72d692a76743279b5dd74ff69ecf85d0994be265)
[F3] introduce UserTypeF3
To avoid conflicts should UserTypeRemoteUser be used differently by Gitea
(cherry picked from commit 6de2701bb34da3ab0e9f9e6038541eecbec1d7e4)
[F3] user.Put: idempotency
(cherry picked from commit 821e38573ceaa62ffa067b4e173fad50f0f20f05)
2022-09-06 04:35:43 +00:00
|
|
|
// GetRepoTopicByID retrieves topic from ID for a repo if it exist
|
|
|
|
func GetRepoTopicByID(ctx context.Context, repoID, topicID int64) (*Topic, error) {
|
|
|
|
cond := builder.NewCond()
|
|
|
|
var topic Topic
|
|
|
|
cond = cond.And(builder.Eq{"repo_topic.repo_id": repoID}).And(builder.Eq{"topic.id": topicID})
|
|
|
|
sess := db.GetEngine(ctx).Table("topic").Where(cond)
|
|
|
|
sess.Join("INNER", "repo_topic", "repo_topic.topic_id = topic.id")
|
|
|
|
if has, err := sess.Select("topic.*").Get(&topic); err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
|
|
|
return nil, ErrTopicNotExist{""}
|
|
|
|
}
|
|
|
|
return &topic, nil
|
|
|
|
}
|
|
|
|
|
2019-09-03 15:46:24 +00:00
|
|
|
// AddTopic adds a topic name to a repository (if it does not already have it)
|
|
|
|
func AddTopic(repoID int64, topicName string) (*Topic, error) {
|
2022-11-12 20:18:50 +00:00
|
|
|
ctx, committer, err := db.TxContext(db.DefaultContext)
|
2021-11-21 15:41:00 +00:00
|
|
|
if err != nil {
|
2020-10-24 14:11:30 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2021-11-21 15:41:00 +00:00
|
|
|
defer committer.Close()
|
|
|
|
sess := db.GetEngine(ctx)
|
2020-10-24 14:11:30 +00:00
|
|
|
|
2022-05-20 14:08:52 +00:00
|
|
|
topic, err := GetRepoTopicByName(ctx, repoID, topicName)
|
2019-09-03 15:46:24 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if topic != nil {
|
|
|
|
// Repo already have topic
|
|
|
|
return topic, nil
|
|
|
|
}
|
|
|
|
|
2022-05-20 14:08:52 +00:00
|
|
|
topic, err = addTopicByNameToRepo(ctx, repoID, topicName)
|
2020-10-24 14:11:30 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2023-05-21 09:03:20 +00:00
|
|
|
if err = syncTopicsInRepository(sess, repoID); err != nil {
|
2020-10-24 14:11:30 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-11-21 15:41:00 +00:00
|
|
|
return topic, committer.Commit()
|
2019-09-03 15:46:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteTopic removes a topic name from a repository (if it has it)
|
|
|
|
func DeleteTopic(repoID int64, topicName string) (*Topic, error) {
|
2022-05-20 14:08:52 +00:00
|
|
|
topic, err := GetRepoTopicByName(db.DefaultContext, repoID, topicName)
|
2019-09-03 15:46:24 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if topic == nil {
|
|
|
|
// Repo doesn't have topic, can't be removed
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2022-05-20 14:08:52 +00:00
|
|
|
err = removeTopicFromRepo(db.DefaultContext, repoID, topic)
|
2023-05-21 09:03:20 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = syncTopicsInRepository(db.GetEngine(db.DefaultContext), repoID)
|
2019-09-03 15:46:24 +00:00
|
|
|
|
|
|
|
return topic, err
|
|
|
|
}
|
|
|
|
|
2018-04-11 02:51:44 +00:00
|
|
|
// SaveTopics save topics to a repository
|
|
|
|
func SaveTopics(repoID int64, topicNames ...string) error {
|
2021-08-12 12:43:08 +00:00
|
|
|
topics, _, err := FindTopics(&FindTopicOptions{
|
2018-04-11 02:51:44 +00:00
|
|
|
RepoID: repoID,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-11-12 20:18:50 +00:00
|
|
|
ctx, committer, err := db.TxContext(db.DefaultContext)
|
2021-11-21 15:41:00 +00:00
|
|
|
if err != nil {
|
2018-04-11 02:51:44 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-11-21 15:41:00 +00:00
|
|
|
defer committer.Close()
|
|
|
|
sess := db.GetEngine(ctx)
|
2018-04-11 02:51:44 +00:00
|
|
|
|
|
|
|
var addedTopicNames []string
|
|
|
|
for _, topicName := range topicNames {
|
|
|
|
if strings.TrimSpace(topicName) == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
var found bool
|
|
|
|
for _, t := range topics {
|
|
|
|
if strings.EqualFold(topicName, t.Name) {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
addedTopicNames = append(addedTopicNames, topicName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var removeTopics []*Topic
|
|
|
|
for _, t := range topics {
|
|
|
|
var found bool
|
|
|
|
for _, topicName := range topicNames {
|
|
|
|
if strings.EqualFold(topicName, t.Name) {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
removeTopics = append(removeTopics, t)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, topicName := range addedTopicNames {
|
2022-05-20 14:08:52 +00:00
|
|
|
_, err := addTopicByNameToRepo(ctx, repoID, topicName)
|
2019-09-03 15:46:24 +00:00
|
|
|
if err != nil {
|
2018-04-11 02:51:44 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, topic := range removeTopics {
|
2022-05-20 14:08:52 +00:00
|
|
|
err := removeTopicFromRepo(ctx, repoID, topic)
|
2019-09-03 15:46:24 +00:00
|
|
|
if err != nil {
|
2018-04-11 02:51:44 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-21 09:03:20 +00:00
|
|
|
if err := syncTopicsInRepository(sess, repoID); err != nil {
|
2018-04-11 02:51:44 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-21 15:41:00 +00:00
|
|
|
return committer.Commit()
|
2018-04-11 02:51:44 +00:00
|
|
|
}
|
2021-12-12 15:48:20 +00:00
|
|
|
|
|
|
|
// GenerateTopics generates topics from a template repository
|
|
|
|
func GenerateTopics(ctx context.Context, templateRepo, generateRepo *Repository) error {
|
|
|
|
for _, topic := range templateRepo.Topics {
|
2022-05-20 14:08:52 +00:00
|
|
|
if _, err := addTopicByNameToRepo(ctx, generateRepo.ID, topic); err != nil {
|
2021-12-12 15:48:20 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2023-05-21 09:03:20 +00:00
|
|
|
|
|
|
|
return syncTopicsInRepository(db.GetEngine(ctx), generateRepo.ID)
|
|
|
|
}
|
|
|
|
|
|
|
|
// syncTopicsInRepository makes sure topics in the topics table are copied into the topics field of the repository
|
|
|
|
func syncTopicsInRepository(sess db.Engine, repoID int64) error {
|
|
|
|
topicNames := make([]string, 0, 25)
|
|
|
|
if err := sess.Table("topic").Cols("name").
|
|
|
|
Join("INNER", "repo_topic", "repo_topic.topic_id = topic.id").
|
|
|
|
Where("repo_topic.repo_id = ?", repoID).Desc("topic.repo_count").Find(&topicNames); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := sess.ID(repoID).Cols("topics").Update(&Repository{
|
|
|
|
Topics: topicNames,
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-12-12 15:48:20 +00:00
|
|
|
return nil
|
|
|
|
}
|