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
f088ffe8
Commit
f088ffe8
authored
Oct 05, 2015
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'rs-remove-ci-disable'
See merge request !1512
parents
3eef0e18
fc59c45d
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
9 additions
and
41 deletions
+9
-41
app/controllers/admin/application_settings_controller.rb
app/controllers/admin/application_settings_controller.rb
+0
-1
app/controllers/ci/application_controller.rb
app/controllers/ci/application_controller.rb
+0
-9
app/controllers/ci/projects_controller.rb
app/controllers/ci/projects_controller.rb
+2
-6
app/models/application_setting.rb
app/models/application_setting.rb
+1
-2
app/views/admin/application_settings/_form.html.haml
app/views/admin/application_settings/_form.html.haml
+0
-9
app/views/ci/projects/disabled.html.haml
app/views/ci/projects/disabled.html.haml
+0
-1
config/initializers/1_settings.rb
config/initializers/1_settings.rb
+0
-1
db/migrate/20151005162154_remove_ci_enabled_from_application_settings.rb
...1005162154_remove_ci_enabled_from_application_settings.rb
+5
-0
db/schema.rb
db/schema.rb
+1
-2
lib/ci/api/api.rb
lib/ci/api/api.rb
+0
-4
lib/ci/api/helpers.rb
lib/ci/api/helpers.rb
+0
-6
No files found.
app/controllers/admin/application_settings_controller.rb
View file @
f088ffe8
...
@@ -56,7 +56,6 @@ class Admin::ApplicationSettingsController < Admin::ApplicationController
...
@@ -56,7 +56,6 @@ class Admin::ApplicationSettingsController < Admin::ApplicationController
:restricted_signup_domains_raw
,
:restricted_signup_domains_raw
,
:version_check_enabled
,
:version_check_enabled
,
:user_oauth_applications
,
:user_oauth_applications
,
:ci_enabled
,
restricted_visibility_levels:
[],
restricted_visibility_levels:
[],
import_sources:
[]
import_sources:
[]
)
)
...
...
app/controllers/ci/application_controller.rb
View file @
f088ffe8
module
Ci
module
Ci
class
ApplicationController
<
::
ApplicationController
class
ApplicationController
<
::
ApplicationController
before_action
:check_enable_flag!
def
self
.
railtie_helpers_paths
def
self
.
railtie_helpers_paths
"app/helpers/ci"
"app/helpers/ci"
end
end
...
@@ -10,13 +8,6 @@ module Ci
...
@@ -10,13 +8,6 @@ module Ci
private
private
def
check_enable_flag!
unless
current_application_settings
.
ci_enabled
redirect_to
(
disabled_ci_projects_path
)
return
end
end
def
authenticate_public_page!
def
authenticate_public_page!
unless
project
.
public
unless
project
.
public
authenticate_user!
authenticate_user!
...
...
app/controllers/ci/projects_controller.rb
View file @
f088ffe8
...
@@ -3,17 +3,13 @@ module Ci
...
@@ -3,17 +3,13 @@ module Ci
before_action
:authenticate_user!
,
except:
[
:build
,
:badge
,
:show
]
before_action
:authenticate_user!
,
except:
[
:build
,
:badge
,
:show
]
before_action
:authenticate_public_page!
,
only: :show
before_action
:authenticate_public_page!
,
only: :show
before_action
:project
,
only:
[
:build
,
:show
,
:badge
,
:toggle_shared_runners
,
:dumped_yaml
]
before_action
:project
,
only:
[
:build
,
:show
,
:badge
,
:toggle_shared_runners
,
:dumped_yaml
]
before_action
:authorize_access_project!
,
except:
[
:build
,
:badge
,
:show
,
:new
,
:disabled
]
before_action
:authorize_access_project!
,
except:
[
:build
,
:badge
,
:show
,
:new
]
before_action
:authorize_manage_project!
,
only:
[
:toggle_shared_runners
,
:dumped_yaml
]
before_action
:authorize_manage_project!
,
only:
[
:toggle_shared_runners
,
:dumped_yaml
]
before_action
:authenticate_token!
,
only:
[
:build
]
before_action
:authenticate_token!
,
only:
[
:build
]
before_action
:no_cache
,
only:
[
:badge
]
before_action
:no_cache
,
only:
[
:badge
]
skip_before_action
:check_enable_flag!
,
only:
[
:disabled
]
protect_from_forgery
except: :build
protect_from_forgery
except: :build
layout
'ci/project'
,
except:
[
:index
,
:disabled
]
layout
'ci/project'
,
except:
[
:index
]
def
disabled
end
def
show
def
show
@ref
=
params
[
:ref
]
@ref
=
params
[
:ref
]
...
...
app/models/application_setting.rb
View file @
f088ffe8
...
@@ -83,8 +83,7 @@ class ApplicationSetting < ActiveRecord::Base
...
@@ -83,8 +83,7 @@ class ApplicationSetting < ActiveRecord::Base
default_project_visibility:
Settings
.
gitlab
.
default_projects_features
[
'visibility_level'
],
default_project_visibility:
Settings
.
gitlab
.
default_projects_features
[
'visibility_level'
],
default_snippet_visibility:
Settings
.
gitlab
.
default_projects_features
[
'visibility_level'
],
default_snippet_visibility:
Settings
.
gitlab
.
default_projects_features
[
'visibility_level'
],
restricted_signup_domains:
Settings
.
gitlab
[
'restricted_signup_domains'
],
restricted_signup_domains:
Settings
.
gitlab
[
'restricted_signup_domains'
],
import_sources:
[
'github'
,
'bitbucket'
,
'gitlab'
,
'gitorious'
,
'google_code'
,
'fogbugz'
,
'git'
],
import_sources:
[
'github'
,
'bitbucket'
,
'gitlab'
,
'gitorious'
,
'google_code'
,
'fogbugz'
,
'git'
]
ci_enabled:
Settings
.
gitlab_ci
[
'enabled'
]
)
)
end
end
...
...
app/views/admin/application_settings/_form.html.haml
View file @
f088ffe8
...
@@ -124,14 +124,5 @@
...
@@ -124,14 +124,5 @@
=
f
.
text_area
:help_page_text
,
class:
'form-control'
,
rows:
4
=
f
.
text_area
:help_page_text
,
class:
'form-control'
,
rows:
4
.help-block
Markdown enabled
.help-block
Markdown enabled
%fieldset
%legend
Continuous Integration
.form-group
.col-sm-offset-2.col-sm-10
.checkbox
=
f
.
label
:ci_enabled
do
=
f
.
check_box
:ci_enabled
Disable to prevent CI usage until rake ci:migrate is run (8.0 only)
.form-actions
.form-actions
=
f
.
submit
'Save'
,
class:
'btn btn-primary'
=
f
.
submit
'Save'
,
class:
'btn btn-primary'
app/views/ci/projects/disabled.html.haml
deleted
100644 → 0
View file @
3eef0e18
Continuous Integration has been disabled for time of the migration.
config/initializers/1_settings.rb
View file @
f088ffe8
...
@@ -178,7 +178,6 @@ Settings.gitlab['import_sources'] ||= ['github','bitbucket','gitlab','gitorious'
...
@@ -178,7 +178,6 @@ Settings.gitlab['import_sources'] ||= ['github','bitbucket','gitlab','gitorious'
# CI
# CI
#
#
Settings
[
'gitlab_ci'
]
||=
Settingslogic
.
new
({})
Settings
[
'gitlab_ci'
]
||=
Settingslogic
.
new
({})
Settings
.
gitlab_ci
[
'enabled'
]
=
true
if
Settings
.
gitlab_ci
[
'enabled'
].
nil?
Settings
.
gitlab_ci
[
'all_broken_builds'
]
=
true
if
Settings
.
gitlab_ci
[
'all_broken_builds'
].
nil?
Settings
.
gitlab_ci
[
'all_broken_builds'
]
=
true
if
Settings
.
gitlab_ci
[
'all_broken_builds'
].
nil?
Settings
.
gitlab_ci
[
'add_pusher'
]
=
false
if
Settings
.
gitlab_ci
[
'add_pusher'
].
nil?
Settings
.
gitlab_ci
[
'add_pusher'
]
=
false
if
Settings
.
gitlab_ci
[
'add_pusher'
].
nil?
Settings
.
gitlab_ci
[
'url'
]
||=
Settings
.
send
(
:build_gitlab_ci_url
)
Settings
.
gitlab_ci
[
'url'
]
||=
Settings
.
send
(
:build_gitlab_ci_url
)
...
...
db/migrate/20151005162154_remove_ci_enabled_from_application_settings.rb
0 → 100644
View file @
f088ffe8
class
RemoveCiEnabledFromApplicationSettings
<
ActiveRecord
::
Migration
def
change
remove_column
:application_settings
,
:ci_enabled
,
:boolean
,
null:
false
,
default:
true
end
end
db/schema.rb
View file @
f088ffe8
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
#
#
# It's strongly recommended that you check this file into your version control system.
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
20151005
075649
)
do
ActiveRecord
::
Schema
.
define
(
version:
20151005
162154
)
do
# These are extensions that must be enabled in order to support this database
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
enable_extension
"plpgsql"
...
@@ -46,7 +46,6 @@ ActiveRecord::Schema.define(version: 20151005075649) do
...
@@ -46,7 +46,6 @@ ActiveRecord::Schema.define(version: 20151005075649) do
t
.
integer
"session_expire_delay"
,
default:
10080
,
null:
false
t
.
integer
"session_expire_delay"
,
default:
10080
,
null:
false
t
.
text
"import_sources"
t
.
text
"import_sources"
t
.
text
"help_page_text"
t
.
text
"help_page_text"
t
.
boolean
"ci_enabled"
,
default:
true
,
null:
false
end
end
create_table
"audit_events"
,
force:
true
do
|
t
|
create_table
"audit_events"
,
force:
true
do
|
t
|
...
...
lib/ci/api/api.rb
View file @
f088ffe8
...
@@ -23,10 +23,6 @@ module Ci
...
@@ -23,10 +23,6 @@ module Ci
rack_response
({
'message'
=>
'500 Internal Server Error'
},
500
)
rack_response
({
'message'
=>
'500 Internal Server Error'
},
500
)
end
end
before
do
check_enable_flag!
end
format
:json
format
:json
helpers
Helpers
helpers
Helpers
...
...
lib/ci/api/helpers.rb
View file @
f088ffe8
...
@@ -3,12 +3,6 @@ module Ci
...
@@ -3,12 +3,6 @@ module Ci
module
Helpers
module
Helpers
UPDATE_RUNNER_EVERY
=
60
UPDATE_RUNNER_EVERY
=
60
def
check_enable_flag!
unless
current_application_settings
.
ci_enabled
render_api_error!
(
'400 (Bad request) CI is disabled'
,
400
)
end
end
def
authenticate_runners!
def
authenticate_runners!
forbidden!
unless
params
[
:token
]
==
GitlabCi
::
REGISTRATION_TOKEN
forbidden!
unless
params
[
:token
]
==
GitlabCi
::
REGISTRATION_TOKEN
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