Documentation ¶
Overview ¶
Package middleware handles authentication, user permissions, and any other tasks that occur with an HTTP request to this app.
Index ¶
- func Administrator(next http.Handler) http.Handler
- func Auth(next http.Handler) http.Handler
- func CreateLicenses(next http.Handler) http.Handler
- func ExternalAPI(next http.Handler) http.Handler
- func LogActivity2(next http.Handler) http.Handler
- func SecHeaders(next http.Handler) http.Handler
- func ViewLicenses(next http.Handler) http.Handler
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Administrator ¶
Administrator checks if the user has this permission.
func Auth ¶
Auth is used to verify a request to this app is from a logged in and active user. If a user's credentials are found and valid, the user is redirected to the next HTTP handler, otherwise an error message is returned.
The Auth func should be called upon every page load or endpoint when a user is logged in.
This does not handle external API calls! External API calls are handled via a separate middleware since the authentication is done differently.
func CreateLicenses ¶
CreateLicenses check if the user has this permission.
func ExternalAPI ¶
ExternalAPI is used to verify a request to an publically accessible endpoint is being made with a valid API key. If the API key is valid, the request is redirected to the next HTTP handler, otherwise an error message is returned.
This func should be called upon every publically accessible endpoint.
func LogActivity2 ¶
LogActivity2 saves the activity the user performed to the database.
This adds a lot of INSERTS to the database which may be undesirable based on server load. Therefore, you can disable this via app settings.
Skip on errors since logging isn't the most important thing in the world.
func SecHeaders ¶
SecHeaders sets http headers for security purposes.
Types ¶
This section is empty.