2021-03-01 14:41:43 +00:00
|
|
|
/*
|
|
|
|
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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-04-19 18:42:19 +01:00
|
|
|
package security
|
|
|
|
|
|
|
|
import (
|
2021-06-13 17:42:28 +01:00
|
|
|
"net/http"
|
|
|
|
|
2021-04-19 18:42:19 +01:00
|
|
|
"github.com/sirupsen/logrus"
|
2021-05-08 13:25:55 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/api"
|
2021-04-19 18:42:19 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/config"
|
2021-07-05 12:23:03 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
2021-04-19 18:42:19 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/router"
|
|
|
|
)
|
|
|
|
|
2021-06-13 17:42:28 +01:00
|
|
|
const robotsPath = "/robots.txt"
|
|
|
|
|
2021-04-20 17:14:23 +01:00
|
|
|
// Module implements the ClientAPIModule interface for security middleware
|
|
|
|
type Module struct {
|
2021-04-19 18:42:19 +01:00
|
|
|
config *config.Config
|
|
|
|
log *logrus.Logger
|
2021-07-05 12:23:03 +01:00
|
|
|
db db.DB
|
2021-04-19 18:42:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// New returns a new security module
|
2021-07-05 12:23:03 +01:00
|
|
|
func New(config *config.Config, db db.DB, log *logrus.Logger) api.ClientModule {
|
2021-04-20 17:14:23 +01:00
|
|
|
return &Module{
|
2021-04-19 18:42:19 +01:00
|
|
|
config: config,
|
|
|
|
log: log,
|
2021-07-05 12:23:03 +01:00
|
|
|
db: db,
|
2021-04-19 18:42:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-20 17:14:23 +01:00
|
|
|
// Route attaches security middleware to the given router
|
|
|
|
func (m *Module) Route(s router.Router) error {
|
2021-07-05 12:23:03 +01:00
|
|
|
s.AttachMiddleware(m.SignatureCheck)
|
2021-04-20 17:14:23 +01:00
|
|
|
s.AttachMiddleware(m.FlocBlock)
|
2021-05-15 10:58:11 +01:00
|
|
|
s.AttachMiddleware(m.ExtraHeaders)
|
2021-05-21 14:48:26 +01:00
|
|
|
s.AttachMiddleware(m.UserAgentBlock)
|
2021-06-13 17:42:28 +01:00
|
|
|
s.AttachHandler(http.MethodGet, robotsPath, m.RobotsGETHandler)
|
2021-04-19 18:42:19 +01:00
|
|
|
return nil
|
|
|
|
}
|