Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Van Landuyt <bob@vanlanduyt.co>2017-09-05 17:18:24 +0300
committerBob Van Landuyt <bob@vanlanduyt.co>2017-10-04 23:46:49 +0300
commit648c082a23f51bdf7151b6c5f716e74c4fe6a5bd (patch)
treef24c86cec8472ed6d37ff62c6f5c67f40af3964f /app/serializers/group_child_entity.rb
parentd33e15574b064e38ceadf8aafb47af985d1a7a7a (diff)
Render group children using the same entity
Diffstat (limited to 'app/serializers/group_child_entity.rb')
-rw-r--r--app/serializers/group_child_entity.rb70
1 files changed, 64 insertions, 6 deletions
diff --git a/app/serializers/group_child_entity.rb b/app/serializers/group_child_entity.rb
index 0d2052fe6f3..bc870541795 100644
--- a/app/serializers/group_child_entity.rb
+++ b/app/serializers/group_child_entity.rb
@@ -2,10 +2,12 @@ class GroupChildEntity < Grape::Entity
include ActionView::Helpers::NumberHelper
include RequestAwareEntity
- expose :id, :name, :description, :visibility, :full_name, :full_path, :web_url,
- :created_at, :updated_at, :star_count, :can_edit, :type, :parent_id,
- :children_count, :leave_path, :edit_path, :number_projects_with_delimiter,
- :number_users_with_delimiter, :permissions, :star_count
+ expose :id, :name, :path, :description, :visibility, :full_name, :full_path, :web_url,
+ :created_at, :updated_at, :can_edit, :type, :avatar_url, :permission, :edit_path
+
+ def project?
+ object.is_a?(Project)
+ end
def type
object.class.name.downcase
@@ -14,7 +16,63 @@ class GroupChildEntity < Grape::Entity
def can_edit
return false unless request.respond_to?(:current_user)
- can?(request.current_user, "edit_{type}", object)
+ if project?
+ can?(request.current_user, :admin_project, object)
+ else
+ can?(request.current_user, :admin_group, object)
+ end
+ end
+
+ def edit_path
+ if project?
+ edit_project_path(object)
+ else
+ edit_group_path(object)
+ end
+ end
+
+ def permission
+ if project?
+ object.project_members.find_by(user_id: request.current_user)&.human_access
+ else
+ object.group_members.find_by(user_id: request.current_user)&.human_access
+ end
+ end
+
+ # Project only attributes
+ expose :star_count,
+ if: lambda { |_instance, _options| project? }
+
+ # Group only attributes
+ expose :children_count, :leave_path, :parent_id, :number_projects_with_delimiter,
+ :number_users_with_delimiter, :project_count, :subgroup_count,
+ unless: lambda { |_instance, _options| project? }
+
+ def children_finder
+ @children_finder ||= GroupChildrenFinder.new(request.current_user, parent_group: object)
+ end
+
+ def children_count
+ @children_count ||= children_finder.total_count
+ end
+
+ def project_count
+ @project_count ||= children_finder.project_count
+ end
+
+ def subgroup_count
+ @subgroup_count ||= children_finder.subgroup_count
+ end
+
+ def leave_path
+ leave_group_group_members_path(object)
+ end
+
+ def number_projects_with_delimiter
+ number_with_delimiter(project_count)
+ end
+
+ def number_users_with_delimiter
+ number_with_delimiter(object.users.count)
end
- expose
end