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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
38ea3939
Commit
38ea3939
authored
Mar 24, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'hiroponz-fix-404-json-file'
parents
979dcdba
29b0ac48
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
57 additions
and
107 deletions
+57
-107
app/controllers/blame_controller.rb
app/controllers/blame_controller.rb
+0
-2
app/controllers/blob_controller.rb
app/controllers/blob_controller.rb
+0
-2
app/controllers/edit_tree_controller.rb
app/controllers/edit_tree_controller.rb
+47
-0
app/controllers/tree_controller.rb
app/controllers/tree_controller.rb
+0
-39
app/views/edit_tree/show.html.haml
app/views/edit_tree/show.html.haml
+1
-1
app/views/tree/_blob_actions.html.haml
app/views/tree/_blob_actions.html.haml
+1
-1
config/routes.rb
config/routes.rb
+2
-1
lib/extracts_path.rb
lib/extracts_path.rb
+6
-19
spec/lib/extracts_path_spec.rb
spec/lib/extracts_path_spec.rb
+0
-42
No files found.
app/controllers/blame_controller.rb
View file @
38ea3939
...
@@ -7,8 +7,6 @@ class BlameController < ProjectResourceController
...
@@ -7,8 +7,6 @@ class BlameController < ProjectResourceController
before_filter
:authorize_code_access!
before_filter
:authorize_code_access!
before_filter
:require_non_empty_project
before_filter
:require_non_empty_project
before_filter
:assign_ref_vars
def
show
def
show
@repo
=
@project
.
repo
@repo
=
@project
.
repo
@blame
=
Grit
::
Blob
.
blame
(
@repo
,
@commit
.
id
,
@path
)
@blame
=
Grit
::
Blob
.
blame
(
@repo
,
@commit
.
id
,
@path
)
...
...
app/controllers/blob_controller.rb
View file @
38ea3939
...
@@ -7,8 +7,6 @@ class BlobController < ProjectResourceController
...
@@ -7,8 +7,6 @@ class BlobController < ProjectResourceController
before_filter
:authorize_code_access!
before_filter
:authorize_code_access!
before_filter
:require_non_empty_project
before_filter
:require_non_empty_project
before_filter
:assign_ref_vars
def
show
def
show
if
@tree
.
is_blob?
if
@tree
.
is_blob?
send_data
(
send_data
(
...
...
app/controllers/edit_tree_controller.rb
0 → 100644
View file @
38ea3939
# Controller for edit a repository's file
class
EditTreeController
<
ProjectResourceController
include
ExtractsPath
# Authorize
before_filter
:authorize_read_project!
before_filter
:authorize_code_access!
before_filter
:require_non_empty_project
before_filter
:edit_requirements
,
only:
[
:edit
,
:update
]
def
show
@last_commit
=
@project
.
repository
.
last_commit_for
(
@ref
,
@path
).
sha
end
def
update
edit_file_action
=
Gitlab
::
Satellite
::
EditFileAction
.
new
(
current_user
,
@project
,
@ref
,
@path
)
updated_successfully
=
edit_file_action
.
commit!
(
params
[
:content
],
params
[
:commit_message
],
params
[
:last_commit
]
)
if
updated_successfully
redirect_to
project_tree_path
(
@project
,
@id
),
notice:
"Your changes have been successfully commited"
else
flash
[
:notice
]
=
"Your changes could not be commited, because the file has been changed"
render
:edit
end
end
private
def
edit_requirements
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/controllers/tree_controller.rb
View file @
38ea3939
...
@@ -7,9 +7,6 @@ class TreeController < ProjectResourceController
...
@@ -7,9 +7,6 @@ class TreeController < ProjectResourceController
before_filter
:authorize_code_access!
before_filter
:authorize_code_access!
before_filter
:require_non_empty_project
before_filter
:require_non_empty_project
before_filter
:assign_ref_vars
before_filter
:edit_requirements
,
only:
[
:edit
,
:update
]
def
show
def
show
@hex_path
=
Digest
::
SHA1
.
hexdigest
(
@path
)
@hex_path
=
Digest
::
SHA1
.
hexdigest
(
@path
)
@logs_path
=
logs_file_project_ref_path
(
@project
,
@ref
,
@path
)
@logs_path
=
logs_file_project_ref_path
(
@project
,
@ref
,
@path
)
...
@@ -20,40 +17,4 @@ class TreeController < ProjectResourceController
...
@@ -20,40 +17,4 @@ class TreeController < ProjectResourceController
format
.
js
{
no_cache_headers
}
format
.
js
{
no_cache_headers
}
end
end
end
end
def
edit
@last_commit
=
@project
.
repository
.
last_commit_for
(
@ref
,
@path
).
sha
end
def
update
edit_file_action
=
Gitlab
::
Satellite
::
EditFileAction
.
new
(
current_user
,
@project
,
@ref
,
@path
)
updated_successfully
=
edit_file_action
.
commit!
(
params
[
:content
],
params
[
:commit_message
],
params
[
:last_commit
]
)
if
updated_successfully
redirect_to
project_tree_path
(
@project
,
@id
),
notice:
"Your changes have been successfully commited"
else
flash
[
:notice
]
=
"Your changes could not be commited, because the file has been changed"
render
:edit
end
end
private
def
edit_requirements
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
end
app/views/
tree/edit
.html.haml
→
app/views/
edit_tree/show
.html.haml
View file @
38ea3939
.file-editor
.file-editor
=
form_tag
(
project_tree_path
(
@project
,
@id
),
method: :put
,
class:
"form-horizontal"
)
do
=
form_tag
(
project_
edit_
tree_path
(
@project
,
@id
),
method: :put
,
class:
"form-horizontal"
)
do
.file_holder
.file_holder
.file_title
.file_title
%i
.icon-file
%i
.icon-file
...
...
app/views/tree/_blob_actions.html.haml
View file @
38ea3939
.btn-group.tree-btn-group
.btn-group.tree-btn-group
-# only show edit link for text files
-# only show edit link for text files
-
if
@tree
.
text?
-
if
@tree
.
text?
=
link_to
"edit"
,
edit_projec
t_tree_path
(
@project
,
@id
),
class:
"btn btn-tiny"
,
disabled:
!
allowed_tree_edit?
=
link_to
"edit"
,
project_edi
t_tree_path
(
@project
,
@id
),
class:
"btn btn-tiny"
,
disabled:
!
allowed_tree_edit?
=
link_to
"raw"
,
project_blob_path
(
@project
,
@id
),
class:
"btn btn-tiny"
,
target:
"_blank"
=
link_to
"raw"
,
project_blob_path
(
@project
,
@id
),
class:
"btn btn-tiny"
,
target:
"_blank"
-# only show normal/blame view links for text files
-# only show normal/blame view links for text files
-
if
@tree
.
text?
-
if
@tree
.
text?
...
...
config/routes.rb
View file @
38ea3939
...
@@ -168,7 +168,8 @@ Gitlab::Application.routes.draw do
...
@@ -168,7 +168,8 @@ Gitlab::Application.routes.draw do
#
#
resources
:projects
,
constraints:
{
id:
/(?:[a-zA-Z.0-9_\-]+\/)?[a-zA-Z.0-9_\-]+/
},
except:
[
:new
,
:create
,
:index
],
path:
"/"
do
resources
:projects
,
constraints:
{
id:
/(?:[a-zA-Z.0-9_\-]+\/)?[a-zA-Z.0-9_\-]+/
},
except:
[
:new
,
:create
,
:index
],
path:
"/"
do
resources
:blob
,
only:
[
:show
],
constraints:
{
id:
/.+/
}
resources
:blob
,
only:
[
:show
],
constraints:
{
id:
/.+/
}
resources
:tree
,
only:
[
:show
,
:edit
,
:update
],
constraints:
{
id:
/.+/
}
resources
:tree
,
only:
[
:show
],
constraints:
{
id:
/.+/
,
format:
/(html|js)/
}
resources
:edit_tree
,
only:
[
:show
,
:update
],
constraints:
{
id:
/.+/
},
path:
'edit'
resources
:commit
,
only:
[
:show
],
constraints:
{
id:
/[[:alnum:]]{6,40}/
}
resources
:commit
,
only:
[
:show
],
constraints:
{
id:
/[[:alnum:]]{6,40}/
}
resources
:commits
,
only:
[
:show
],
constraints:
{
id:
/(?:[^.]|\.(?!atom$))+/
,
format:
/atom/
}
resources
:commits
,
only:
[
:show
],
constraints:
{
id:
/(?:[^.]|\.(?!atom$))+/
,
format:
/atom/
}
resources
:compare
,
only:
[
:index
,
:create
]
resources
:compare
,
only:
[
:index
,
:create
]
...
...
lib/extracts_path.rb
View file @
38ea3939
...
@@ -8,7 +8,7 @@ module ExtractsPath
...
@@ -8,7 +8,7 @@ module ExtractsPath
included
do
included
do
if
respond_to?
(
:before_filter
)
if
respond_to?
(
:before_filter
)
before_filter
:assign_ref_vars
,
only:
[
:show
]
before_filter
:assign_ref_vars
end
end
end
end
...
@@ -33,7 +33,7 @@ module ExtractsPath
...
@@ -33,7 +33,7 @@ module ExtractsPath
# extract_ref("v2.0.0/README.md")
# extract_ref("v2.0.0/README.md")
# # => ['v2.0.0', 'README.md']
# # => ['v2.0.0', 'README.md']
#
#
# extract_ref('
/gitlab/vagrant/tree/
master/app/models/project.rb')
# extract_ref('master/app/models/project.rb')
# # => ['master', 'app/models/project.rb']
# # => ['master', 'app/models/project.rb']
#
#
# extract_ref('issues/1234/app/models/project.rb')
# extract_ref('issues/1234/app/models/project.rb')
...
@@ -45,22 +45,12 @@ module ExtractsPath
...
@@ -45,22 +45,12 @@ module ExtractsPath
#
#
# Returns an Array where the first value is the tree-ish and the second is the
# Returns an Array where the first value is the tree-ish and the second is the
# path
# path
def
extract_ref
(
i
nput
)
def
extract_ref
(
i
d
)
pair
=
[
''
,
''
]
pair
=
[
''
,
''
]
return
pair
unless
@project
return
pair
unless
@project
# Remove relative_url_root from path
if
id
.
match
(
/^([[:alnum:]]{40})(.+)/
)
input
.
gsub!
(
/^
#{
Gitlab
.
config
.
gitlab
.
relative_url_root
}
/
,
""
)
# Remove project, actions and all other staff from path
input
.
gsub!
(
/^\/
#{
Regexp
.
escape
(
@project
.
path_with_namespace
)
}
/
,
""
)
input
.
gsub!
(
/^\/(tree|commits|blame|blob|refs|graph)\//
,
""
)
# remove actions
input
.
gsub!
(
/\?.*$/
,
""
)
# remove stamps suffix
input
.
gsub!
(
/.atom$/
,
""
)
# remove rss feed
input
.
gsub!
(
/.json$/
,
""
)
# remove json suffix
input
.
gsub!
(
/\/edit$/
,
""
)
# remove edit route part
if
input
.
match
(
/^([[:alnum:]]{40})(.+)/
)
# If the ref appears to be a SHA, we're done, just split the string
# If the ref appears to be a SHA, we're done, just split the string
pair
=
$~
.
captures
pair
=
$~
.
captures
else
else
...
@@ -68,7 +58,6 @@ module ExtractsPath
...
@@ -68,7 +58,6 @@ module ExtractsPath
# branches and tags
# branches and tags
# Append a trailing slash if we only get a ref and no file path
# Append a trailing slash if we only get a ref and no file path
id
=
input
id
+=
'/'
unless
id
.
ends_with?
(
'/'
)
id
+=
'/'
unless
id
.
ends_with?
(
'/'
)
valid_refs
=
@project
.
repository
.
ref_names
valid_refs
=
@project
.
repository
.
ref_names
...
@@ -105,11 +94,9 @@ module ExtractsPath
...
@@ -105,11 +94,9 @@ module ExtractsPath
# Automatically renders `not_found!` if a valid tree path could not be
# Automatically renders `not_found!` if a valid tree path could not be
# resolved (e.g., when a user inserts an invalid path or ref).
# resolved (e.g., when a user inserts an invalid path or ref).
def
assign_ref_vars
def
assign_ref_vars
path
=
CGI
::
unescape
(
request
.
fullpath
.
dup
)
@id
=
params
[
:id
]
@ref
,
@path
=
extract_ref
(
path
)
@
id
=
File
.
join
(
@ref
,
@path
)
@
ref
,
@path
=
extract_ref
(
@id
)
# It is used "@project.repository.commits(@ref, @path, 1, 0)",
# It is used "@project.repository.commits(@ref, @path, 1, 0)",
# because "@project.repository.commit(@ref)" returns wrong commit when @ref is tag name.
# because "@project.repository.commit(@ref)" returns wrong commit when @ref is tag name.
...
...
spec/lib/extracts_path_spec.rb
View file @
38ea3939
...
@@ -54,47 +54,5 @@ describe ExtractsPath do
...
@@ -54,47 +54,5 @@ describe ExtractsPath do
extract_ref
(
'stable/CHANGELOG'
).
should
==
[
'stable'
,
'CHANGELOG'
]
extract_ref
(
'stable/CHANGELOG'
).
should
==
[
'stable'
,
'CHANGELOG'
]
end
end
end
end
context
"with a fullpath"
do
it
"extracts a valid branch"
do
extract_ref
(
'/gitlab/gitlab-ci/tree/foo/bar/baz/CHANGELOG'
).
should
==
[
'foo/bar/baz'
,
'CHANGELOG'
]
end
it
"extracts a valid tag"
do
extract_ref
(
'/gitlab/gitlab-ci/tree/v2.0.0/CHANGELOG'
).
should
==
[
'v2.0.0'
,
'CHANGELOG'
]
end
it
"extracts a valid commit SHA"
do
extract_ref
(
'/gitlab/gitlab-ci/tree/f4b14494ef6abf3d144c28e4af0c20143383e062/CHANGELOG'
).
should
==
[
'f4b14494ef6abf3d144c28e4af0c20143383e062'
,
'CHANGELOG'
]
end
it
"extracts a timestamp"
do
extract_ref
(
'/gitlab/gitlab-ci/tree/v2.0.0/CHANGELOG?_=12354435'
).
should
==
[
'v2.0.0'
,
'CHANGELOG'
]
end
end
context
"with a fullpath and a relative_url_root"
do
before
do
Gitlab
.
config
.
gitlab
.
stub
(
relative_url_root:
'/relative'
)
end
it
"extracts a valid branch with relative_url_root"
do
extract_ref
(
'/relative/gitlab/gitlab-ci/tree/foo/bar/baz/CHANGELOG'
).
should
==
[
'foo/bar/baz'
,
'CHANGELOG'
]
end
it
"extracts a valid tag"
do
extract_ref
(
'/relative/gitlab/gitlab-ci/tree/v2.0.0/CHANGELOG'
).
should
==
[
'v2.0.0'
,
'CHANGELOG'
]
end
it
"extracts a valid commit SHA"
do
extract_ref
(
'/relative/gitlab/gitlab-ci/tree/f4b14494ef6abf3d144c28e4af0c20143383e062/CHANGELOG'
).
should
==
[
'f4b14494ef6abf3d144c28e4af0c20143383e062'
,
'CHANGELOG'
]
end
it
"extracts a timestamp"
do
extract_ref
(
'/relative/gitlab/gitlab-ci/tree/v2.0.0/CHANGELOG?_=12354435'
).
should
==
[
'v2.0.0'
,
'CHANGELOG'
]
end
end
end
end
end
end
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