mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 02:22:26 -05:00 
			
		
		
		
	* feat: add rate limit middleware * chore: update vendor dir * chore: update readme with new dependency * chore: add rate limit infos to swagger.md file * refactor: add ipv6 mask limiter option Add IPv6 CIDR /64 mask * refactor: increase rate limit to 1000 Address https://github.com/superseriousbusiness/gotosocial/pull/741#discussion_r945584800 Co-authored-by: tobi <31960611+tsmethurst@users.noreply.github.com>
		
			
				
	
	
		
			61 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
|    GoToSocial
 | |
|    Copyright (C) 2021-2022 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/>.
 | |
| */
 | |
| 
 | |
| package security
 | |
| 
 | |
| import (
 | |
| 	"net/http"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/superseriousbusiness/gotosocial/internal/api"
 | |
| 	"github.com/superseriousbusiness/gotosocial/internal/db"
 | |
| 	"github.com/superseriousbusiness/gotosocial/internal/oauth"
 | |
| 	"github.com/superseriousbusiness/gotosocial/internal/router"
 | |
| )
 | |
| 
 | |
| const robotsPath = "/robots.txt"
 | |
| 
 | |
| // Module implements the ClientAPIModule interface for security middleware
 | |
| type Module struct {
 | |
| 	db     db.DB
 | |
| 	server oauth.Server
 | |
| }
 | |
| 
 | |
| // New returns a new security module
 | |
| func New(db db.DB, server oauth.Server) api.ClientModule {
 | |
| 	return &Module{
 | |
| 		db:     db,
 | |
| 		server: server,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // Route attaches security middleware to the given router
 | |
| func (m *Module) Route(s router.Router) error {
 | |
| 	s.AttachMiddleware(m.RateLimit(RateLimitOptions{
 | |
| 		// accept a maximum of 1000 requests in 5 minutes window
 | |
| 		Period: 5 * time.Minute,
 | |
| 		Limit:  1000,
 | |
| 	}))
 | |
| 	s.AttachMiddleware(m.SignatureCheck)
 | |
| 	s.AttachMiddleware(m.FlocBlock)
 | |
| 	s.AttachMiddleware(m.ExtraHeaders)
 | |
| 	s.AttachMiddleware(m.UserAgentBlock)
 | |
| 	s.AttachMiddleware(m.TokenCheck)
 | |
| 	s.AttachHandler(http.MethodGet, robotsPath, m.RobotsGETHandler)
 | |
| 	return nil
 | |
| }
 |