Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Chenhao Ma
core
Commits
d477ee4c
Commit
d477ee4c
authored
7 years ago
by
hkethi002
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #797 from scitran/db-enforce-https
Enforce https for avatars
parents
653c1012
dd0df15e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
bin/database.py
+32
-1
32 additions, 1 deletion
bin/database.py
raml/schemas/definitions/avatars.json
+1
-1
1 addition, 1 deletion
raml/schemas/definitions/avatars.json
test/integration_tests/python/test_users.py
+22
-0
22 additions, 0 deletions
test/integration_tests/python/test_users.py
with
55 additions
and
2 deletions
bin/database.py
+
32
−
1
View file @
d477ee4c
...
...
@@ -19,7 +19,7 @@ from api.jobs.jobs import Job
from
api.jobs
import
gears
from
api.types
import
Origin
CURRENT_DATABASE_VERSION
=
2
8
# An int that is bumped when a new schema change is made
CURRENT_DATABASE_VERSION
=
2
9
# An int that is bumped when a new schema change is made
def
get_db_version
():
...
...
@@ -960,6 +960,7 @@ def upgrade_to_26_closure(job):
if
gear
.
get
(
'
gear
'
,
{}).
get
(
'
name
'
,
None
)
is
None
:
logging
.
info
(
'
No gear found for job
'
+
str
(
job
[
'
_id
'
]))
return
True
# This logic WILL NOT WORK in parallel mode
gear_name
=
gear
[
'
gear
'
][
'
name
'
]
...
...
@@ -1024,6 +1025,36 @@ def upgrade_to_28():
config
.
db
.
sessions
.
update
({
'
_id
'
:
session
[
'
_id
'
]},
session
)
def
upgrade_to_29_closure
(
user
):
avatars
=
user
[
'
avatars
'
]
if
avatars
.
get
(
'
custom
'
)
and
not
'
https:
'
in
avatars
[
'
custom
'
]:
if
user
[
'
avatar
'
]
==
user
[
'
avatars
'
][
'
custom
'
]:
if
(
user
[
'
avatars
'
].
get
(
'
provider
'
)
==
None
):
config
.
db
.
users
.
update_one
({
'
_id
'
:
user
[
'
_id
'
]},
{
'
$unset
'
:
{
'
avatar
'
:
""
}})
else
:
config
.
db
.
users
.
update_one
({
'
_id
'
:
user
[
'
_id
'
]},
{
'
$set
'
:
{
'
avatar
'
:
user
[
'
avatars
'
].
get
(
'
provider
'
)}}
)
logging
.
info
(
'
Deleting custom ...
'
)
config
.
db
.
users
.
update_one
({
'
_id
'
:
user
[
'
_id
'
]},
{
'
$unset
'
:
{
"
avatars.custom
"
:
""
}}
)
return
True
def
upgrade_to_29
():
"""
Enforces HTTPS urls for user avatars
"""
users
=
config
.
db
.
users
.
find
({})
process_cursor
(
users
,
upgrade_to_29_closure
)
def
upgrade_schema
():
"""
Upgrades db to the current schema version
...
...
This diff is collapsed.
Click to expand it.
raml/schemas/definitions/avatars.json
+
1
−
1
View file @
d477ee4c
...
...
@@ -5,7 +5,7 @@
"properties"
:
{
"gravatar"
:
{
"type"
:
[
"string"
,
"null"
],
"format"
:
"uri"
},
"provider"
:
{
"type"
:
[
"string"
,
"null"
],
"format"
:
"uri"
},
"custom"
:
{
"type"
:
[
"string"
,
"null"
],
"format"
:
"uri"
}
"custom"
:
{
"type"
:
[
"string"
,
"null"
],
"pattern"
:
"^https:"
,
"format"
:
"uri"
}
},
"additionalProperties"
:
false
}
This diff is collapsed.
Click to expand it.
test/integration_tests/python/test_users.py
+
22
−
0
View file @
d477ee4c
...
...
@@ -67,6 +67,28 @@ def test_users(as_root, as_user, as_public):
r
=
as_root
.
delete
(
'
/users/
'
+
new_user_id
)
assert
r
.
ok
# Test HTTPS enforcement on avatar urls
new_user_id
=
'
new@user.com
'
r
=
as_root
.
post
(
'
/users
'
,
json
=
{
'
_id
'
:
new_user_id
,
'
firstname
'
:
'
New
'
,
'
lastname
'
:
'
User
'
,
})
assert
r
.
ok
r
=
as_root
.
get
(
'
/users/
'
+
new_user_id
)
assert
r
.
ok
r
=
as_root
.
put
(
'
/users/
'
+
new_user_id
,
json
=
{
'
avatar
'
:
'
https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg
'
})
r
=
as_root
.
get
(
'
/users/
'
+
new_user_id
)
assert
r
.
json
()[
'
avatar
'
]
==
'
https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg
'
r
=
as_root
.
put
(
'
/users/
'
+
new_user_id
,
json
=
{
'
avatar
'
:
'
http://media.nomadicmatt.com/maldivestop001.jpg
'
,
'
avatars
'
:
{
'
custom
'
:
'
http://media.nomadicmatt.com/maldivestop001.jpg
'
,
'
provider
'
:
'
https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg
'
}})
assert
r
.
status_code
==
400
r
=
as_root
.
get
(
'
/users/
'
+
new_user_id
)
assert
r
.
json
()[
'
avatar
'
]
!=
'
http://media.nomadicmatt.com/maldivestop001.jpg
'
r
=
as_root
.
delete
(
'
/users/
'
+
new_user_id
)
assert
r
.
ok
def
test_generate_api_key
(
data_builder
,
as_public
):
# Try to generate new api key w/o logging in
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment