James Tombleson
713205bb03
* basic routes are working with db context * swagger is working along with swag gen * cron was updated with a class and better db context, untested though * sourcelist command added * lost the pg package but added it back * Updated the api startup for cron and api * updated source routes and started to add article routes * Updated cron add func calls * updated swagger * keeping articles basic for now as I dont need to pull them in yet * swagger update * added getarticlesbysourceid call * adding the subscriptions table to track who to send notifications and where * removed legacy columns from discordwebhooks that are no longer needed. * added discord webhook routes * updated routes * Minor change to schema * Updated routes to support subscriptions * ignore .vscode
95 lines
2.0 KiB
Go
95 lines
2.0 KiB
Go
package routes
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
|
|
"github.com/go-chi/chi/v5"
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
// ListArticles
|
|
// @Summary Lists the top 50 records
|
|
// @Produce application/json
|
|
// @Tags articles
|
|
// @Router /articles [get]
|
|
func (s *Server) listArticles(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
res, err := s.Db.ListArticles(*s.ctx, 50)
|
|
if err != nil {
|
|
w.Write([]byte(err.Error()))
|
|
panic(err)
|
|
}
|
|
|
|
bres, err := json.Marshal(res)
|
|
if err != nil {
|
|
w.Write([]byte(err.Error()))
|
|
panic(err)
|
|
}
|
|
|
|
w.Write(bres)
|
|
}
|
|
|
|
// GetArticleById
|
|
// @Summary Returns an article based on defined ID.
|
|
// @Param id path string true "uuid"
|
|
// @Produce application/json
|
|
// @Tags articles
|
|
// @Router /articles/{id} [get]
|
|
func (s *Server) getArticleById(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
id := chi.URLParam(r, "ID")
|
|
uuid, err := uuid.Parse(id)
|
|
if err != nil {
|
|
w.Write([]byte(err.Error()))
|
|
panic(err)
|
|
}
|
|
|
|
res, err := s.Db.GetArticleByID(*s.ctx, uuid)
|
|
if err != nil {
|
|
w.Write([]byte(err.Error()))
|
|
panic(err)
|
|
}
|
|
|
|
bres, err := json.Marshal(res)
|
|
if err != nil {
|
|
w.Write([]byte(err.Error()))
|
|
panic(err)
|
|
}
|
|
|
|
w.Write(bres)
|
|
}
|
|
|
|
// TODO add page support
|
|
// GetArticlesBySourceID
|
|
// @Summary Finds the articles based on the SourceID provided. Returns the top 50.
|
|
// @Param id path string true "Source ID UUID"
|
|
// @Produce application/json
|
|
// @Tags articles
|
|
// @Router /articles/by/sourceid/{id} [get]
|
|
func (s *Server) GetArticlesBySourceId(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
id := chi.URLParam(r, "ID")
|
|
uuid, err := uuid.Parse(id)
|
|
if err != nil {
|
|
w.Write([]byte(err.Error()))
|
|
panic(err)
|
|
}
|
|
|
|
res, err := s.Db.GetArticlesBySourceId(*s.ctx, uuid)
|
|
if err != nil {
|
|
w.Write([]byte(err.Error()))
|
|
panic(err)
|
|
}
|
|
|
|
bres, err := json.Marshal(res)
|
|
if err != nil {
|
|
w.Write([]byte(err.Error()))
|
|
panic(err)
|
|
}
|
|
|
|
w.Write(bres)
|
|
} |