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
483dc62e
Commit
483dc62e
authored
Jun 16, 2016
by
Z.J. van de Weg
Committed by
Alfredo Sumaran
Jun 20, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Incorporate review
parent
96ae6099
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
34 additions
and
17 deletions
+34
-17
app/assets/javascripts/api.js.coffee
app/assets/javascripts/api.js.coffee
+3
-3
app/assets/javascripts/blob/blob_ci_yaml.js.coffee
app/assets/javascripts/blob/blob_ci_yaml.js.coffee
+1
-1
app/helpers/blob_helper.rb
app/helpers/blob_helper.rb
+2
-2
lib/api/templates.rb
lib/api/templates.rb
+5
-1
lib/gitlab/template/base_template.rb
lib/gitlab/template/base_template.rb
+3
-1
lib/gitlab/template/gitlab_ci_yml.rb
lib/gitlab/template/gitlab_ci_yml.rb
+1
-1
lib/tasks/gitlab/update_templates.rake
lib/tasks/gitlab/update_templates.rake
+10
-8
spec/requests/api/templates_spec.rb
spec/requests/api/templates_spec.rb
+9
-0
No files found.
app/assets/javascripts/api.js.coffee
View file @
483dc62e
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
labelsPath
:
"/api/:version/projects/:id/labels"
labelsPath
:
"/api/:version/projects/:id/labels"
licensePath
:
"/api/:version/licenses/:key"
licensePath
:
"/api/:version/licenses/:key"
gitignorePath
:
"/api/:version/gitignores/:key"
gitignorePath
:
"/api/:version/gitignores/:key"
gitlabC
I
YmlPath
:
"/api/:version/gitlab_ci_ymls/:key"
gitlabC
i
YmlPath
:
"/api/:version/gitlab_ci_ymls/:key"
group
:
(
group_id
,
callback
)
->
group
:
(
group_id
,
callback
)
->
url
=
Api
.
buildUrl
(
Api
.
groupPath
)
url
=
Api
.
buildUrl
(
Api
.
groupPath
)
...
@@ -111,8 +111,8 @@
...
@@ -111,8 +111,8 @@
$
.
get
url
,
(
gitignore
)
->
$
.
get
url
,
(
gitignore
)
->
callback
(
gitignore
)
callback
(
gitignore
)
gitlabC
I
Yml
:
(
key
,
callback
)
->
gitlabC
i
Yml
:
(
key
,
callback
)
->
url
=
Api
.
buildUrl
(
Api
.
gitlabC
I
YmlPath
).
replace
(
':key'
,
key
)
url
=
Api
.
buildUrl
(
Api
.
gitlabC
i
YmlPath
).
replace
(
':key'
,
key
)
$
.
get
url
,
(
file
)
->
$
.
get
url
,
(
file
)
->
callback
(
file
)
callback
(
file
)
...
...
app/assets/javascripts/blob/blob_ci_yaml.js.coffee
View file @
483dc62e
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
class
@
BlobCiYamlSelector
extends
TemplateSelector
class
@
BlobCiYamlSelector
extends
TemplateSelector
requestFile
:
(
query
)
->
requestFile
:
(
query
)
->
Api
.
gitlabC
I
Yml
query
.
name
,
@
requestFileSuccess
.
bind
(
@
)
Api
.
gitlabC
i
Yml
query
.
name
,
@
requestFileSuccess
.
bind
(
@
)
class
@
BlobCiYamlSelectors
class
@
BlobCiYamlSelectors
constructor
:
(
opts
)
->
constructor
:
(
opts
)
->
...
...
app/helpers/blob_helper.rb
View file @
483dc62e
...
@@ -194,8 +194,8 @@ module BlobHelper
...
@@ -194,8 +194,8 @@ module BlobHelper
def
gitlab_ci_ymls
def
gitlab_ci_ymls
@gitlab_ci_ymls
||=
@gitlab_ci_ymls
||=
Gitlab
::
Template
::
GitlabC
I
Yml
.
categories
.
keys
.
map
do
|
k
|
Gitlab
::
Template
::
GitlabC
i
Yml
.
categories
.
keys
.
map
do
|
k
|
[
k
,
Gitlab
::
Template
::
GitlabC
I
Yml
.
by_category
(
k
).
map
{
|
t
|
{
name:
t
.
name
}
}]
[
k
,
Gitlab
::
Template
::
GitlabC
i
Yml
.
by_category
(
k
).
map
{
|
t
|
{
name:
t
.
name
}
}]
end
.
to_h
end
.
to_h
end
end
end
end
lib/api/templates.rb
View file @
483dc62e
...
@@ -2,7 +2,7 @@ module API
...
@@ -2,7 +2,7 @@ module API
class
Templates
<
Grape
::
API
class
Templates
<
Grape
::
API
TEMPLATE_TYPES
=
{
TEMPLATE_TYPES
=
{
gitignores:
Gitlab
::
Template
::
Gitignore
,
gitignores:
Gitlab
::
Template
::
Gitignore
,
gitlab_ci_ymls:
Gitlab
::
Template
::
GitlabC
I
Yml
gitlab_ci_ymls:
Gitlab
::
Template
::
GitlabC
i
Yml
}.
freeze
}.
freeze
TEMPLATE_TYPES
.
each
do
|
template
,
klass
|
TEMPLATE_TYPES
.
each
do
|
template
,
klass
|
...
@@ -29,6 +29,10 @@ module API
...
@@ -29,6 +29,10 @@ module API
new_template
=
klass
.
find
(
params
[
:name
])
new_template
=
klass
.
find
(
params
[
:name
])
not_found!
(
"
#{
template
.
to_s
.
singularize
}
"
)
unless
new_template
not_found!
(
"
#{
template
.
to_s
.
singularize
}
"
)
unless
new_template
if
new_template
.
class
==
Gitlab
::
Template
::
GitlabCiYml
new_template
.
content
=
"# This file is a template, and might need editing before it works on your project.
\n
"
+
new_template
.
content
end
present
new_template
,
with:
Entities
::
Template
present
new_template
,
with:
Entities
::
Template
end
end
end
end
...
...
lib/gitlab/template/base_template.rb
View file @
483dc62e
module
Gitlab
module
Gitlab
module
Template
module
Template
class
BaseTemplate
class
BaseTemplate
attr_writer
:content
def
initialize
(
path
)
def
initialize
(
path
)
@path
=
path
@path
=
path
end
end
...
@@ -10,7 +12,7 @@ module Gitlab
...
@@ -10,7 +12,7 @@ module Gitlab
end
end
def
content
def
content
File
.
read
(
@path
)
@content
||=
File
.
read
(
@path
)
end
end
def
categories
def
categories
...
...
lib/gitlab/template/gitlab_ci_yml.rb
View file @
483dc62e
module
Gitlab
module
Gitlab
module
Template
module
Template
class
GitlabC
I
Yml
<
BaseTemplate
class
GitlabC
i
Yml
<
BaseTemplate
class
<<
self
class
<<
self
def
extension
def
extension
'.gitlab-ci.yml'
'.gitlab-ci.yml'
...
...
lib/tasks/gitlab/update_templates.rake
View file @
483dc62e
...
@@ -37,14 +37,16 @@ namespace :gitlab do
...
@@ -37,14 +37,16 @@ namespace :gitlab do
private
private
Template
=
Struct
.
new
(
:repo_url
,
:cleanup_regex
)
Template
=
Struct
.
new
(
:repo_url
,
:cleanup_regex
)
TEMPLATE_DATA
=
[
Template
.
new
(
TEMPLATE_DATA
=
[
Template
.
new
(
"https://github.com/github/gitignore.git"
,
"https://github.com/github/gitignore.git"
,
/(\.{1,2}|LICENSE|Global|\.gitignore)\z/
/(\.{1,2}|LICENSE|Global|\.gitignore)\z/
),
),
Template
.
new
(
Template
.
new
(
"https://gitlab.com/gitlab-org/gitlab-ci-yml.git"
,
"https://gitlab.com/gitlab-org/gitlab-ci-yml.git"
,
/(\.{1,2}|LICENSE|Pages|\.gitlab-ci.yml)\z/
/(\.{1,2}|LICENSE|Pages|\.gitlab-ci.yml)\z/
)]
)
]
def
vendor_directory
def
vendor_directory
Rails
.
root
.
join
(
'vendor'
)
Rails
.
root
.
join
(
'vendor'
)
...
...
spec/requests/api/templates_spec.rb
View file @
483dc62e
...
@@ -40,4 +40,13 @@ describe API::Templates, api: true do
...
@@ -40,4 +40,13 @@ describe API::Templates, api: true do
end
end
end
end
end
end
describe
'GET /gitlab_ci_ymls/Ruby'
do
it
'adds a disclaimer on the top'
do
get
api
(
'/gitlab_ci_ymls/Ruby'
)
expect
(
response
.
status
).
to
eq
(
200
)
expect
(
json_response
[
'content'
]).
to
start_with
(
"# This file is a template,"
)
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