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
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2021-04-05 15:30:52 +00:00
|
|
|
"net/http"
|
2018-04-11 02:51:44 +00:00
|
|
|
"strings"
|
|
|
|
|
2021-12-12 15:48:20 +00:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2018-04-11 02:51:44 +00:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2024-02-27 07:12:22 +00:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2018-04-11 02:51:44 +00:00
|
|
|
)
|
|
|
|
|
2018-06-21 09:09:46 +00:00
|
|
|
// TopicsPost response for creating repository
|
|
|
|
func TopicsPost(ctx *context.Context) {
|
2022-03-22 07:03:22 +00:00
|
|
|
if ctx.Doer == nil {
|
2023-07-04 18:36:08 +00:00
|
|
|
ctx.JSON(http.StatusForbidden, map[string]any{
|
2018-04-11 02:51:44 +00:00
|
|
|
"message": "Only owners could change the topics.",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
topics := make([]string, 0)
|
|
|
|
topicsStr := ctx.FormTrim("topics")
|
2018-05-11 08:15:18 +00:00
|
|
|
if len(topicsStr) > 0 {
|
|
|
|
topics = strings.Split(topicsStr, ",")
|
|
|
|
}
|
2018-04-11 02:51:44 +00:00
|
|
|
|
2021-12-12 15:48:20 +00:00
|
|
|
validTopics, invalidTopics := repo_model.SanitizeAndValidateTopics(topics)
|
2018-06-21 09:09:46 +00:00
|
|
|
|
2019-09-03 15:46:24 +00:00
|
|
|
if len(validTopics) > 25 {
|
2023-07-04 18:36:08 +00:00
|
|
|
ctx.JSON(http.StatusUnprocessableEntity, map[string]any{
|
2019-09-03 15:46:24 +00:00
|
|
|
"invalidTopics": nil,
|
2018-06-21 09:09:46 +00:00
|
|
|
"message": ctx.Tr("repo.topic.count_prompt"),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(invalidTopics) > 0 {
|
2023-07-04 18:36:08 +00:00
|
|
|
ctx.JSON(http.StatusUnprocessableEntity, map[string]any{
|
2018-06-21 09:09:46 +00:00
|
|
|
"invalidTopics": invalidTopics,
|
|
|
|
"message": ctx.Tr("repo.topic.format_prompt"),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-09-16 14:39:12 +00:00
|
|
|
err := repo_model.SaveTopics(ctx, ctx.Repo.Repository.ID, validTopics...)
|
2018-04-11 02:51:44 +00:00
|
|
|
if err != nil {
|
2019-04-02 07:48:31 +00:00
|
|
|
log.Error("SaveTopics failed: %v", err)
|
2023-07-04 18:36:08 +00:00
|
|
|
ctx.JSON(http.StatusInternalServerError, map[string]any{
|
2018-04-11 02:51:44 +00:00
|
|
|
"message": "Save topics failed.",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-07-04 18:36:08 +00:00
|
|
|
ctx.JSON(http.StatusOK, map[string]any{
|
2018-04-11 02:51:44 +00:00
|
|
|
"status": "ok",
|
|
|
|
})
|
|
|
|
}
|