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
27bf7ae5
Commit
27bf7ae5
authored
May 27, 2016
by
ZJ van de Weg
Committed by
Alfredo Sumaran
Jun 20, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor Gitlab::Gitignores
parent
74f8f260
Changes
12
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
183 additions
and
143 deletions
+183
-143
app/helpers/blob_helper.rb
app/helpers/blob_helper.rb
+3
-5
lib/api/api.rb
lib/api/api.rb
+1
-1
lib/api/entities.rb
lib/api/entities.rb
+2
-2
lib/api/gitignores.rb
lib/api/gitignores.rb
+0
-29
lib/api/templates.rb
lib/api/templates.rb
+35
-0
lib/gitlab/gitignore.rb
lib/gitlab/gitignore.rb
+0
-56
lib/gitlab/template/base_template.rb
lib/gitlab/template/base_template.rb
+54
-0
lib/gitlab/template/gitignore.rb
lib/gitlab/template/gitignore.rb
+23
-0
lib/tasks/gitlab/update_gitignore.rake
lib/tasks/gitlab/update_gitignore.rake
+0
-46
lib/tasks/gitlab/update_templates.rake
lib/tasks/gitlab/update_templates.rake
+61
-0
spec/lib/gitlab/template/gitignore_spec.rb
spec/lib/gitlab/template/gitignore_spec.rb
+3
-3
spec/requests/api/gitignores_spec.rb
spec/requests/api/gitignores_spec.rb
+1
-1
No files found.
app/helpers/blob_helper.rb
View file @
27bf7ae5
...
@@ -188,10 +188,8 @@ module BlobHelper
...
@@ -188,10 +188,8 @@ module BlobHelper
def
gitignore_names
def
gitignore_names
return
@gitignore_names
if
defined?
(
@gitignore_names
)
return
@gitignore_names
if
defined?
(
@gitignore_names
)
@gitignore_names
=
{
@gitignore_names
=
Gitlab
::
Template
::
Gitignore
.
categories
.
map
do
|
k
,
_
|
Global
:
Gitlab
::
Gitignore
.
global
.
map
{
|
gitignore
|
{
name:
gitignore
.
name
}
},
[
k
,
Gitlab
::
Template
::
Gitignore
.
by_category
(
k
)]
# Note that the key here doesn't cover it really
end
.
to_h
Languages
:
Gitlab
::
Gitignore
.
languages_frameworks
.
map
{
|
gitignore
|
{
name:
gitignore
.
name
}
}
}
end
end
end
end
lib/api/api.rb
View file @
27bf7ae5
...
@@ -33,7 +33,6 @@ module API
...
@@ -33,7 +33,6 @@ module API
mount
::
API
::
Commits
mount
::
API
::
Commits
mount
::
API
::
DeployKeys
mount
::
API
::
DeployKeys
mount
::
API
::
Files
mount
::
API
::
Files
mount
::
API
::
Gitignores
mount
::
API
::
GroupMembers
mount
::
API
::
GroupMembers
mount
::
API
::
Groups
mount
::
API
::
Groups
mount
::
API
::
Internal
mount
::
API
::
Internal
...
@@ -58,6 +57,7 @@ module API
...
@@ -58,6 +57,7 @@ module API
mount
::
API
::
Subscriptions
mount
::
API
::
Subscriptions
mount
::
API
::
SystemHooks
mount
::
API
::
SystemHooks
mount
::
API
::
Tags
mount
::
API
::
Tags
mount
::
API
::
Templates
mount
::
API
::
Triggers
mount
::
API
::
Triggers
mount
::
API
::
Users
mount
::
API
::
Users
mount
::
API
::
Variables
mount
::
API
::
Variables
...
...
lib/api/entities.rb
View file @
27bf7ae5
...
@@ -472,11 +472,11 @@ module API
...
@@ -472,11 +472,11 @@ module API
expose
:content
expose
:content
end
end
class
Gitignor
esList
<
Grape
::
Entity
class
Templat
esList
<
Grape
::
Entity
expose
:name
expose
:name
end
end
class
Gitignor
e
<
Grape
::
Entity
class
Templat
e
<
Grape
::
Entity
expose
:name
,
:content
expose
:name
,
:content
end
end
end
end
...
...
lib/api/gitignores.rb
deleted
100644 → 0
View file @
74f8f260
module
API
class
Gitignores
<
Grape
::
API
# Get the list of the available gitignore templates
#
# Example Request:
# GET /gitignores
get
'gitignores'
do
present
Gitlab
::
Gitignore
.
all
,
with:
Entities
::
GitignoresList
end
# Get the text for a specific gitignore
#
# Parameters:
# name (required) - The name of a license
#
# Example Request:
# GET /gitignores/Elixir
#
get
'gitignores/:name'
do
required_attributes!
[
:name
]
gitignore
=
Gitlab
::
Gitignore
.
find
(
params
[
:name
])
not_found!
(
'.gitignore'
)
unless
gitignore
present
gitignore
,
with:
Entities
::
Gitignore
end
end
end
lib/api/templates.rb
0 → 100644
View file @
27bf7ae5
module
API
class
Templates
<
Grape
::
API
TEMPLATE_TYPES
=
{
gitignores:
Gitlab
::
Template
::
Gitignore
}.
freeze
TEMPLATE_TYPES
.
each
do
|
template
,
klass
|
# Get the list of the available template
#
# Example Request:
# GET /gitignores
# GET /gitlab_ci_ymls
get
template
.
to_s
do
present
klass
.
all
,
with:
Entities
::
TemplatesList
end
# Get the text for a specific template
#
# Parameters:
# name (required) - The name of a template
#
# Example Request:
# GET /gitignores/Elixir
# GET /gitlab_ci_ymls/Ruby
get
"
#{
template
}
/:name"
do
required_attributes!
[
:name
]
new_template
=
klass
.
find
(
params
[
:name
])
not_found!
(
"
#{
template
.
to_s
.
singularize
}
"
)
unless
new_template
present
new_template
,
with:
Entities
::
Template
end
end
end
end
lib/gitlab/gitignore.rb
deleted
100644 → 0
View file @
74f8f260
module
Gitlab
class
Gitignore
FILTER_REGEX
=
/\.gitignore\z/
.
freeze
def
initialize
(
path
)
@path
=
path
end
def
name
File
.
basename
(
@path
,
'.gitignore'
)
end
def
content
File
.
read
(
@path
)
end
class
<<
self
def
all
languages_frameworks
+
global
end
def
find
(
key
)
file_name
=
"
#{
key
}
.gitignore"
directory
=
select_directory
(
file_name
)
directory
?
new
(
File
.
join
(
directory
,
file_name
))
:
nil
end
def
global
files_for_folder
(
global_dir
).
map
{
|
file
|
new
(
File
.
join
(
global_dir
,
file
))
}
end
def
languages_frameworks
files_for_folder
(
gitignore_dir
).
map
{
|
file
|
new
(
File
.
join
(
gitignore_dir
,
file
))
}
end
private
def
select_directory
(
file_name
)
[
gitignore_dir
,
global_dir
].
find
{
|
dir
|
File
.
exist?
(
File
.
join
(
dir
,
file_name
))
}
end
def
global_dir
File
.
join
(
gitignore_dir
,
'Global'
)
end
def
gitignore_dir
Rails
.
root
.
join
(
'vendor/gitignore'
)
end
def
files_for_folder
(
dir
)
Dir
.
glob
(
"
#{
dir
.
to_s
}
/*.gitignore"
).
map
{
|
file
|
file
.
gsub
(
FILTER_REGEX
,
''
)
}
end
end
end
end
lib/gitlab/template/base_template.rb
0 → 100644
View file @
27bf7ae5
module
Gitlab
module
Template
class
BaseTemplate
def
initialize
(
path
)
@path
=
path
end
def
name
File
.
basename
(
@path
,
self
.
class
.
extension
)
end
def
content
File
.
read
(
@path
)
end
class
<<
self
def
all
self
.
category_directories
.
flat_map
do
|
dir
|
templates_for_folder
(
dir
)
end
end
def
find
(
key
)
file_name
=
"
#{
key
}#{
self
.
extension
}
"
directory
=
select_directory
(
file_name
)
directory
?
new
(
File
.
join
(
directory
,
file_name
))
:
nil
end
def
by_category
(
category
)
templates_for_folder
(
categories
[
category
])
end
def
category_directories
self
.
categories
.
values
.
map
{
|
subdir
|
File
.
join
(
base_dir
,
subdir
)}
end
private
def
select_directory
(
file_name
)
category_directories
.
find
{
|
dir
|
File
.
exist?
(
File
.
join
(
dir
,
file_name
))
}
end
def
templates_for_folder
(
dir
)
Dir
.
glob
(
"
#{
dir
.
to_s
}
/*
#{
self
.
extension
}
"
).
select
{
|
f
|
f
=~
filter_regex
}.
map
{
|
f
|
new
(
f
)
}
end
def
filter_regex
/
#{
Regexp
.
escape
(
extension
)
}
\z/
end
end
end
end
end
lib/gitlab/template/gitignore.rb
0 → 100644
View file @
27bf7ae5
module
Gitlab
module
Template
class
Gitignore
<
BaseTemplate
class
<<
self
def
extension
'.gitignore'
end
def
categories
{
Languages
:
''
,
Global
:
'Global'
}
end
def
base_dir
Rails
.
root
.
join
(
'vendor/gitignore'
)
end
end
end
end
end
lib/tasks/gitlab/update_gitignore.rake
deleted
100644 → 0
View file @
74f8f260
namespace
:gitlab
do
desc
"GitLab | Update gitignore"
task
:update_gitignore
do
unless
clone_gitignores
puts
"Cloning the gitignores failed"
.
color
(
:red
)
return
end
remove_unneeded_files
(
gitignore_directory
)
remove_unneeded_files
(
global_directory
)
puts
"Done"
.
color
(
:green
)
end
def
clone_gitignores
FileUtils
.
rm_rf
(
gitignore_directory
)
if
Dir
.
exist?
(
gitignore_directory
)
FileUtils
.
cd
vendor_directory
system
(
'git clone --depth=1 --branch=master https://github.com/github/gitignore.git'
)
end
# Retain only certain files:
# - The LICENSE, because we have to
# - The sub dir global
# - The gitignores themself
# - Dir.entires returns also the entries '.' and '..'
def
remove_unneeded_files
(
path
)
Dir
.
foreach
(
path
)
do
|
file
|
FileUtils
.
rm_rf
(
File
.
join
(
path
,
file
))
unless
file
=~
/(\.{1,2}|LICENSE|Global|\.gitignore)\z/
end
end
private
def
vendor_directory
Rails
.
root
.
join
(
'vendor'
)
end
def
gitignore_directory
File
.
join
(
vendor_directory
,
'gitignore'
)
end
def
global_directory
File
.
join
(
gitignore_directory
,
'Global'
)
end
end
lib/tasks/gitlab/update_templates.rake
0 → 100644
View file @
27bf7ae5
namespace
:gitlab
do
desc
"GitLab | Update templates"
task
:update_templates
do
update
(
"gitignore"
)
update
(
"gitlab-ci-yml"
)
end
def
update
(
directory
)
unless
clone_repository
(
directory
)
puts
"Cloning the
#{
directory
}
templates failed"
.
red
return
end
remove_unneeded_files
(
directory
)
puts
"Done"
.
green
end
def
clone_repository
(
directory
)
dir
=
File
.
join
(
vendor_directory
,
directory
)
FileUtils
.
rm_rf
(
dir
)
if
Dir
.
exist?
(
dir
)
FileUtils
.
cd
vendor_directory
system
(
"git clone --depth=1 --branch=master
#{
TEMPLATE_DATA
[
directory
]
}
"
)
end
# Retain only certain files:
# - The LICENSE, because we have to
# - The sub dir global
# - The gitignores themself
# - Dir.entires returns also the entries '.' and '..'
def
remove_unneeded_files
(
directory
)
regex
=
CLEANUP_REGEX
[
directory
]
Dir
.
foreach
(
directory
)
do
|
file
|
FileUtils
.
rm_rf
(
File
.
join
(
directory
,
file
))
unless
file
=~
regex
end
end
private
TEMPLATE_DATA
=
{
"gitignore"
=>
"https://github.com/github/gitignore.git"
,
"gitlab-ci-yml"
=>
"https://gitlab.com/gitlab-org/gitlab-ci-yml.git"
}.
freeze
CLEANUP_REGEX
=
{
"gitignore"
=>
/(\.{1,2}|LICENSE|Global|\.gitignore)\z/
,
"gitlab-ci-yml"
=>
/(\.{1,2}|LICENSE|Pages|\.gitignore)\z/
}.
freeze
def
vendor_directory
Rails
.
root
.
join
(
'vendor'
)
end
def
gitignore_directory
File
.
join
(
vendor_directory
,
'gitignore'
)
end
def
gitlab_ci_directory
File
.
join
(
vendor_directory
,
'gitlab-ci'
)
end
end
spec/lib/gitlab/gitignore_spec.rb
→
spec/lib/gitlab/
template/
gitignore_spec.rb
View file @
27bf7ae5
require
'spec_helper'
require
'spec_helper'
describe
Gitlab
::
Gitignore
do
describe
Gitlab
::
Template
::
Gitignore
do
subject
{
Gitlab
::
Gitignore
}
subject
{
described_class
}
describe
'.all'
do
describe
'.all'
do
it
'strips the gitignore suffix'
do
it
'strips the gitignore suffix'
do
...
@@ -24,7 +24,7 @@ describe Gitlab::Gitignore do
...
@@ -24,7 +24,7 @@ describe Gitlab::Gitignore do
it
'returns the Gitignore object of a valid file'
do
it
'returns the Gitignore object of a valid file'
do
ruby
=
subject
.
find
(
'Ruby'
)
ruby
=
subject
.
find
(
'Ruby'
)
expect
(
ruby
).
to
be_a
Gitlab
::
Gitignore
expect
(
ruby
).
to
be_a
Gitlab
::
Template
::
Gitignore
expect
(
ruby
.
name
).
to
eq
(
'Ruby'
)
expect
(
ruby
.
name
).
to
eq
(
'Ruby'
)
end
end
end
end
...
...
spec/requests/api/gitignores_spec.rb
View file @
27bf7ae5
require
'spec_helper'
require
'spec_helper'
describe
API
::
Gitignor
es
,
api:
true
do
describe
API
::
Templat
es
,
api:
true
do
include
ApiHelpers
include
ApiHelpers
describe
'Entity Gitignore'
do
describe
'Entity Gitignore'
do
...
...
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