467f7b1585
This adds standard OAuth2 client credentials and bearer token support as well as scope-based authorization checks for REST API clients. Note that this initial implementation should not be used in production and that the access token limit has not been implemented yet. Signed-off-by: Michael Mayer <michael@photoprism.app>
34 lines
885 B
Go
34 lines
885 B
Go
package entity
|
|
|
|
type PasswordMap map[string]Password
|
|
|
|
func (m PasswordMap) Get(name string) Password {
|
|
if result, ok := m[name]; ok {
|
|
return result
|
|
}
|
|
|
|
return Password{}
|
|
}
|
|
|
|
func (m PasswordMap) Pointer(name string) *Password {
|
|
if result, ok := m[name]; ok {
|
|
return &result
|
|
}
|
|
|
|
return &Password{}
|
|
}
|
|
|
|
var PasswordFixtures = PasswordMap{
|
|
"alice": NewPassword("uqxetse3cy5eo9z2", "Alice123!", false),
|
|
"bob": NewPassword("uqxc08w3d0ej2283", "Bobbob123!", false),
|
|
"friend": NewPassword("uqxqg7i1kperxvu7", "!Friend321", false),
|
|
"fowler": NewPassword("urinotv3d6jedvlm", "PleaseChange$42", false),
|
|
"metrics": NewPassword("cs5cpu17n6gj2qo5", "xcCbOrw6I0vcoXzhnOmXhjpVSyFq0l0e", false),
|
|
}
|
|
|
|
// CreatePasswordFixtures inserts known entities into the database for testing.
|
|
func CreatePasswordFixtures() {
|
|
for _, entity := range PasswordFixtures {
|
|
Db().Create(&entity)
|
|
}
|
|
}
|