mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-30 23:02:25 -05:00 
			
		
		
		
	some lil fixes for kibou compatibility
This commit is contained in:
		
					parent
					
						
							
								6994859d03
							
						
					
				
			
			
				commit
				
					
						d9d9a7a626
					
				
			
		
					 12 changed files with 102 additions and 36 deletions
				
			
		|  | @ -23,20 +23,24 @@ import ( | |||
| 	"strings" | ||||
| 
 | ||||
| 	"github.com/gin-gonic/gin" | ||||
| 	"github.com/sirupsen/logrus" | ||||
| ) | ||||
| 
 | ||||
| // UserAgentBlock is a middleware that prevents google chrome cohort tracking by | ||||
| // writing the Permissions-Policy header after all other parts of the request have been completed. | ||||
| // See: https://plausible.io/blog/google-floc | ||||
| // UserAgentBlock blocks requests with undesired, empty, or invalid user-agent strings. | ||||
| func (m *Module) UserAgentBlock(c *gin.Context) { | ||||
| 	l := m.log.WithFields(logrus.Fields{ | ||||
| 		"func": "UserAgentBlock", | ||||
| 	}) | ||||
| 
 | ||||
| 	ua := c.Request.UserAgent() | ||||
| 	if ua == "" { | ||||
| 		l.Debug("aborting request because there's no user-agent set") | ||||
| 		c.AbortWithStatus(http.StatusTeapot) | ||||
| 		return | ||||
| 	} | ||||
| 
 | ||||
| 	if strings.Contains(strings.ToLower(c.Request.UserAgent()), strings.ToLower("friendica")) { | ||||
| 	if strings.Contains(strings.ToLower(ua), strings.ToLower("friendica")) { | ||||
| 		l.Debugf("aborting request with user-agent %s because it contains 'friendica'", ua) | ||||
| 		c.AbortWithStatus(http.StatusTeapot) | ||||
| 		return | ||||
| 	} | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue