fix(indexes): toggle on and off with switch (#1164)

* chore(indexers): replace array position with id

* fix(indexers): enable and disable without editing

* feat(indexer): add toggle endpoint and refactoring

---------

Co-authored-by: ze0s <ze0s@riseup.net>
This commit is contained in:
Fabricio Silva 2023-10-03 20:57:11 +01:00 committed by GitHub
parent 603191b47d
commit 8600d3a2ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 167 additions and 50 deletions

View file

@ -22,6 +22,7 @@ type indexerService interface {
GetTemplates() ([]domain.IndexerDefinition, error)
Delete(ctx context.Context, id int) error
TestApi(ctx context.Context, req domain.IndexerTestApiRequest) error
ToggleEnabled(ctx context.Context, indexerID int, enabled bool) error
}
type indexerHandler struct {
@ -41,13 +42,15 @@ func newIndexerHandler(encoder encoder, service indexerService, ircSvc ircServic
func (h indexerHandler) Routes(r chi.Router) {
r.Get("/schema", h.getSchema)
r.Post("/", h.store)
r.Put("/", h.update)
r.Get("/", h.getAll)
r.Get("/options", h.list)
r.Route("/{indexerID}", func(r chi.Router) {
r.Put("/", h.update)
r.Delete("/", h.delete)
r.Post("/api/test", h.testApi)
r.Patch("/enabled", h.toggleEnabled)
})
}
@ -178,3 +181,31 @@ func (h indexerHandler) testApi(w http.ResponseWriter, r *http.Request) {
h.encoder.StatusResponse(w, http.StatusOK, res)
}
func (h indexerHandler) toggleEnabled(w http.ResponseWriter, r *http.Request) {
var (
ctx = r.Context()
indexerID = chi.URLParam(r, "indexerID")
data struct {
Enabled bool `json:"enabled"`
}
)
id, err := strconv.Atoi(indexerID)
if err != nil {
h.encoder.Error(w, err)
return
}
if err := json.NewDecoder(r.Body).Decode(&data); err != nil {
h.encoder.Error(w, err)
return
}
if err := h.service.ToggleEnabled(ctx, id, data.Enabled); err != nil {
h.encoder.Error(w, err)
return
}
h.encoder.NoContent(w)
}