2018-09-29 18:34:47 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-04-24 23:30:20 -04:00
|
|
|
module API
|
|
|
|
module Helpers
|
2016-10-28 16:56:13 -04:00
|
|
|
include Gitlab::Utils
|
2016-12-07 07:15:01 -05:00
|
|
|
include Helpers::Pagination
|
2016-10-28 16:56:13 -04:00
|
|
|
|
2017-02-21 18:32:18 -05:00
|
|
|
SUDO_HEADER = "HTTP_SUDO".freeze
|
2019-03-08 08:57:01 -05:00
|
|
|
GITLAB_SHARED_SECRET_HEADER = "Gitlab-Shared-Secret".freeze
|
2016-04-24 23:30:20 -04:00
|
|
|
SUDO_PARAM = :sudo
|
2018-01-06 03:41:13 -05:00
|
|
|
API_USER_ENV = 'gitlab.api.user'.freeze
|
2016-04-24 23:30:20 -04:00
|
|
|
|
2016-11-10 10:32:59 -05:00
|
|
|
def declared_params(options = {})
|
|
|
|
options = { include_parent_namespaces: false }.merge(options)
|
|
|
|
declared(params, options).to_h.symbolize_keys
|
|
|
|
end
|
|
|
|
|
2017-03-02 07:14:13 -05:00
|
|
|
def check_unmodified_since!(last_modified)
|
|
|
|
if_unmodified_since = Time.parse(headers['If-Unmodified-Since']) rescue nil
|
2017-03-01 08:35:48 -05:00
|
|
|
|
2017-08-24 04:41:54 -04:00
|
|
|
if if_unmodified_since && last_modified && last_modified > if_unmodified_since
|
2017-03-01 08:35:48 -05:00
|
|
|
render_api_error!('412 Precondition Failed', 412)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-30 08:33:39 -04:00
|
|
|
def destroy_conditionally!(resource, last_updated: nil)
|
|
|
|
last_updated ||= resource.updated_at
|
|
|
|
|
|
|
|
check_unmodified_since!(last_updated)
|
2017-03-02 07:14:13 -05:00
|
|
|
|
|
|
|
status 204
|
2018-01-11 11:34:01 -05:00
|
|
|
|
2017-03-02 07:14:13 -05:00
|
|
|
if block_given?
|
|
|
|
yield resource
|
|
|
|
else
|
|
|
|
resource.destroy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-22 02:50:36 -05:00
|
|
|
# rubocop:disable Gitlab/ModuleWithInstanceVariables
|
2017-11-17 07:27:16 -05:00
|
|
|
# We can't rewrite this with StrongMemoize because `sudo!` would
|
|
|
|
# actually write to `@current_user`, and `sudo?` would immediately
|
|
|
|
# call `current_user` again which reads from `@current_user`.
|
|
|
|
# We should rewrite this in a way that using StrongMemoize is possible
|
2016-04-24 23:30:20 -04:00
|
|
|
def current_user
|
2016-12-09 12:48:20 -05:00
|
|
|
return @current_user if defined?(@current_user)
|
2016-04-24 23:30:20 -04:00
|
|
|
|
2016-12-09 12:48:20 -05:00
|
|
|
@current_user = initial_current_user
|
2016-04-24 23:30:20 -04:00
|
|
|
|
2017-08-02 12:20:31 -04:00
|
|
|
Gitlab::I18n.locale = @current_user&.preferred_language
|
|
|
|
|
2016-12-09 12:48:20 -05:00
|
|
|
sudo!
|
2016-04-24 23:30:20 -04:00
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
validate_access_token!(scopes: scopes_registered_for_endpoint) unless sudo?
|
|
|
|
|
2018-01-06 03:41:13 -05:00
|
|
|
save_current_user_in_env(@current_user) if @current_user
|
|
|
|
|
2016-04-24 23:30:20 -04:00
|
|
|
@current_user
|
|
|
|
end
|
2017-11-22 02:50:36 -05:00
|
|
|
# rubocop:enable Gitlab/ModuleWithInstanceVariables
|
2016-04-24 23:30:20 -04:00
|
|
|
|
2018-01-06 03:41:13 -05:00
|
|
|
def save_current_user_in_env(user)
|
|
|
|
env[API_USER_ENV] = { user_id: user.id, username: user.username }
|
|
|
|
end
|
|
|
|
|
2016-12-09 12:48:20 -05:00
|
|
|
def sudo?
|
|
|
|
initial_current_user != current_user
|
2016-04-24 23:30:20 -04:00
|
|
|
end
|
|
|
|
|
2017-07-12 15:58:48 -04:00
|
|
|
def user_group
|
|
|
|
@group ||= find_group!(params[:id])
|
|
|
|
end
|
|
|
|
|
2016-04-24 23:30:20 -04:00
|
|
|
def user_project
|
2016-11-24 08:40:35 -05:00
|
|
|
@project ||= find_project!(params[:id])
|
2016-04-24 23:30:20 -04:00
|
|
|
end
|
|
|
|
|
2017-09-06 18:21:52 -04:00
|
|
|
def wiki_page
|
2018-01-03 00:22:01 -05:00
|
|
|
page = ProjectWiki.new(user_project, current_user).find_page(params[:slug])
|
2017-09-06 18:21:52 -04:00
|
|
|
|
|
|
|
page || not_found!('Wiki Page')
|
|
|
|
end
|
|
|
|
|
2019-01-06 12:56:02 -05:00
|
|
|
def available_labels_for(label_parent, include_ancestor_groups: true)
|
2019-01-03 09:07:13 -05:00
|
|
|
search_params = { include_ancestor_groups: include_ancestor_groups }
|
2018-04-04 11:40:29 -04:00
|
|
|
|
|
|
|
if label_parent.is_a?(Project)
|
|
|
|
search_params[:project_id] = label_parent.id
|
|
|
|
else
|
|
|
|
search_params.merge!(group_id: label_parent.id, only_group_labels: true)
|
|
|
|
end
|
2017-12-06 14:07:47 -05:00
|
|
|
|
|
|
|
LabelsFinder.new(current_user, search_params).execute
|
2016-10-13 17:34:44 -04:00
|
|
|
end
|
|
|
|
|
2016-12-13 09:53:00 -05:00
|
|
|
def find_user(id)
|
2018-10-18 05:06:44 -04:00
|
|
|
UserFinder.new(id).find_by_id_or_username
|
2016-12-13 09:53:00 -05:00
|
|
|
end
|
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2016-04-24 23:30:20 -04:00
|
|
|
def find_project(id)
|
2018-09-12 16:52:30 -04:00
|
|
|
projects = Project.without_deleted
|
|
|
|
|
2018-04-11 11:45:22 -04:00
|
|
|
if id.is_a?(Integer) || id =~ /^\d+$/
|
2018-09-12 16:52:30 -04:00
|
|
|
projects.find_by(id: id)
|
2018-04-11 11:45:22 -04:00
|
|
|
elsif id.include?("/")
|
2018-09-12 16:52:30 -04:00
|
|
|
projects.find_by_full_path(id)
|
2016-11-24 08:40:35 -05:00
|
|
|
end
|
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2016-11-24 08:40:35 -05:00
|
|
|
|
|
|
|
def find_project!(id)
|
|
|
|
project = find_project(id)
|
2016-04-24 23:30:20 -04:00
|
|
|
|
2016-06-23 11:14:31 -04:00
|
|
|
if can?(current_user, :read_project, project)
|
2016-04-24 23:30:20 -04:00
|
|
|
project
|
|
|
|
else
|
2016-06-23 11:14:31 -04:00
|
|
|
not_found!('Project')
|
2016-04-24 23:30:20 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2016-04-24 23:30:20 -04:00
|
|
|
def find_group(id)
|
2017-09-07 14:35:45 -04:00
|
|
|
if id.to_s =~ /^\d+$/
|
2016-11-24 10:58:32 -05:00
|
|
|
Group.find_by(id: id)
|
|
|
|
else
|
2016-10-31 07:00:53 -04:00
|
|
|
Group.find_by_full_path(id)
|
2016-11-24 10:58:32 -05:00
|
|
|
end
|
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2016-11-24 10:58:32 -05:00
|
|
|
|
|
|
|
def find_group!(id)
|
|
|
|
group = find_group(id)
|
2016-04-24 23:30:20 -04:00
|
|
|
|
|
|
|
if can?(current_user, :read_group, group)
|
|
|
|
group
|
|
|
|
else
|
|
|
|
not_found!('Group')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-11-23 08:32:16 -05:00
|
|
|
def find_namespace(id)
|
|
|
|
if id.to_s =~ /^\d+$/
|
|
|
|
Namespace.find_by(id: id)
|
|
|
|
else
|
|
|
|
Namespace.find_by_full_path(id)
|
|
|
|
end
|
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2017-11-23 08:32:16 -05:00
|
|
|
|
|
|
|
def find_namespace!(id)
|
|
|
|
namespace = find_namespace(id)
|
|
|
|
|
2017-11-23 09:47:15 -05:00
|
|
|
if can?(current_user, :read_namespace, namespace)
|
2017-11-23 08:32:16 -05:00
|
|
|
namespace
|
|
|
|
else
|
|
|
|
not_found!('Namespace')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-08 04:55:17 -04:00
|
|
|
def find_branch!(branch_name)
|
2018-12-21 18:41:37 -05:00
|
|
|
if Gitlab::GitRefValidator.validate(branch_name)
|
|
|
|
user_project.repository.find_branch(branch_name) || not_found!('Branch')
|
|
|
|
else
|
|
|
|
render_api_error!('The branch refname is invalid', 400)
|
|
|
|
end
|
2018-09-08 04:55:17 -04:00
|
|
|
end
|
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-02-25 03:44:09 -05:00
|
|
|
def find_project_issue(iid)
|
|
|
|
IssuesFinder.new(current_user, project_id: user_project.id).find_by!(iid: iid)
|
2016-05-12 16:48:09 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2016-05-12 16:48:09 -04:00
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-02-25 07:25:32 -05:00
|
|
|
def find_project_merge_request(iid)
|
|
|
|
MergeRequestsFinder.new(current_user, project_id: user_project.id).find_by!(iid: iid)
|
2016-04-24 23:30:20 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2016-04-24 23:30:20 -04:00
|
|
|
|
2018-05-01 08:39:44 -04:00
|
|
|
def find_project_commit(id)
|
|
|
|
user_project.commit_by(oid: id)
|
|
|
|
end
|
|
|
|
|
2017-03-27 09:01:45 -04:00
|
|
|
def find_project_snippet(id)
|
2017-05-10 06:03:29 -04:00
|
|
|
finder_params = { project: user_project }
|
2017-12-11 09:21:06 -05:00
|
|
|
SnippetsFinder.new(current_user, finder_params).find(id)
|
2017-03-27 09:01:45 -04:00
|
|
|
end
|
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-02-25 07:25:32 -05:00
|
|
|
def find_merge_request_with_access(iid, access_level = :read_merge_request)
|
|
|
|
merge_request = user_project.merge_requests.find_by!(iid: iid)
|
2017-01-03 13:03:13 -05:00
|
|
|
authorize! access_level, merge_request
|
|
|
|
merge_request
|
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2017-01-03 13:03:13 -05:00
|
|
|
|
2017-09-06 05:20:12 -04:00
|
|
|
def find_build!(id)
|
|
|
|
user_project.builds.find(id.to_i)
|
|
|
|
end
|
|
|
|
|
2016-04-24 23:30:20 -04:00
|
|
|
def authenticate!
|
2017-09-27 09:31:52 -04:00
|
|
|
unauthorized! unless current_user
|
2016-04-24 23:30:20 -04:00
|
|
|
end
|
|
|
|
|
2016-11-30 09:48:19 -05:00
|
|
|
def authenticate_non_get!
|
2016-12-23 11:03:25 -05:00
|
|
|
authenticate! unless %w[GET HEAD].include?(route.request_method)
|
2016-11-30 09:48:19 -05:00
|
|
|
end
|
|
|
|
|
2016-04-24 23:30:20 -04:00
|
|
|
def authenticate_by_gitlab_shell_token!
|
2019-03-08 08:57:01 -05:00
|
|
|
input = params['secret_token']
|
|
|
|
input ||= Base64.decode64(headers[GITLAB_SHARED_SECRET_HEADER]) if headers.key?(GITLAB_SHARED_SECRET_HEADER)
|
|
|
|
|
|
|
|
input&.chomp!
|
|
|
|
|
|
|
|
unauthorized! unless Devise.secure_compare(secret_token, input)
|
2016-04-24 23:30:20 -04:00
|
|
|
end
|
|
|
|
|
2017-11-13 11:05:44 -05:00
|
|
|
def authenticated_with_full_private_access!
|
|
|
|
authenticate!
|
|
|
|
forbidden! unless current_user.full_private_access?
|
|
|
|
end
|
|
|
|
|
2016-04-24 23:30:20 -04:00
|
|
|
def authenticated_as_admin!
|
2016-11-30 09:48:19 -05:00
|
|
|
authenticate!
|
2017-04-08 22:20:57 -04:00
|
|
|
forbidden! unless current_user.admin?
|
2016-04-24 23:30:20 -04:00
|
|
|
end
|
|
|
|
|
2019-01-08 18:35:54 -05:00
|
|
|
def authorize!(action, subject = :global, reason = nil)
|
|
|
|
forbidden!(reason) unless can?(current_user, action, subject)
|
2016-04-24 23:30:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_push_project
|
|
|
|
authorize! :push_code, user_project
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_admin_project
|
|
|
|
authorize! :admin_project, user_project
|
|
|
|
end
|
|
|
|
|
2017-09-06 05:20:12 -04:00
|
|
|
def authorize_read_builds!
|
|
|
|
authorize! :read_build, user_project
|
|
|
|
end
|
|
|
|
|
2019-03-06 06:06:21 -05:00
|
|
|
def authorize_destroy_artifacts!
|
|
|
|
authorize! :destroy_artifacts, user_project
|
|
|
|
end
|
|
|
|
|
2017-09-06 05:20:12 -04:00
|
|
|
def authorize_update_builds!
|
|
|
|
authorize! :update_build, user_project
|
|
|
|
end
|
|
|
|
|
2016-04-24 23:30:20 -04:00
|
|
|
def require_gitlab_workhorse!
|
|
|
|
unless env['HTTP_GITLAB_WORKHORSE'].present?
|
|
|
|
forbidden!('Request should be executed via GitLab Workhorse')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-21 19:59:54 -04:00
|
|
|
def require_pages_enabled!
|
|
|
|
not_found! unless user_project.pages_available?
|
|
|
|
end
|
|
|
|
|
2017-11-13 11:05:44 -05:00
|
|
|
def require_pages_config_enabled!
|
|
|
|
not_found! unless Gitlab.config.pages.enabled
|
|
|
|
end
|
|
|
|
|
2017-02-28 16:08:07 -05:00
|
|
|
def can?(object, action, subject = :global)
|
2016-08-08 14:55:13 -04:00
|
|
|
Ability.allowed?(object, action, subject)
|
2016-04-24 23:30:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Checks the occurrences of required attributes, each attribute must be present in the params hash
|
|
|
|
# or a Bad Request error is invoked.
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# keys (required) - A hash consisting of keys that must be present
|
|
|
|
def required_attributes!(keys)
|
|
|
|
keys.each do |key|
|
|
|
|
bad_request!(key) unless params[key].present?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def attributes_for_keys(keys, custom_params = nil)
|
|
|
|
params_hash = custom_params || params
|
|
|
|
attrs = {}
|
|
|
|
keys.each do |key|
|
2017-06-02 13:11:26 -04:00
|
|
|
if params_hash[key].present? || (params_hash.key?(key) && params_hash[key] == false)
|
2016-04-24 23:30:20 -04:00
|
|
|
attrs[key] = params_hash[key]
|
|
|
|
end
|
|
|
|
end
|
2018-06-13 16:37:41 -04:00
|
|
|
permitted_attrs = ActionController::Parameters.new(attrs).permit!
|
2018-12-15 04:06:56 -05:00
|
|
|
permitted_attrs.to_h
|
2016-04-24 23:30:20 -04:00
|
|
|
end
|
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2016-04-24 23:30:20 -04:00
|
|
|
def filter_by_iid(items, iid)
|
|
|
|
items.where(iid: iid)
|
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2016-04-24 23:30:20 -04:00
|
|
|
|
2019-03-27 05:01:07 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
|
|
def filter_by_title(items, title)
|
|
|
|
items.where(title: title)
|
|
|
|
end
|
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
|
|
|
2017-02-28 07:23:40 -05:00
|
|
|
def filter_by_search(items, text)
|
|
|
|
items.search(text)
|
|
|
|
end
|
|
|
|
|
2019-02-16 10:11:31 -05:00
|
|
|
def order_options_with_tie_breaker
|
|
|
|
order_options = { params[:order_by] => params[:sort] }
|
|
|
|
order_options['id'] ||= 'desc'
|
|
|
|
order_options
|
|
|
|
end
|
|
|
|
|
2016-04-24 23:30:20 -04:00
|
|
|
# error helpers
|
|
|
|
|
|
|
|
def forbidden!(reason = nil)
|
|
|
|
message = ['403 Forbidden']
|
|
|
|
message << " - #{reason}" if reason
|
|
|
|
render_api_error!(message.join(' '), 403)
|
|
|
|
end
|
|
|
|
|
|
|
|
def bad_request!(attribute)
|
|
|
|
message = ["400 (Bad request)"]
|
2017-09-06 05:31:08 -04:00
|
|
|
message << "\"" + attribute.to_s + "\" not given" if attribute
|
2016-04-24 23:30:20 -04:00
|
|
|
render_api_error!(message.join(' '), 400)
|
|
|
|
end
|
|
|
|
|
|
|
|
def not_found!(resource = nil)
|
|
|
|
message = ["404"]
|
|
|
|
message << resource if resource
|
|
|
|
message << "Not Found"
|
|
|
|
render_api_error!(message.join(' '), 404)
|
|
|
|
end
|
|
|
|
|
|
|
|
def unauthorized!
|
|
|
|
render_api_error!('401 Unauthorized', 401)
|
|
|
|
end
|
|
|
|
|
|
|
|
def not_allowed!
|
|
|
|
render_api_error!('405 Method Not Allowed', 405)
|
|
|
|
end
|
|
|
|
|
|
|
|
def conflict!(message = nil)
|
|
|
|
render_api_error!(message || '409 Conflict', 409)
|
|
|
|
end
|
|
|
|
|
|
|
|
def file_to_large!
|
|
|
|
render_api_error!('413 Request Entity Too Large', 413)
|
|
|
|
end
|
|
|
|
|
|
|
|
def not_modified!
|
|
|
|
render_api_error!('304 Not Modified', 304)
|
|
|
|
end
|
|
|
|
|
2016-09-06 08:30:54 -04:00
|
|
|
def no_content!
|
|
|
|
render_api_error!('204 No Content', 204)
|
|
|
|
end
|
|
|
|
|
2017-02-22 12:37:13 -05:00
|
|
|
def accepted!
|
|
|
|
render_api_error!('202 Accepted', 202)
|
|
|
|
end
|
|
|
|
|
2016-04-24 23:30:20 -04:00
|
|
|
def render_validation_error!(model)
|
|
|
|
if model.errors.any?
|
|
|
|
render_api_error!(model.errors.messages || '400 Bad Request', 400)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-14 14:07:11 -05:00
|
|
|
def render_spam_error!
|
|
|
|
render_api_error!({ error: 'Spam detected' }, 400)
|
|
|
|
end
|
|
|
|
|
2016-04-24 23:30:20 -04:00
|
|
|
def render_api_error!(message, status)
|
2017-01-19 17:41:12 -05:00
|
|
|
error!({ 'message' => message }, status, header)
|
2016-04-24 23:30:20 -04:00
|
|
|
end
|
|
|
|
|
2016-08-18 20:06:33 -04:00
|
|
|
def handle_api_exception(exception)
|
2018-12-05 15:54:40 -05:00
|
|
|
if report_exception?(exception)
|
2016-08-18 20:06:33 -04:00
|
|
|
define_params_for_grape_middleware
|
2018-12-05 15:54:40 -05:00
|
|
|
Gitlab::Sentry.context(current_user)
|
|
|
|
Gitlab::Sentry.track_acceptable_exception(exception, extra: params)
|
2016-08-18 20:06:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# lifted from https://github.com/rails/rails/blob/master/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb#L60
|
|
|
|
trace = exception.backtrace
|
|
|
|
|
2018-09-29 18:34:47 -04:00
|
|
|
message = ["\n#{exception.class} (#{exception.message}):\n"]
|
2016-08-18 20:06:33 -04:00
|
|
|
message << exception.annoted_source_code.to_s if exception.respond_to?(:annoted_source_code)
|
|
|
|
message << " " << trace.join("\n ")
|
2018-09-29 18:34:47 -04:00
|
|
|
message = message.join
|
2016-08-18 20:06:33 -04:00
|
|
|
|
|
|
|
API.logger.add Logger::FATAL, message
|
2017-08-11 08:50:35 -04:00
|
|
|
|
|
|
|
response_message =
|
|
|
|
if Rails.env.test?
|
|
|
|
message
|
|
|
|
else
|
|
|
|
'500 Internal Server Error'
|
|
|
|
end
|
|
|
|
|
|
|
|
rack_response({ 'message' => response_message }.to_json, 500)
|
2016-08-18 20:06:33 -04:00
|
|
|
end
|
|
|
|
|
2016-11-22 11:58:10 -05:00
|
|
|
# project helpers
|
2016-04-24 23:30:20 -04:00
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-05-26 10:31:37 -04:00
|
|
|
def reorder_projects(projects)
|
2019-02-16 05:03:42 -05:00
|
|
|
projects.reorder(order_options_with_tie_breaker)
|
|
|
|
end
|
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
|
|
|
2017-05-24 16:12:40 -04:00
|
|
|
def project_finder_params
|
2018-09-12 16:52:30 -04:00
|
|
|
finder_params = { without_deleted: true }
|
2017-05-26 10:31:37 -04:00
|
|
|
finder_params[:owned] = true if params[:owned].present?
|
2017-05-24 16:12:40 -04:00
|
|
|
finder_params[:non_public] = true if params[:membership].present?
|
|
|
|
finder_params[:starred] = true if params[:starred].present?
|
|
|
|
finder_params[:visibility_level] = Gitlab::VisibilityLevel.level_value(params[:visibility]) if params[:visibility]
|
2018-07-11 14:17:18 -04:00
|
|
|
finder_params[:archived] = archived_param unless params[:archived].nil?
|
2017-05-24 16:12:40 -04:00
|
|
|
finder_params[:search] = params[:search] if params[:search]
|
2017-06-29 13:20:59 -04:00
|
|
|
finder_params[:user] = params.delete(:user) if params[:user]
|
2017-09-18 09:03:24 -04:00
|
|
|
finder_params[:custom_attributes] = params[:custom_attributes] if params[:custom_attributes]
|
2018-07-08 15:43:06 -04:00
|
|
|
finder_params[:min_access_level] = params[:min_access_level] if params[:min_access_level]
|
2017-05-24 16:12:40 -04:00
|
|
|
finder_params
|
|
|
|
end
|
|
|
|
|
2016-04-24 23:30:20 -04:00
|
|
|
# file helpers
|
|
|
|
|
2018-03-09 09:16:06 -05:00
|
|
|
def present_disk_file!(path, filename, content_type = 'application/octet-stream')
|
2016-04-24 23:30:20 -04:00
|
|
|
filename ||= File.basename(path)
|
2019-02-04 20:27:22 -05:00
|
|
|
header['Content-Disposition'] = ::Gitlab::ContentDisposition.format(disposition: 'attachment', filename: filename)
|
2016-04-24 23:30:20 -04:00
|
|
|
header['Content-Transfer-Encoding'] = 'binary'
|
|
|
|
content_type content_type
|
|
|
|
|
|
|
|
# Support download acceleration
|
|
|
|
case headers['X-Sendfile-Type']
|
|
|
|
when 'X-Sendfile'
|
|
|
|
header['X-Sendfile'] = path
|
|
|
|
body
|
|
|
|
else
|
2017-02-03 06:42:11 -05:00
|
|
|
file path
|
2016-04-24 23:30:20 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-09 09:16:06 -05:00
|
|
|
def present_carrierwave_file!(file, supports_direct_download: true)
|
|
|
|
return not_found! unless file.exists?
|
2017-06-29 13:20:59 -04:00
|
|
|
|
2018-03-09 09:16:06 -05:00
|
|
|
if file.file_storage?
|
|
|
|
present_disk_file!(file.path, file.filename)
|
|
|
|
elsif supports_direct_download && file.class.direct_download_enabled?
|
|
|
|
redirect(file.url)
|
2018-02-06 10:39:20 -05:00
|
|
|
else
|
2018-03-09 09:16:06 -05:00
|
|
|
header(*Gitlab::Workhorse.send_url(file.url))
|
2018-02-06 10:39:20 -05:00
|
|
|
status :ok
|
|
|
|
body
|
2017-06-01 03:52:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-24 23:30:20 -04:00
|
|
|
private
|
|
|
|
|
2017-11-22 02:50:36 -05:00
|
|
|
# rubocop:disable Gitlab/ModuleWithInstanceVariables
|
2016-12-09 12:48:20 -05:00
|
|
|
def initial_current_user
|
|
|
|
return @initial_current_user if defined?(@initial_current_user)
|
|
|
|
|
2017-09-27 09:31:52 -04:00
|
|
|
begin
|
2017-10-12 08:38:39 -04:00
|
|
|
@initial_current_user = Gitlab::Auth::UniqueIpsLimiter.limit_user! { find_current_user! }
|
2017-11-16 11:03:19 -05:00
|
|
|
rescue Gitlab::Auth::UnauthorizedError
|
2017-09-27 09:31:52 -04:00
|
|
|
unauthorized!
|
2016-12-09 12:48:20 -05:00
|
|
|
end
|
|
|
|
end
|
2017-11-22 02:50:36 -05:00
|
|
|
# rubocop:enable Gitlab/ModuleWithInstanceVariables
|
2016-12-09 12:48:20 -05:00
|
|
|
|
|
|
|
def sudo!
|
|
|
|
return unless sudo_identifier
|
2017-10-12 08:38:39 -04:00
|
|
|
|
2017-10-30 13:49:46 -04:00
|
|
|
unauthorized! unless initial_current_user
|
2016-12-09 12:48:20 -05:00
|
|
|
|
2017-04-08 22:20:57 -04:00
|
|
|
unless initial_current_user.admin?
|
2016-12-09 12:48:20 -05:00
|
|
|
forbidden!('Must be admin to use sudo')
|
|
|
|
end
|
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
unless access_token
|
|
|
|
forbidden!('Must be authenticated using an OAuth or Personal Access Token to use sudo')
|
2016-12-09 12:48:20 -05:00
|
|
|
end
|
|
|
|
|
2017-10-12 08:38:39 -04:00
|
|
|
validate_access_token!(scopes: [:sudo])
|
|
|
|
|
2016-12-13 09:53:00 -05:00
|
|
|
sudoed_user = find_user(sudo_identifier)
|
2017-10-30 13:49:46 -04:00
|
|
|
not_found!("User with ID or username '#{sudo_identifier}'") unless sudoed_user
|
2016-12-09 12:48:20 -05:00
|
|
|
|
2017-11-22 02:50:36 -05:00
|
|
|
@current_user = sudoed_user # rubocop:disable Gitlab/ModuleWithInstanceVariables
|
2016-12-09 12:48:20 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def sudo_identifier
|
2016-12-13 09:53:00 -05:00
|
|
|
@sudo_identifier ||= params[SUDO_PARAM] || env[SUDO_HEADER]
|
2016-12-09 12:48:20 -05:00
|
|
|
end
|
|
|
|
|
2016-04-24 23:30:20 -04:00
|
|
|
def secret_token
|
2016-09-29 12:46:54 -04:00
|
|
|
Gitlab::Shell.secret_token
|
2016-04-24 23:30:20 -04:00
|
|
|
end
|
|
|
|
|
2016-06-06 07:16:30 -04:00
|
|
|
def send_git_blob(repository, blob)
|
|
|
|
env['api.format'] = :txt
|
|
|
|
content_type 'text/plain'
|
2019-02-04 20:27:22 -05:00
|
|
|
header['Content-Disposition'] = ::Gitlab::ContentDisposition.format(disposition: 'inline', filename: blob.name)
|
2019-01-10 07:30:19 -05:00
|
|
|
|
|
|
|
# Let Workhorse examine the content and determine the better content disposition
|
|
|
|
header[Gitlab::Workhorse::DETECT_HEADER] = "true"
|
|
|
|
|
2016-06-10 06:29:15 -04:00
|
|
|
header(*Gitlab::Workhorse.send_git_blob(repository, blob))
|
2016-06-06 07:16:30 -04:00
|
|
|
end
|
|
|
|
|
2018-02-19 15:41:04 -05:00
|
|
|
def send_git_archive(repository, **kwargs)
|
|
|
|
header(*Gitlab::Workhorse.send_git_archive(repository, **kwargs))
|
2016-06-06 07:16:30 -04:00
|
|
|
end
|
2016-06-11 10:16:32 -04:00
|
|
|
|
2017-09-05 05:16:49 -04:00
|
|
|
def send_artifacts_entry(build, entry)
|
|
|
|
header(*Gitlab::Workhorse.send_artifacts_entry(build, entry))
|
|
|
|
end
|
|
|
|
|
2017-09-29 07:14:08 -04:00
|
|
|
# The Grape Error Middleware only has access to `env` but not `params` nor
|
|
|
|
# `request`. We workaround this by defining methods that returns the right
|
|
|
|
# values.
|
2016-08-18 20:06:33 -04:00
|
|
|
def define_params_for_grape_middleware
|
2019-01-07 03:35:53 -05:00
|
|
|
self.define_singleton_method(:request) { ActionDispatch::Request.new(env) }
|
2017-09-29 07:14:08 -04:00
|
|
|
self.define_singleton_method(:params) { request.params.symbolize_keys }
|
2016-08-18 20:06:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# We could get a Grape or a standard Ruby exception. We should only report anything that
|
|
|
|
# is clearly an error.
|
|
|
|
def report_exception?(exception)
|
|
|
|
return true unless exception.respond_to?(:status)
|
|
|
|
|
|
|
|
exception.status == 500
|
|
|
|
end
|
2018-07-11 14:17:18 -04:00
|
|
|
|
|
|
|
def archived_param
|
|
|
|
return 'only' if params[:archived]
|
|
|
|
|
|
|
|
params[:archived]
|
|
|
|
end
|
2016-04-24 23:30:20 -04:00
|
|
|
end
|
|
|
|
end
|