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
5f81c879
Commit
5f81c879
authored
Aug 21, 2018
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'code-migrations'
parents
eef0d280
92ed1f04
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
89 additions
and
8 deletions
+89
-8
pkg/api/login.go
+7
-1
pkg/services/sqlstore/migrations/user_mig.go
+40
-1
pkg/services/sqlstore/migrator/migrator.go
+11
-5
pkg/services/sqlstore/migrator/types.go
+7
-0
pkg/services/sqlstore/user.go
+2
-1
pkg/services/sqlstore/user_test.go
+22
-0
No files found.
pkg/api/login.go
View file @
5f81c879
...
...
@@ -78,7 +78,13 @@ func tryLoginUsingRememberCookie(c *m.ReqContext) bool {
user
:=
userQuery
.
Result
// validate remember me cookie
if
val
,
_
:=
c
.
GetSuperSecureCookie
(
user
.
Rands
+
user
.
Password
,
setting
.
CookieRememberName
);
val
!=
user
.
Login
{
signingKey
:=
user
.
Rands
+
user
.
Password
if
len
(
signingKey
)
<
10
{
c
.
Logger
.
Error
(
"Invalid user signingKey"
)
return
false
}
if
val
,
_
:=
c
.
GetSuperSecureCookie
(
signingKey
,
setting
.
CookieRememberName
);
val
!=
user
.
Login
{
return
false
}
...
...
pkg/services/sqlstore/migrations/user_mig.go
View file @
5f81c879
package
migrations
import
.
"github.com/grafana/grafana/pkg/services/sqlstore/migrator"
import
(
"fmt"
"github.com/go-xorm/xorm"
.
"github.com/grafana/grafana/pkg/services/sqlstore/migrator"
"github.com/grafana/grafana/pkg/util"
)
func
addUserMigrations
(
mg
*
Migrator
)
{
userV1
:=
Table
{
...
...
@@ -107,4 +113,37 @@ func addUserMigrations(mg *Migrator) {
mg
.
AddMigration
(
"Add last_seen_at column to user"
,
NewAddColumnMigration
(
userV2
,
&
Column
{
Name
:
"last_seen_at"
,
Type
:
DB_DateTime
,
Nullable
:
true
,
}))
// Adds salt & rands for old users who used ldap or oauth
mg
.
AddMigration
(
"Add missing user data"
,
&
AddMissingUserSaltAndRandsMigration
{})
}
type
AddMissingUserSaltAndRandsMigration
struct
{
MigrationBase
}
func
(
m
*
AddMissingUserSaltAndRandsMigration
)
Sql
(
dialect
Dialect
)
string
{
return
"code migration"
}
type
TempUserDTO
struct
{
Id
int64
Login
string
}
func
(
m
*
AddMissingUserSaltAndRandsMigration
)
Exec
(
sess
*
xorm
.
Session
,
mg
*
Migrator
)
error
{
users
:=
make
([]
*
TempUserDTO
,
0
)
err
:=
sess
.
Sql
(
fmt
.
Sprintf
(
"SELECT id, login from %s WHERE rands = ''"
,
mg
.
Dialect
.
Quote
(
"user"
)))
.
Find
(
&
users
)
if
err
!=
nil
{
return
err
}
for
_
,
user
:=
range
users
{
_
,
err
:=
sess
.
Exec
(
"UPDATE "
+
mg
.
Dialect
.
Quote
(
"user"
)
+
" SET salt = ?, rands = ? WHERE id = ?"
,
util
.
GetRandomString
(
10
),
util
.
GetRandomString
(
10
),
user
.
Id
)
if
err
!=
nil
{
return
err
}
}
return
nil
}
pkg/services/sqlstore/migrator/migrator.go
View file @
5f81c879
...
...
@@ -12,7 +12,7 @@ import (
type
Migrator
struct
{
x
*
xorm
.
Engine
d
ialect
Dialect
D
ialect
Dialect
migrations
[]
Migration
Logger
log
.
Logger
}
...
...
@@ -31,7 +31,7 @@ func NewMigrator(engine *xorm.Engine) *Migrator {
mg
.
x
=
engine
mg
.
Logger
=
log
.
New
(
"migrator"
)
mg
.
migrations
=
make
([]
Migration
,
0
)
mg
.
d
ialect
=
NewDialect
(
mg
.
x
)
mg
.
D
ialect
=
NewDialect
(
mg
.
x
)
return
mg
}
...
...
@@ -86,7 +86,7 @@ func (mg *Migrator) Start() error {
continue
}
sql
:=
m
.
Sql
(
mg
.
d
ialect
)
sql
:=
m
.
Sql
(
mg
.
D
ialect
)
record
:=
MigrationLog
{
MigrationId
:
m
.
Id
(),
...
...
@@ -122,7 +122,7 @@ func (mg *Migrator) exec(m Migration, sess *xorm.Session) error {
condition
:=
m
.
GetCondition
()
if
condition
!=
nil
{
sql
,
args
:=
condition
.
Sql
(
mg
.
d
ialect
)
sql
,
args
:=
condition
.
Sql
(
mg
.
D
ialect
)
results
,
err
:=
sess
.
SQL
(
sql
)
.
Query
(
args
...
)
if
err
!=
nil
||
len
(
results
)
==
0
{
mg
.
Logger
.
Debug
(
"Skipping migration condition not fulfilled"
,
"id"
,
m
.
Id
())
...
...
@@ -130,7 +130,13 @@ func (mg *Migrator) exec(m Migration, sess *xorm.Session) error {
}
}
_
,
err
:=
sess
.
Exec
(
m
.
Sql
(
mg
.
dialect
))
var
err
error
if
codeMigration
,
ok
:=
m
.
(
CodeMigration
);
ok
{
err
=
codeMigration
.
Exec
(
sess
,
mg
)
}
else
{
_
,
err
=
sess
.
Exec
(
m
.
Sql
(
mg
.
Dialect
))
}
if
err
!=
nil
{
mg
.
Logger
.
Error
(
"Executing migration failed"
,
"id"
,
m
.
Id
(),
"error"
,
err
)
return
err
...
...
pkg/services/sqlstore/migrator/types.go
View file @
5f81c879
...
...
@@ -3,6 +3,8 @@ package migrator
import
(
"fmt"
"strings"
"github.com/go-xorm/xorm"
)
const
(
...
...
@@ -19,6 +21,11 @@ type Migration interface {
GetCondition
()
MigrationCondition
}
type
CodeMigration
interface
{
Migration
Exec
(
sess
*
xorm
.
Session
,
migrator
*
Migrator
)
error
}
type
SQLType
string
type
ColumnType
string
...
...
pkg/services/sqlstore/user.go
View file @
5f81c879
...
...
@@ -113,9 +113,10 @@ func CreateUser(ctx context.Context, cmd *m.CreateUserCommand) error {
LastSeenAt
:
time
.
Now
()
.
AddDate
(
-
10
,
0
,
0
),
}
if
len
(
cmd
.
Password
)
>
0
{
user
.
Salt
=
util
.
GetRandomString
(
10
)
user
.
Rands
=
util
.
GetRandomString
(
10
)
if
len
(
cmd
.
Password
)
>
0
{
user
.
Password
=
util
.
EncodePassword
(
cmd
.
Password
,
user
.
Salt
)
}
...
...
pkg/services/sqlstore/user_test.go
View file @
5f81c879
...
...
@@ -15,6 +15,28 @@ func TestUserDataAccess(t *testing.T) {
Convey
(
"Testing DB"
,
t
,
func
()
{
InitTestDB
(
t
)
Convey
(
"Creating a user"
,
func
()
{
cmd
:=
&
m
.
CreateUserCommand
{
Email
:
"usertest@test.com"
,
Name
:
"user name"
,
Login
:
"user_test_login"
,
}
err
:=
CreateUser
(
context
.
Background
(),
cmd
)
So
(
err
,
ShouldBeNil
)
Convey
(
"Loading a user"
,
func
()
{
query
:=
m
.
GetUserByIdQuery
{
Id
:
cmd
.
Result
.
Id
}
err
:=
GetUserById
(
&
query
)
So
(
err
,
ShouldBeNil
)
So
(
query
.
Result
.
Email
,
ShouldEqual
,
"usertest@test.com"
)
So
(
query
.
Result
.
Password
,
ShouldEqual
,
""
)
So
(
query
.
Result
.
Rands
,
ShouldHaveLength
,
10
)
So
(
query
.
Result
.
Salt
,
ShouldHaveLength
,
10
)
})
})
Convey
(
"Given 5 users"
,
func
()
{
var
err
error
var
cmd
*
m
.
CreateUserCommand
...
...
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