Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
5d4dc18b
Unverified
Commit
5d4dc18b
authored
Oct 30, 2018
by
Marcus Efraimsson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert application lifecycle event support
parent
2332b3e2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
74 deletions
+8
-74
pkg/cmd/grafana-server/server.go
+4
-3
pkg/lifecycle/lifecycle.go
+0
-22
pkg/lifecycle/lifecycle_test.go
+0
-35
pkg/login/auth.go
+3
-6
pkg/social/social.go
+1
-8
No files found.
pkg/cmd/grafana-server/server.go
View file @
5d4dc18b
...
...
@@ -15,9 +15,10 @@ import (
"github.com/grafana/grafana/pkg/api"
"github.com/grafana/grafana/pkg/api/routing"
"github.com/grafana/grafana/pkg/bus"
"github.com/grafana/grafana/pkg/l
ifecycle
"
"github.com/grafana/grafana/pkg/l
ogin
"
"github.com/grafana/grafana/pkg/middleware"
"github.com/grafana/grafana/pkg/registry"
"github.com/grafana/grafana/pkg/social"
"golang.org/x/sync/errgroup"
...
...
@@ -69,7 +70,8 @@ func (g *GrafanaServerImpl) Run() error {
g
.
loadConfiguration
()
g
.
writePIDFile
()
lifecycle
.
Notify
(
lifecycle
.
ApplicationStarting
)
login
.
Init
()
social
.
NewOAuthService
()
serviceGraph
:=
inject
.
Graph
{}
serviceGraph
.
Provide
(
&
inject
.
Object
{
Value
:
bus
.
GetBus
()})
...
...
@@ -142,7 +144,6 @@ func (g *GrafanaServerImpl) Run() error {
}
sendSystemdNotification
(
"READY=1"
)
lifecycle
.
Notify
(
lifecycle
.
ApplicationStarted
)
return
g
.
childRoutines
.
Wait
()
}
...
...
pkg/lifecycle/lifecycle.go
deleted
100644 → 0
View file @
2332b3e2
package
lifecycle
type
Event
int
const
(
ApplicationStarting
Event
=
iota
ApplicationStarted
)
type
EventHandlerFunc
func
()
var
listeners
=
map
[
int
][]
EventHandlerFunc
{}
func
AddListener
(
evt
Event
,
fn
EventHandlerFunc
)
{
listeners
[
int
(
evt
)]
=
append
(
listeners
[
int
(
evt
)],
fn
)
}
func
Notify
(
evt
Event
)
{
for
_
,
handler
:=
range
listeners
[
int
(
evt
)]
{
handler
()
}
}
pkg/lifecycle/lifecycle_test.go
deleted
100644 → 0
View file @
2332b3e2
package
lifecycle
import
(
"testing"
.
"github.com/smartystreets/goconvey/convey"
)
func
TestLifecycle
(
t
*
testing
.
T
)
{
Convey
(
"TestLifecycle"
,
t
,
func
()
{
Convey
(
"Given listeners"
,
func
()
{
applicationStartingCounter
:=
0
AddListener
(
ApplicationStarting
,
func
()
{
applicationStartingCounter
++
})
applicationStartedCounter
:=
0
AddListener
(
ApplicationStarted
,
func
()
{
applicationStartedCounter
++
})
Convey
(
"When notify application starting should call listener"
,
func
()
{
Notify
(
ApplicationStarting
)
So
(
applicationStartingCounter
,
ShouldEqual
,
1
)
So
(
applicationStartedCounter
,
ShouldEqual
,
0
)
})
Convey
(
"When notify application started should call listener"
,
func
()
{
Notify
(
ApplicationStarted
)
So
(
applicationStartingCounter
,
ShouldEqual
,
0
)
So
(
applicationStartedCounter
,
ShouldEqual
,
1
)
})
})
})
}
pkg/login/auth.go
View file @
5d4dc18b
...
...
@@ -4,7 +4,6 @@ import (
"errors"
"github.com/grafana/grafana/pkg/bus"
"github.com/grafana/grafana/pkg/lifecycle"
m
"github.com/grafana/grafana/pkg/models"
)
...
...
@@ -20,11 +19,9 @@ var (
ErrGettingUserQuota
=
errors
.
New
(
"Error getting user quota"
)
)
func
init
()
{
lifecycle
.
AddListener
(
lifecycle
.
ApplicationStarting
,
func
()
{
bus
.
AddHandler
(
"auth"
,
AuthenticateUser
)
loadLdapConfig
()
})
func
Init
()
{
bus
.
AddHandler
(
"auth"
,
AuthenticateUser
)
loadLdapConfig
()
}
func
AuthenticateUser
(
query
*
m
.
LoginUserQuery
)
error
{
...
...
pkg/social/social.go
View file @
5d4dc18b
...
...
@@ -8,18 +8,11 @@ import (
"golang.org/x/oauth2"
"github.com/grafana/grafana/pkg/lifecycle"
"github.com/grafana/grafana/pkg/log"
"github.com/grafana/grafana/pkg/setting"
"github.com/grafana/grafana/pkg/util"
)
func
init
()
{
lifecycle
.
AddListener
(
lifecycle
.
ApplicationStarting
,
func
()
{
initOAuthService
()
})
}
type
BasicUserInfo
struct
{
Id
string
Name
string
...
...
@@ -63,7 +56,7 @@ var (
allOauthes
=
[]
string
{
"github"
,
"gitlab"
,
"google"
,
"generic_oauth"
,
"grafananet"
,
grafanaCom
}
)
func
init
OAuthService
()
{
func
New
OAuthService
()
{
setting
.
OAuthService
=
&
setting
.
OAuther
{}
setting
.
OAuthService
.
OAuthInfos
=
make
(
map
[
string
]
*
setting
.
OAuthInfo
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment