1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
|
package controllers
import (
"imageboard/config"
"imageboard/database"
"imageboard/models"
"imageboard/utils/auth"
"imageboard/utils/format"
"strconv"
"strings"
"github.com/gofiber/fiber/v2"
)
func TagsSearchJSONController(ctx *fiber.Ctx) error {
tagName := ctx.Query("name")
tagType := config.TagType(ctx.Query("type"))
limit := ctx.QueryInt("limit", 20)
offset := ctx.QueryInt("offset", 0)
if tagName == "" {
return ctx.Status(fiber.StatusBadRequest).JSON(fiber.Map{
"error": "Tag name is required",
})
}
tags, err := database.SearchTags(tagName, limit, offset, &tagType)
if err != nil {
return ctx.Status(fiber.StatusInternalServerError).JSON(fiber.Map{
"error": "Failed to fetch tags",
})
}
if len(tags) == 0 {
return ctx.Status(fiber.StatusNotFound).JSON(fiber.Map{
"error": "No tags found",
})
}
return ctx.JSON(tags)
}
func FindOrCreateTagJSONController(ctx *fiber.Ctx) error {
var request struct {
Name string `json:"name"`
Type string `json:"type"`
}
if !auth.IsAuthenticated(ctx) {
return ctx.Status(fiber.StatusUnauthorized).JSON(fiber.Map{
"error": "Unauthorized",
})
}
currentUser := auth.GetCurrentUser(ctx)
if !currentUser.CanCreateTags() {
return ctx.Status(fiber.StatusForbidden).JSON(fiber.Map{
"error": "You do not have permission to create tags",
})
}
if err := ctx.BodyParser(&request); err != nil {
return ctx.Status(fiber.StatusBadRequest).JSON(fiber.Map{
"error": "Invalid request body",
})
}
tag, err := database.FindOrCreateTag(request.Name, config.TagType(request.Type))
if err != nil {
return ctx.Status(fiber.StatusInternalServerError).JSON(fiber.Map{
"error": "Failed to find or create tag",
})
}
return ctx.JSON(tag)
}
func TagsSearchForImageJSONController(ctx *fiber.Ctx) error {
if !auth.IsAuthenticated(ctx) {
return ctx.Status(fiber.StatusUnauthorized).JSON(fiber.Map{
"error": "Unauthorized",
})
}
query := ctx.Query("q")
imageID := ctx.Query("image_id")
tagType := ctx.Query("type")
if query == "" {
return ctx.JSON([]interface{}{})
}
var uintImageID uint
if imageID != "" {
if id, err := strconv.ParseUint(imageID, 10, 32); err == nil {
uintImageID = uint(id)
}
}
var tagTypeEnum *config.TagType
if tagType != "" {
t := config.TagType(tagType)
tagTypeEnum = &t
}
var tags []models.Tag
var err error
if uintImageID > 0 {
tags, err = database.SearchTagsExcluding(query, uintImageID, 10, tagTypeEnum)
} else {
tags, err = database.SearchTags(query, 10, 0, tagTypeEnum)
}
if err != nil {
return ctx.Status(fiber.StatusInternalServerError).JSON(fiber.Map{
"error": "Search failed",
})
}
currentUser := auth.GetCurrentUser(ctx)
canCreate := currentUser != nil && currentUser.CanCreateTags()
result := fiber.Map{
"tags": tags,
"can_create": canCreate,
"query": query,
}
return ctx.JSON(result)
}
func TagsAddToImageJSONController(ctx *fiber.Ctx) error {
if !auth.IsAuthenticated(ctx) {
return ctx.Status(fiber.StatusUnauthorized).JSON(fiber.Map{
"error": "Unauthorized",
})
}
imageID := ctx.Query("image_id")
if imageID == "" {
return ctx.Status(fiber.StatusBadRequest).JSON(fiber.Map{
"error": "Image ID required",
})
}
uintImageID, err := format.StringToUint(imageID)
if err != nil {
return ctx.Status(fiber.StatusBadRequest).JSON(fiber.Map{
"error": "Invalid image ID",
})
}
var request struct {
TagName string `json:"tag_name"`
TagType string `json:"tag_type"`
}
if err := ctx.BodyParser(&request); err != nil {
return ctx.Status(fiber.StatusBadRequest).JSON(fiber.Map{
"error": "Invalid request body",
})
}
if request.TagName == "" {
return ctx.Status(fiber.StatusBadRequest).JSON(fiber.Map{
"error": "Tag name required",
})
}
if request.TagType == "" {
request.TagType = "general"
}
tagTypeEnum := config.TagType(request.TagType)
currentUser := auth.GetCurrentUser(ctx)
tag, err := database.FindOrCreateTag(request.TagName, tagTypeEnum)
if err != nil {
// Check if this is a cross-category error
if strings.Contains(err.Error(), "already exists as") || strings.Contains(err.Error(), "previously existed as") {
return ctx.Status(fiber.StatusBadRequest).JSON(fiber.Map{
"error": err.Error(),
})
}
// For other errors, check permissions
if !currentUser.CanCreateTags() {
return ctx.Status(fiber.StatusForbidden).JSON(fiber.Map{
"error": "Cannot create new tags",
})
}
return ctx.Status(fiber.StatusInternalServerError).JSON(fiber.Map{
"error": "Failed to create tag",
})
}
var tagsToAdd []uint
if tag.ParentID != nil {
_, ancestors, err := database.GetTagWithAncestors(tag.ID)
if err == nil {
for _, ancestor := range ancestors {
tagsToAdd = append(tagsToAdd, ancestor.ID)
}
}
}
tagsToAdd = append(tagsToAdd, tag.ID)
for _, tagID := range tagsToAdd {
database.AddTagToImage(uintImageID, tagID)
}
return ctx.JSON(fiber.Map{
"success": true,
"tag": tag,
})
}
func TagsRemoveFromImageJSONController(ctx *fiber.Ctx) error {
if !auth.IsAuthenticated(ctx) {
return ctx.Status(fiber.StatusUnauthorized).JSON(fiber.Map{
"error": "Unauthorized",
})
}
imageID := ctx.Query("image_id")
if imageID == "" {
return ctx.Status(fiber.StatusBadRequest).JSON(fiber.Map{
"error": "Image ID required",
})
}
uintImageID, err := format.StringToUint(imageID)
if err != nil {
return ctx.Status(fiber.StatusBadRequest).JSON(fiber.Map{
"error": "Invalid image ID",
})
}
var request struct {
TagID uint `json:"tag_id"`
}
if err := ctx.BodyParser(&request); err != nil {
return ctx.Status(fiber.StatusBadRequest).JSON(fiber.Map{
"error": "Invalid request body",
})
}
currentUser := auth.GetCurrentUser(ctx)
post, err := database.GetPostByID(uintImageID)
if err != nil {
return ctx.Status(fiber.StatusNotFound).JSON(fiber.Map{
"error": "Post not found",
})
}
if post.Uploader.Username != currentUser.Username && !currentUser.CanEditPosts() {
return ctx.Status(fiber.StatusForbidden).JSON(fiber.Map{
"error": "Cannot edit this post",
})
}
_, descendants, err := database.GetTagWithDescendants(request.TagID)
if err == nil {
for _, descendant := range descendants {
database.RemoveTagFromImage(uintImageID, descendant.ID)
}
}
err = database.RemoveTagFromImage(uintImageID, request.TagID)
if err != nil {
return ctx.Status(fiber.StatusInternalServerError).JSON(fiber.Map{
"error": "Failed to remove tag",
})
}
return ctx.JSON(fiber.Map{
"success": true,
})
}
|