add projects API
This commit is contained in:
parent
4ad91d3c11
commit
7b5c3cc8be
3 changed files with 101 additions and 0 deletions
30
lib/api.rb
30
lib/api.rb
|
@ -6,6 +6,7 @@ module Gitlab
|
|||
format :json
|
||||
helpers APIHelpers
|
||||
|
||||
# Users API
|
||||
resource :users do
|
||||
before { authenticate! }
|
||||
|
||||
|
@ -27,5 +28,34 @@ module Gitlab
|
|||
authenticate!
|
||||
present @current_user, :with => Entities::User
|
||||
end
|
||||
|
||||
# Projects API
|
||||
resource :projects do
|
||||
before { authenticate! }
|
||||
|
||||
# GET /projects
|
||||
get do
|
||||
@projects = current_user.projects
|
||||
present @projects, :with => Entities::Project
|
||||
end
|
||||
|
||||
# GET /projects/:id
|
||||
get ":id" do
|
||||
@project = Project.find_by_code(params[:id])
|
||||
present @project, :with => Entities::Project
|
||||
end
|
||||
|
||||
# GET /projects/:id/repository/branches
|
||||
get ":id/repository/branches" do
|
||||
@project = Project.find_by_code(params[:id])
|
||||
present @project.repo.heads.sort_by(&:name), :with => Entities::ProjectRepositoryBranches
|
||||
end
|
||||
|
||||
# GET /projects/:id/repository/tags
|
||||
get ":id/repository/tags" do
|
||||
@project = Project.find_by_code(params[:id])
|
||||
present @project.repo.tags.sort_by(&:name).reverse, :with => Entities::ProjectRepositoryTags
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -4,5 +4,20 @@ module Gitlab
|
|||
expose :id, :email, :name, :bio, :skype, :linkedin, :twitter,
|
||||
:dark_scheme, :theme_id, :blocked, :created_at
|
||||
end
|
||||
|
||||
class Project < Grape::Entity
|
||||
expose :id, :code, :name, :description, :path, :default_branch
|
||||
expose :owner, :using => Entities::User
|
||||
expose :private_flag, :as => :private
|
||||
expose :issues_enabled, :merge_requests_enabled, :wall_enabled, :wiki_enabled, :created_at
|
||||
end
|
||||
|
||||
class ProjectRepositoryBranches < Grape::Entity
|
||||
expose :name, :commit
|
||||
end
|
||||
|
||||
class ProjectRepositoryTags < Grape::Entity
|
||||
expose :name, :commit
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue