2024-06-22 09:29:53 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gofiber/fiber/v2"
|
|
|
|
)
|
|
|
|
|
2024-07-16 08:53:40 +00:00
|
|
|
func MapAPIs(app *fiber.App, baseURL string) {
|
|
|
|
api := app.Group(baseURL).Name("API")
|
2024-06-22 09:29:53 +00:00
|
|
|
{
|
|
|
|
api.Get("/users/me", getUserinfo)
|
2024-07-25 14:45:31 +00:00
|
|
|
api.Get("/users/:account", getOthersInfo)
|
2024-07-25 14:58:47 +00:00
|
|
|
api.Get("/users/:account/pin", listOthersPinnedPost)
|
2024-06-22 09:29:53 +00:00
|
|
|
|
2024-08-18 16:57:20 +00:00
|
|
|
api.Get("/publishers/:name", getPublisher)
|
|
|
|
|
2024-07-23 08:12:19 +00:00
|
|
|
recommendations := api.Group("/recommendations").Name("Recommendations API")
|
|
|
|
{
|
2024-07-27 17:49:16 +00:00
|
|
|
recommendations.Get("/", listRecommendationNews)
|
2024-08-18 16:04:49 +00:00
|
|
|
recommendations.Get("/friends", listRecommendationFriends)
|
2024-07-23 08:12:19 +00:00
|
|
|
recommendations.Get("/shuffle", listRecommendationShuffle)
|
|
|
|
}
|
|
|
|
|
2024-07-21 16:49:36 +00:00
|
|
|
stories := api.Group("/stories").Name("Story API")
|
|
|
|
{
|
|
|
|
stories.Post("/", createStory)
|
|
|
|
stories.Put("/:postId", editStory)
|
|
|
|
}
|
|
|
|
articles := api.Group("/articles").Name("Article API")
|
|
|
|
{
|
|
|
|
articles.Post("/", createArticle)
|
2024-07-23 10:05:54 +00:00
|
|
|
articles.Put("/:postId", editArticle)
|
2024-07-21 16:49:36 +00:00
|
|
|
}
|
|
|
|
|
2024-06-22 09:29:53 +00:00
|
|
|
posts := api.Group("/posts").Name("Posts API")
|
|
|
|
{
|
|
|
|
posts.Get("/", listPost)
|
2024-10-13 13:25:15 +00:00
|
|
|
posts.Get("/search", searchPost)
|
2024-08-10 13:11:55 +00:00
|
|
|
posts.Get("/minimal", listPostMinimal)
|
2024-07-22 05:41:35 +00:00
|
|
|
posts.Get("/drafts", listDraftPost)
|
2024-07-21 16:49:36 +00:00
|
|
|
posts.Get("/:postId", getPost)
|
|
|
|
posts.Post("/:postId/react", reactPost)
|
2024-07-25 14:45:31 +00:00
|
|
|
posts.Post("/:postId/pin", pinPost)
|
2024-06-22 09:29:53 +00:00
|
|
|
posts.Delete("/:postId", deletePost)
|
|
|
|
|
2024-07-23 09:59:11 +00:00
|
|
|
posts.Get("/:postId/replies", listPostReplies)
|
2024-09-16 15:04:35 +00:00
|
|
|
posts.Get("/:postId/replies/featured", listPostFeaturedReply)
|
2024-07-03 14:16:23 +00:00
|
|
|
}
|
|
|
|
|
2024-09-16 16:12:09 +00:00
|
|
|
subscriptions := api.Group("/subscriptions").Name("Subscriptions API")
|
|
|
|
{
|
|
|
|
subscriptions.Get("/users/:userId", getSubscriptionOnUser)
|
|
|
|
subscriptions.Get("/tags/:tagId", getSubscriptionOnTag)
|
|
|
|
subscriptions.Get("/categories/:categoryId", getSubscriptionOnCategory)
|
|
|
|
subscriptions.Post("/users/:userId", subscribeToUser)
|
|
|
|
subscriptions.Post("/tags/:tagId", subscribeToTag)
|
|
|
|
subscriptions.Post("/categories/:categoryId", subscribeToCategory)
|
|
|
|
subscriptions.Delete("/users/:userId", unsubscribeFromUser)
|
|
|
|
subscriptions.Delete("/tags/:tagId", unsubscribeFromTag)
|
|
|
|
subscriptions.Delete("/categories/:categoryId", unsubscribeFromCategory)
|
|
|
|
}
|
|
|
|
|
2024-06-22 09:29:53 +00:00
|
|
|
api.Get("/categories", listCategories)
|
2024-07-30 17:25:51 +00:00
|
|
|
api.Get("/categories/:category", getCategory)
|
2024-06-22 09:29:53 +00:00
|
|
|
api.Post("/categories", newCategory)
|
|
|
|
api.Put("/categories/:categoryId", editCategory)
|
|
|
|
api.Delete("/categories/:categoryId", deleteCategory)
|
2024-07-30 17:25:51 +00:00
|
|
|
|
|
|
|
api.Get("/tags", listTags)
|
|
|
|
api.Get("/tags/:tag", getTag)
|
2024-09-03 12:04:03 +00:00
|
|
|
|
|
|
|
api.Get("/whats-new", getWhatsNew)
|
2024-06-22 09:29:53 +00:00
|
|
|
}
|
|
|
|
}
|