2018-04-11 08:21:44 +05:30
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2018-04-11 08:21:44 +05:30
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2021-04-05 21:00:52 +05:30
|
|
|
"net/http"
|
2018-04-11 08:21:44 +05:30
|
|
|
"strings"
|
|
|
|
|
2021-12-12 21:18:20 +05:30
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2018-04-11 08:21:44 +05:30
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
)
|
|
|
|
|
2018-06-21 14:39:46 +05:30
|
|
|
// TopicsPost response for creating repository
|
|
|
|
func TopicsPost(ctx *context.Context) {
|
2022-03-22 12:33:22 +05:30
|
|
|
if ctx.Doer == nil {
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.JSON(http.StatusForbidden, map[string]interface{}{
|
2018-04-11 08:21:44 +05:30
|
|
|
"message": "Only owners could change the topics.",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-01-20 23:16:10 +05:30
|
|
|
topics := make([]string, 0)
|
|
|
|
topicsStr := ctx.FormTrim("topics")
|
2018-05-11 13:45:18 +05:30
|
|
|
if len(topicsStr) > 0 {
|
|
|
|
topics = strings.Split(topicsStr, ",")
|
|
|
|
}
|
2018-04-11 08:21:44 +05:30
|
|
|
|
2021-12-12 21:18:20 +05:30
|
|
|
validTopics, invalidTopics := repo_model.SanitizeAndValidateTopics(topics)
|
2018-06-21 14:39:46 +05:30
|
|
|
|
2019-09-03 21:16:24 +05:30
|
|
|
if len(validTopics) > 25 {
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.JSON(http.StatusUnprocessableEntity, map[string]interface{}{
|
2019-09-03 21:16:24 +05:30
|
|
|
"invalidTopics": nil,
|
2018-06-21 14:39:46 +05:30
|
|
|
"message": ctx.Tr("repo.topic.count_prompt"),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(invalidTopics) > 0 {
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.JSON(http.StatusUnprocessableEntity, map[string]interface{}{
|
2018-06-21 14:39:46 +05:30
|
|
|
"invalidTopics": invalidTopics,
|
|
|
|
"message": ctx.Tr("repo.topic.format_prompt"),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-12-12 21:18:20 +05:30
|
|
|
err := repo_model.SaveTopics(ctx.Repo.Repository.ID, validTopics...)
|
2018-04-11 08:21:44 +05:30
|
|
|
if err != nil {
|
2019-04-02 13:18:31 +05:30
|
|
|
log.Error("SaveTopics failed: %v", err)
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.JSON(http.StatusInternalServerError, map[string]interface{}{
|
2018-04-11 08:21:44 +05:30
|
|
|
"message": "Save topics failed.",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.JSON(http.StatusOK, map[string]interface{}{
|
2018-04-11 08:21:44 +05:30
|
|
|
"status": "ok",
|
|
|
|
})
|
|
|
|
}
|