Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
gitlab-ce
Commits
0189ee97
Commit
0189ee97
authored
Oct 21, 2012
by
randx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Security for online editor. Replace dev_access?, master_access? with can? method usage
parent
5ec1ad8b
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
56 additions
and
18 deletions
+56
-18
app/controllers/tree_controller.rb
app/controllers/tree_controller.rb
+8
-0
app/helpers/tree_helper.rb
app/helpers/tree_helper.rb
+8
-0
app/models/ability.rb
app/models/ability.rb
+6
-1
app/roles/authority.rb
app/roles/authority.rb
+1
-1
app/roles/repository.rb
app/roles/repository.rb
+5
-0
app/views/tree/_blob_actions.html.haml
app/views/tree/_blob_actions.html.haml
+1
-1
lib/gitlab/backend/grack_auth.rb
lib/gitlab/backend/grack_auth.rb
+27
-15
No files found.
app/controllers/tree_controller.rb
View file @
0189ee97
...
...
@@ -48,5 +48,13 @@ class TreeController < ProjectResourceController
unless
@tree
.
is_blob?
&&
@tree
.
text?
redirect_to
project_tree_path
(
@project
,
@id
),
notice:
"You can only edit text files"
end
allowed
=
if
project
.
protected_branch?
@ref
can?
(
current_user
,
:push_code_to_protected_branches
,
project
)
else
can?
(
current_user
,
:push_code
,
project
)
end
return
access_denied!
unless
allowed
end
end
app/helpers/tree_helper.rb
View file @
0189ee97
...
...
@@ -59,4 +59,12 @@ module TreeHelper
def
tree_join
(
*
args
)
File
.
join
(
*
args
)
end
def
allowed_tree_edit?
if
@project
.
protected_branch?
@ref
can?
(
current_user
,
:push_code_to_protected_branches
,
@project
)
else
can?
(
current_user
,
:push_code
,
@project
)
end
end
end
app/models/ability.rb
View file @
0189ee97
...
...
@@ -35,9 +35,14 @@ class Ability
]
if
project
.
report_access_for?
(
user
)
rules
<<
[
:write_wiki
:write_wiki
,
:push_code
]
if
project
.
dev_access_for?
(
user
)
rules
<<
[
:push_code_to_protected_branches
]
if
project
.
master_access_for?
(
user
)
rules
<<
[
:modify_issue
,
:modify_snippet
,
...
...
app/roles/authority.rb
View file @
0189ee97
...
...
@@ -53,6 +53,6 @@ module Authority
end
def
master_access_for?
(
user
)
!
users_projects
.
where
(
user_id:
user
.
id
,
project_access:
[
UsersProject
::
MASTER
]).
empty?
||
owner_id
==
user
.
id
!
users_projects
.
where
(
user_id:
user
.
id
,
project_access:
[
UsersProject
::
MASTER
]).
empty?
end
end
app/roles/repository.rb
View file @
0189ee97
...
...
@@ -181,4 +181,9 @@ module Repository
def
http_url_to_repo
http_url
=
[
Gitlab
.
config
.
url
,
"/"
,
path
,
".git"
].
join
(
''
)
end
# Check if current branch name is marked as protected in the system
def
protected_branch?
branch_name
protected_branches
.
map
(
&
:name
).
include?
(
branch_name
)
end
end
app/views/tree/_blob_actions.html.haml
View file @
0189ee97
.btn-group.tree-btn-group
-# only show edit link for text files
-
if
@tree
.
text?
=
link_to
"edit"
,
edit_project_tree_path
(
@project
,
@id
),
class:
"btn very_small"
=
link_to
"edit"
,
edit_project_tree_path
(
@project
,
@id
),
class:
"btn very_small"
,
disabled:
!
allowed_tree_edit?
=
link_to
"raw"
,
project_blob_path
(
@project
,
@id
),
class:
"btn very_small"
,
target:
"_blank"
-# only show normal/blame view links for text files
-
if
@tree
.
text?
...
...
lib/gitlab/backend/grack_auth.rb
View file @
0189ee97
module
Grack
class
Auth
<
Rack
::
Auth
::
Basic
attr_accessor
:user
,
:project
def
valid?
# Authentication with username and password
email
,
password
=
@auth
.
credentials
user
=
User
.
find_by_email
(
email
)
self
.
user
=
User
.
find_by_email
(
email
)
return
false
unless
user
.
try
(
:valid_password?
,
password
)
# Set GL_USER env variable
...
...
@@ -18,28 +19,39 @@ module Grack
# Find project by PATH_INFO from env
if
m
=
/^\/([\w-]+).git/
.
match
(
@request
.
path_info
).
to_a
return
false
unless
project
=
Project
.
find_by_path
(
m
.
last
)
self
.
project
=
Project
.
find_by_path
(
m
.
last
)
return
false
unless
project
end
# Git upload and receive
if
@request
.
get?
true
validate_get_request
elsif
@request
.
post?
validate_post_request
else
false
end
end
def
validate_get_request
true
end
def
validate_post_request
if
@request
.
path_info
.
end_with?
(
'git-upload-pack'
)
return
project
.
dev_access_for?
(
user
)
can?
(
user
,
:push_code
,
project
)
elsif
@request
.
path_info
.
end_with?
(
'git-receive-pack'
)
if
project
.
protected_branches
.
map
(
&
:name
).
include
?
(
current_ref
)
project
.
master_access_for?
(
user
)
action
=
if
project
.
protected_branch
?
(
current_ref
)
:push_code_to_protected_branches
else
project
.
dev_access_for?
(
user
)
:push_code
end
can?
(
user
,
action
,
project
)
else
false
end
else
false
end
end
# valid?
def
current_ref
if
@env
[
"HTTP_CONTENT_ENCODING"
]
=~
/gzip/
...
...
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