37 lines
730 B
Go
37 lines
730 B
Go
package scopes
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/FAU-CDI/wisski-distillery/internal/dis/component"
|
|
"github.com/FAU-CDI/wisski-distillery/internal/dis/component/auth"
|
|
)
|
|
|
|
type ListNewsScope struct {
|
|
component.Base
|
|
dependencies struct {
|
|
Auth *auth.Auth
|
|
}
|
|
}
|
|
|
|
var (
|
|
_ component.ScopeProvider = (*ListNewsScope)(nil)
|
|
)
|
|
|
|
const (
|
|
ScopeListNews Scope = "news.list"
|
|
)
|
|
|
|
func (*ListNewsScope) Scope() component.ScopeInfo {
|
|
return component.ScopeInfo{
|
|
Scope: ScopeListNews,
|
|
Description: "list news items",
|
|
DeniedMessage: "",
|
|
TakesParam: false,
|
|
}
|
|
}
|
|
|
|
func (lns *ListNewsScope) HasScope(param string, r *http.Request) (bool, error) {
|
|
_, user, err := lns.dependencies.Auth.SessionOf(r)
|
|
return user != nil, err
|
|
}
|