2018-04-11 04:51:44 +02:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2021-04-05 17:30:52 +02:00
|
|
|
"net/http"
|
2018-04-11 04:51:44 +02:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
)
|
|
|
|
|
2018-06-21 11:09:46 +02:00
|
|
|
// TopicsPost response for creating repository
|
|
|
|
func TopicsPost(ctx *context.Context) {
|
2018-04-11 04:51:44 +02:00
|
|
|
if ctx.User == nil {
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusForbidden, map[string]interface{}{
|
2018-04-11 04:51:44 +02:00
|
|
|
"message": "Only owners could change the topics.",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-05-11 10:15:18 +02:00
|
|
|
var topics = make([]string, 0)
|
|
|
|
var topicsStr = strings.TrimSpace(ctx.Query("topics"))
|
|
|
|
if len(topicsStr) > 0 {
|
|
|
|
topics = strings.Split(topicsStr, ",")
|
|
|
|
}
|
2018-04-11 04:51:44 +02:00
|
|
|
|
2019-09-03 17:46:24 +02:00
|
|
|
validTopics, invalidTopics := models.SanitizeAndValidateTopics(topics)
|
2018-06-21 11:09:46 +02:00
|
|
|
|
2019-09-03 17:46:24 +02:00
|
|
|
if len(validTopics) > 25 {
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusUnprocessableEntity, map[string]interface{}{
|
2019-09-03 17:46:24 +02:00
|
|
|
"invalidTopics": nil,
|
2018-06-21 11:09:46 +02:00
|
|
|
"message": ctx.Tr("repo.topic.count_prompt"),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(invalidTopics) > 0 {
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusUnprocessableEntity, map[string]interface{}{
|
2018-06-21 11:09:46 +02:00
|
|
|
"invalidTopics": invalidTopics,
|
|
|
|
"message": ctx.Tr("repo.topic.format_prompt"),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-09-03 17:46:24 +02:00
|
|
|
err := models.SaveTopics(ctx.Repo.Repository.ID, validTopics...)
|
2018-04-11 04:51:44 +02:00
|
|
|
if err != nil {
|
2019-04-02 09:48:31 +02:00
|
|
|
log.Error("SaveTopics failed: %v", err)
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusInternalServerError, map[string]interface{}{
|
2018-04-11 04:51:44 +02:00
|
|
|
"message": "Save topics failed.",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusOK, map[string]interface{}{
|
2018-04-11 04:51:44 +02:00
|
|
|
"status": "ok",
|
|
|
|
})
|
|
|
|
}
|