2012-06-27 07:32:56 -04:00
|
|
|
module Gitlab
|
|
|
|
module Entities
|
|
|
|
class User < Grape::Entity
|
2012-12-10 17:46:31 -05:00
|
|
|
expose :id, :username, :email, :name, :bio, :skype, :linkedin, :twitter,
|
2012-12-18 14:24:31 -05:00
|
|
|
:dark_scheme, :theme_id, :blocked, :created_at, :extern_uid, :provider
|
2012-06-27 07:32:56 -04:00
|
|
|
end
|
2012-06-27 08:51:39 -04:00
|
|
|
|
2012-07-05 09:47:00 -04:00
|
|
|
class UserBasic < Grape::Entity
|
2012-12-10 17:46:31 -05:00
|
|
|
expose :id, :username, :email, :name, :blocked, :created_at
|
2012-07-05 09:47:00 -04:00
|
|
|
end
|
|
|
|
|
2012-09-20 11:36:43 -04:00
|
|
|
class UserLogin < UserBasic
|
|
|
|
expose :private_token
|
2012-09-20 10:44:44 -04:00
|
|
|
end
|
|
|
|
|
2012-09-08 13:51:12 -04:00
|
|
|
class Hook < Grape::Entity
|
2012-11-29 17:59:56 -05:00
|
|
|
expose :id, :url, :created_at
|
2012-09-08 13:51:12 -04:00
|
|
|
end
|
|
|
|
|
2012-06-27 08:51:39 -04:00
|
|
|
class Project < Grape::Entity
|
2012-12-22 14:06:18 -05:00
|
|
|
expose :id, :name, :description, :default_branch
|
2012-08-10 18:07:50 -04:00
|
|
|
expose :owner, using: Entities::UserBasic
|
|
|
|
expose :private_flag, as: :private
|
2013-01-31 02:11:35 -05:00
|
|
|
expose :path, :path_with_namespace
|
2012-06-27 08:51:39 -04:00
|
|
|
expose :issues_enabled, :merge_requests_enabled, :wall_enabled, :wiki_enabled, :created_at
|
2013-01-02 15:31:20 -05:00
|
|
|
expose :namespace
|
2012-06-27 08:51:39 -04:00
|
|
|
end
|
|
|
|
|
2012-09-21 06:23:17 -04:00
|
|
|
class ProjectMember < UserBasic
|
|
|
|
expose :project_access, :as => :access_level do |user, options|
|
|
|
|
options[:project].users_projects.find_by_user_id(user.id).project_access
|
|
|
|
end
|
2012-09-06 16:49:29 -04:00
|
|
|
end
|
|
|
|
|
2013-01-08 16:05:00 -05:00
|
|
|
class Group < Grape::Entity
|
2013-02-01 09:00:12 -05:00
|
|
|
expose :id, :name, :path, :owner_id
|
2013-01-08 16:05:00 -05:00
|
|
|
end
|
|
|
|
|
2013-02-03 13:38:33 -05:00
|
|
|
class GroupDetail < Group
|
2013-01-08 16:05:00 -05:00
|
|
|
expose :projects, using: Entities::Project
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2012-07-06 09:08:17 -04:00
|
|
|
class RepoObject < Grape::Entity
|
2012-06-27 08:51:39 -04:00
|
|
|
expose :name, :commit
|
2013-01-28 12:22:44 -05:00
|
|
|
expose :protected do |repo, options|
|
|
|
|
if options[:project]
|
|
|
|
options[:project].protected_branch? repo.name
|
|
|
|
end
|
|
|
|
end
|
2012-06-27 08:51:39 -04:00
|
|
|
end
|
2012-06-29 09:34:08 -04:00
|
|
|
|
2012-09-21 07:34:07 -04:00
|
|
|
class RepoCommit < Grape::Entity
|
|
|
|
expose :id, :short_id, :title, :author_name, :author_email, :created_at
|
|
|
|
end
|
|
|
|
|
2012-06-29 09:34:08 -04:00
|
|
|
class ProjectSnippet < Grape::Entity
|
|
|
|
expose :id, :title, :file_name
|
2012-08-10 18:07:50 -04:00
|
|
|
expose :author, using: Entities::UserBasic
|
2012-06-29 09:34:08 -04:00
|
|
|
expose :expires_at, :updated_at, :created_at
|
|
|
|
end
|
2012-07-24 08:19:51 -04:00
|
|
|
|
|
|
|
class Milestone < Grape::Entity
|
2012-09-20 08:38:34 -04:00
|
|
|
expose :id
|
|
|
|
expose (:project_id) {|milestone| milestone.project.id}
|
|
|
|
expose :title, :description, :due_date, :closed, :updated_at, :created_at
|
2012-07-24 08:19:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
class Issue < Grape::Entity
|
2012-07-25 07:22:21 -04:00
|
|
|
expose :id
|
|
|
|
expose (:project_id) {|issue| issue.project.id}
|
|
|
|
expose :title, :description
|
2012-08-10 18:07:50 -04:00
|
|
|
expose :label_list, as: :labels
|
|
|
|
expose :milestone, using: Entities::Milestone
|
|
|
|
expose :assignee, :author, using: Entities::UserBasic
|
2012-07-24 08:19:51 -04:00
|
|
|
expose :closed, :updated_at, :created_at
|
|
|
|
end
|
2012-09-16 10:52:06 -04:00
|
|
|
|
2012-09-21 07:49:28 -04:00
|
|
|
class SSHKey < Grape::Entity
|
2012-11-29 17:59:56 -05:00
|
|
|
expose :id, :title, :key, :created_at
|
2012-09-16 10:52:06 -04:00
|
|
|
end
|
2012-10-21 07:00:27 -04:00
|
|
|
|
|
|
|
class MergeRequest < Grape::Entity
|
2012-10-25 06:38:55 -04:00
|
|
|
expose :id, :target_branch, :source_branch, :project_id, :title, :closed, :merged
|
2012-10-21 07:00:27 -04:00
|
|
|
expose :author, :assignee, using: Entities::UserBasic
|
|
|
|
end
|
2012-10-21 12:48:56 -04:00
|
|
|
|
|
|
|
class Note < Grape::Entity
|
2012-11-27 14:43:39 -05:00
|
|
|
expose :id
|
|
|
|
expose :note, as: :body
|
2012-10-21 12:48:56 -04:00
|
|
|
expose :author, using: Entities::UserBasic
|
2012-11-29 17:41:24 -05:00
|
|
|
expose :created_at
|
2012-10-21 12:48:56 -04:00
|
|
|
end
|
2012-11-29 15:10:07 -05:00
|
|
|
|
|
|
|
class MRNote < Grape::Entity
|
|
|
|
expose :note
|
|
|
|
expose :author, using: Entities::UserBasic
|
|
|
|
end
|
2012-06-27 07:32:56 -04:00
|
|
|
end
|
|
|
|
end
|