gitlab-org--gitlab-foss/lib/api/subscriptions.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

97 lines
2.9 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
module API
class Subscriptions < ::API::Base
helpers ::API::Helpers::LabelHelpers
2019-01-06 19:31:37 +00:00
before { authenticate! }
SUBSCRIBE_ENDPOINT_REQUIREMENTS = API::NAMESPACE_OR_PROJECT_REQUIREMENTS.merge(
subscribable_id: API::NO_SLASH_URL_PART_REGEX)
subscribables = [
2019-01-06 17:56:02 +00:00
{
type: 'merge_requests',
entity: Entities::MergeRequest,
source: Project,
finder: ->(id) { find_merge_request_with_access(id, :update_merge_request) },
feature_category: :code_review
2019-01-06 17:56:02 +00:00
},
{
type: 'issues',
entity: Entities::Issue,
source: Project,
finder: ->(id) { find_project_issue(id) },
feature_category: :team_planning
2019-01-06 17:56:02 +00:00
},
{
type: 'labels',
entity: Entities::ProjectLabel,
source: Project,
finder: ->(id) { find_label(user_project, id) },
feature_category: :team_planning
2019-01-06 17:56:02 +00:00
},
{
type: 'labels',
entity: Entities::GroupLabel,
source: Group,
finder: ->(id) { find_label(user_group, id) },
feature_category: :team_planning
2019-01-06 17:56:02 +00:00
}
]
subscribables.each do |subscribable|
source_type = subscribable[:source].name.underscore
params do
requires :id, type: String, desc: "The #{source_type} ID"
requires :subscribable_id, type: String, desc: 'The ID of a resource'
end
resource source_type.pluralize, requirements: SUBSCRIBE_ENDPOINT_REQUIREMENTS do
2016-11-09 15:57:14 +00:00
desc 'Subscribe to a resource' do
2018-12-28 09:47:00 +00:00
success subscribable[:entity]
2016-11-09 15:57:14 +00:00
end
post ":id/#{subscribable[:type]}/:subscribable_id/subscribe", subscribable.slice(:feature_category) do
2019-01-06 17:56:02 +00:00
parent = parent_resource(source_type)
2018-09-08 08:36:45 +00:00
resource = instance_exec(params[:subscribable_id], &subscribable[:finder])
if resource.subscribed?(current_user, parent)
not_modified!
else
resource.subscribe(current_user, parent)
2019-01-06 19:31:37 +00:00
present resource, with: subscribable[:entity], current_user: current_user, project: parent, parent: parent
end
end
2016-11-09 15:57:14 +00:00
desc 'Unsubscribe from a resource' do
2018-12-28 09:47:00 +00:00
success subscribable[:entity]
2016-11-09 15:57:14 +00:00
end
post ":id/#{subscribable[:type]}/:subscribable_id/unsubscribe", subscribable.slice(:feature_category) do
2019-01-06 17:56:02 +00:00
parent = parent_resource(source_type)
2018-09-08 08:36:45 +00:00
resource = instance_exec(params[:subscribable_id], &subscribable[:finder])
if !resource.subscribed?(current_user, parent)
not_modified!
else
resource.unsubscribe(current_user, parent)
2019-01-06 19:31:37 +00:00
present resource, with: subscribable[:entity], current_user: current_user, project: parent, parent: parent
end
end
end
end
2019-01-06 17:56:02 +00:00
private
helpers do
def parent_resource(source_type)
case source_type
when 'project'
user_project
else
nil
end
end
end
end
end