From 6ac6f8d614d17910d929981bde7d80d8ec2c0b6e Mon Sep 17 00:00:00 2001 From: Tobi Smethurst <31960611+tsmethurst@users.noreply.github.com> Date: Mon, 31 May 2021 17:36:35 +0200 Subject: Tidy + timeline embetterment (#38) * tidy up timelines a bit + stub out some endpoints * who's faved and who's boosted, reblog notifs * linting * Update progress with new endpoints --- internal/api/client/filter/filter.go | 56 ++++++++++++++++++++++++++++++++ internal/api/client/filter/filtersget.go | 8 +++++ 2 files changed, 64 insertions(+) create mode 100644 internal/api/client/filter/filter.go create mode 100644 internal/api/client/filter/filtersget.go (limited to 'internal/api/client/filter') diff --git a/internal/api/client/filter/filter.go b/internal/api/client/filter/filter.go new file mode 100644 index 000000000..1a8421d26 --- /dev/null +++ b/internal/api/client/filter/filter.go @@ -0,0 +1,56 @@ +/* + GoToSocial + Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + +package filter + +import ( + "net/http" + + "github.com/sirupsen/logrus" + "github.com/superseriousbusiness/gotosocial/internal/api" + "github.com/superseriousbusiness/gotosocial/internal/config" + "github.com/superseriousbusiness/gotosocial/internal/processing" + "github.com/superseriousbusiness/gotosocial/internal/router" +) + +const ( + // BasePath is the base path for serving the filter API + BasePath = "/api/v1/filters" +) + +// Module implements the ClientAPIModule interface for every related to filters +type Module struct { + config *config.Config + processor processing.Processor + log *logrus.Logger +} + +// New returns a new filter module +func New(config *config.Config, processor processing.Processor, log *logrus.Logger) api.ClientModule { + return &Module{ + config: config, + processor: processor, + log: log, + } +} + +// Route attaches all routes from this module to the given router +func (m *Module) Route(r router.Router) error { + r.AttachHandler(http.MethodGet, BasePath, m.FiltersGETHandler) + return nil +} diff --git a/internal/api/client/filter/filtersget.go b/internal/api/client/filter/filtersget.go new file mode 100644 index 000000000..ad9783eb2 --- /dev/null +++ b/internal/api/client/filter/filtersget.go @@ -0,0 +1,8 @@ +package filter + +import "github.com/gin-gonic/gin" + +// FiltersGETHandler returns a list of filters set by/for the authed account +func (m *Module) FiltersGETHandler(c *gin.Context) { + +} -- cgit v1.2.3