2019-01-05 22:44:33 +00:00
|
|
|
package auth
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/filebrowser/filebrowser/v2/settings"
|
|
|
|
"github.com/filebrowser/filebrowser/v2/users"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MethodNoAuth is used to identify no auth.
|
|
|
|
const MethodNoAuth settings.AuthMethod = "noauth"
|
|
|
|
|
|
|
|
// NoAuth is no auth implementation of auther.
|
2019-01-07 20:34:44 +00:00
|
|
|
type NoAuth struct{}
|
2019-01-05 22:44:33 +00:00
|
|
|
|
|
|
|
// Auth uses authenticates user 1.
|
2019-01-08 08:57:24 +00:00
|
|
|
func (a NoAuth) Auth(r *http.Request, sto *users.Storage, root string) (*users.User, error) {
|
2019-01-08 18:43:04 +00:00
|
|
|
return sto.Get(root, uint(1))
|
2019-01-05 22:44:33 +00:00
|
|
|
}
|
2019-02-15 12:58:45 +00:00
|
|
|
|
|
|
|
// LoginPage tells that no auth doesn't require a login page.
|
|
|
|
func (a NoAuth) LoginPage() bool {
|
|
|
|
return false
|
|
|
|
}
|