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
44 lines
934 B
Go
44 lines
934 B
Go
package routes
|
|
|
|
import (
|
|
"encoding/json"
|
|
"log"
|
|
"net/http"
|
|
|
|
"github.com/go-chi/chi/v5"
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
// GetSettings
|
|
// @Summary Returns a object based on the Key that was given/
|
|
// @Param key path string true "Settings Key value"
|
|
// @Produce application/json
|
|
// @Tags settings
|
|
// @Router /settings/{key} [get]
|
|
func (s *Server) getSettings(w http.ResponseWriter, r *http.Request) {
|
|
//var item model.Sources
|
|
id := chi.URLParam(r, "ID")
|
|
|
|
uuid, err := uuid.Parse(id)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
res, err := s.Db.GetSourceByID(*s.ctx, uuid)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
//itemId := fmt.Sprint(item.ID)
|
|
//if id != itemId {
|
|
// log.Panicln("Unable to find the requested record. Either unable to access SQL or the record does not exist.")
|
|
//}
|
|
|
|
bResult, err := json.Marshal(res)
|
|
if err != nil {
|
|
log.Panicln(err)
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
w.Write(bResult)
|
|
} |