aboutsummaryrefslogtreecommitdiff
path: root/internal/api/api.go
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <f@miniflux.net> 2023-08-10 19:46:45 -0700
committerGravatar Frédéric Guillot <f@miniflux.net> 2023-08-10 20:29:34 -0700
commit168a870c025bfef6efdeb46e166e79a16093c157 (patch)
tree4d8ab69c7e3ef03a7ade06e7b5e5053429a64c3b /internal/api/api.go
parentc2349032552891745cbbc3d2a9e772845a0239f4 (diff)
downloadv2-168a870c025bfef6efdeb46e166e79a16093c157.tar.gz
v2-168a870c025bfef6efdeb46e166e79a16093c157.tar.zst
v2-168a870c025bfef6efdeb46e166e79a16093c157.zip
Move internal packages to an internal folder
For reference: https://go.dev/doc/go1.4#internalpackages
Diffstat (limited to 'internal/api/api.go')
-rw-r--r--internal/api/api.go69
1 files changed, 69 insertions, 0 deletions
diff --git a/internal/api/api.go b/internal/api/api.go
new file mode 100644
index 00000000..1a53336c
--- /dev/null
+++ b/internal/api/api.go
@@ -0,0 +1,69 @@
+// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
+// SPDX-License-Identifier: Apache-2.0
+
+package api // import "miniflux.app/v2/internal/api"
+
+import (
+ "net/http"
+
+ "miniflux.app/v2/internal/storage"
+ "miniflux.app/v2/internal/worker"
+
+ "github.com/gorilla/mux"
+)
+
+type handler struct {
+ store *storage.Storage
+ pool *worker.Pool
+ router *mux.Router
+}
+
+// Serve declares API routes for the application.
+func Serve(router *mux.Router, store *storage.Storage, pool *worker.Pool) {
+ handler := &handler{store, pool, router}
+
+ sr := router.PathPrefix("/v1").Subrouter()
+ middleware := newMiddleware(store)
+ sr.Use(middleware.handleCORS)
+ sr.Use(middleware.apiKeyAuth)
+ sr.Use(middleware.basicAuth)
+ sr.Methods(http.MethodOptions)
+ sr.HandleFunc("/users", handler.createUser).Methods(http.MethodPost)
+ sr.HandleFunc("/users", handler.users).Methods(http.MethodGet)
+ sr.HandleFunc("/users/{userID:[0-9]+}", handler.userByID).Methods(http.MethodGet)
+ sr.HandleFunc("/users/{userID:[0-9]+}", handler.updateUser).Methods(http.MethodPut)
+ sr.HandleFunc("/users/{userID:[0-9]+}", handler.removeUser).Methods(http.MethodDelete)
+ sr.HandleFunc("/users/{userID:[0-9]+}/mark-all-as-read", handler.markUserAsRead).Methods(http.MethodPut)
+ sr.HandleFunc("/users/{username}", handler.userByUsername).Methods(http.MethodGet)
+ sr.HandleFunc("/me", handler.currentUser).Methods(http.MethodGet)
+ sr.HandleFunc("/categories", handler.createCategory).Methods(http.MethodPost)
+ sr.HandleFunc("/categories", handler.getCategories).Methods(http.MethodGet)
+ sr.HandleFunc("/categories/{categoryID}", handler.updateCategory).Methods(http.MethodPut)
+ sr.HandleFunc("/categories/{categoryID}", handler.removeCategory).Methods(http.MethodDelete)
+ sr.HandleFunc("/categories/{categoryID}/mark-all-as-read", handler.markCategoryAsRead).Methods(http.MethodPut)
+ sr.HandleFunc("/categories/{categoryID}/feeds", handler.getCategoryFeeds).Methods(http.MethodGet)
+ sr.HandleFunc("/categories/{categoryID}/refresh", handler.refreshCategory).Methods(http.MethodPut)
+ sr.HandleFunc("/categories/{categoryID}/entries", handler.getCategoryEntries).Methods(http.MethodGet)
+ sr.HandleFunc("/categories/{categoryID}/entries/{entryID}", handler.getCategoryEntry).Methods(http.MethodGet)
+ sr.HandleFunc("/discover", handler.discoverSubscriptions).Methods(http.MethodPost)
+ sr.HandleFunc("/feeds", handler.createFeed).Methods(http.MethodPost)
+ sr.HandleFunc("/feeds", handler.getFeeds).Methods(http.MethodGet)
+ sr.HandleFunc("/feeds/counters", handler.fetchCounters).Methods(http.MethodGet)
+ sr.HandleFunc("/feeds/refresh", handler.refreshAllFeeds).Methods(http.MethodPut)
+ sr.HandleFunc("/feeds/{feedID}/refresh", handler.refreshFeed).Methods(http.MethodPut)
+ sr.HandleFunc("/feeds/{feedID}", handler.getFeed).Methods(http.MethodGet)
+ sr.HandleFunc("/feeds/{feedID}", handler.updateFeed).Methods(http.MethodPut)
+ sr.HandleFunc("/feeds/{feedID}", handler.removeFeed).Methods(http.MethodDelete)
+ sr.HandleFunc("/feeds/{feedID}/icon", handler.feedIcon).Methods(http.MethodGet)
+ sr.HandleFunc("/feeds/{feedID}/mark-all-as-read", handler.markFeedAsRead).Methods(http.MethodPut)
+ sr.HandleFunc("/export", handler.exportFeeds).Methods(http.MethodGet)
+ sr.HandleFunc("/import", handler.importFeeds).Methods(http.MethodPost)
+ sr.HandleFunc("/feeds/{feedID}/entries", handler.getFeedEntries).Methods(http.MethodGet)
+ sr.HandleFunc("/feeds/{feedID}/entries/{entryID}", handler.getFeedEntry).Methods(http.MethodGet)
+ sr.HandleFunc("/entries", handler.getEntries).Methods(http.MethodGet)
+ sr.HandleFunc("/entries", handler.setEntryStatus).Methods(http.MethodPut)
+ sr.HandleFunc("/entries/{entryID}", handler.getEntry).Methods(http.MethodGet)
+ sr.HandleFunc("/entries/{entryID}/bookmark", handler.toggleBookmark).Methods(http.MethodPut)
+ sr.HandleFunc("/entries/{entryID}/save", handler.saveEntry).Methods(http.MethodPost)
+ sr.HandleFunc("/entries/{entryID}/fetch-content", handler.fetchContent).Methods(http.MethodGet)
+}