mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
		
			
				
	
	
		
			20 lines
		
	
	
		
			483 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			483 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2020 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package middleware
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
	"strings"
 | 
						|
)
 | 
						|
 | 
						|
// IsAPIPath returns true if the specified URL is an API path
 | 
						|
func IsAPIPath(req *http.Request) bool {
 | 
						|
	return strings.HasPrefix(req.URL.Path, "/api/")
 | 
						|
}
 | 
						|
 | 
						|
// IsInternalPath returns true if the specified URL is an internal API path
 | 
						|
func IsInternalPath(req *http.Request) bool {
 | 
						|
	return strings.HasPrefix(req.URL.Path, "/api/internal/")
 | 
						|
}
 |