2012-06-29 12:46:01 +02:00
|
|
|
module Gitlab
|
|
|
|
# Projects API
|
|
|
|
class Projects < Grape::API
|
|
|
|
before { authenticate! }
|
|
|
|
|
|
|
|
resource :projects do
|
2013-02-08 16:33:15 +01:00
|
|
|
helpers do
|
|
|
|
def handle_project_member_errors(errors)
|
|
|
|
if errors[:project_access].any?
|
|
|
|
error!(errors[:project_access], 422)
|
|
|
|
end
|
|
|
|
not_found!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-06-29 12:46:01 +02:00
|
|
|
# Get a projects list for authenticated user
|
|
|
|
#
|
|
|
|
# Example Request:
|
|
|
|
# GET /projects
|
|
|
|
get do
|
2013-01-02 18:32:34 +01:00
|
|
|
@projects = paginate current_user.authorized_projects
|
2012-08-11 00:07:50 +02:00
|
|
|
present @projects, with: Entities::Project
|
2012-06-29 12:46:01 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# Get a single project
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-06-29 12:46:01 +02:00
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id
|
|
|
|
get ":id" do
|
2012-08-11 00:07:50 +02:00
|
|
|
present user_project, with: Entities::Project
|
2012-06-29 12:46:01 +02:00
|
|
|
end
|
|
|
|
|
2012-08-31 09:15:37 +02:00
|
|
|
# Create new project
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# name (required) - name for new project
|
2012-09-03 17:00:24 +02:00
|
|
|
# description (optional) - short project description
|
|
|
|
# default_branch (optional) - 'master' by default
|
|
|
|
# issues_enabled (optional) - enabled by default
|
|
|
|
# wall_enabled (optional) - enabled by default
|
|
|
|
# merge_requests_enabled (optional) - enabled by default
|
|
|
|
# wiki_enabled (optional) - enabled by default
|
2012-08-31 09:15:37 +02:00
|
|
|
# Example Request
|
|
|
|
# POST /projects
|
|
|
|
post do
|
2013-02-13 15:48:52 +01:00
|
|
|
bad_request!(:name) if !params.has_key? :name
|
2012-11-23 21:25:28 +01:00
|
|
|
attrs = attributes_for_keys [:name,
|
2012-09-21 12:22:30 +02:00
|
|
|
:description,
|
|
|
|
:default_branch,
|
|
|
|
:issues_enabled,
|
|
|
|
:wall_enabled,
|
|
|
|
:merge_requests_enabled,
|
2012-09-16 18:51:04 +02:00
|
|
|
:wiki_enabled]
|
2013-02-08 16:33:15 +01:00
|
|
|
|
2013-01-18 19:21:13 +01:00
|
|
|
@project = ::Projects::CreateContext.new(current_user, attrs).execute
|
2012-08-31 09:15:37 +02:00
|
|
|
if @project.saved?
|
|
|
|
present @project, with: Entities::Project
|
|
|
|
else
|
2013-02-14 15:51:56 +01:00
|
|
|
if @project.errors[:limit_reached].present?
|
|
|
|
error!(@project.errors[:limit_reached], 403)
|
|
|
|
end
|
2012-09-10 09:41:46 +02:00
|
|
|
not_found!
|
2012-08-31 09:15:37 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-09-21 12:23:17 +02:00
|
|
|
# Get a project team members
|
2012-09-06 22:49:29 +02:00
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-12-18 19:52:18 +01:00
|
|
|
# query - Query string
|
2012-09-06 22:49:29 +02:00
|
|
|
# Example Request:
|
2012-09-21 12:23:17 +02:00
|
|
|
# GET /projects/:id/members
|
|
|
|
get ":id/members" do
|
2012-12-18 19:52:18 +01:00
|
|
|
if params[:query].present?
|
|
|
|
@members = paginate user_project.users.where("username LIKE ?", "%#{params[:query]}%")
|
|
|
|
else
|
|
|
|
@members = paginate user_project.users
|
|
|
|
end
|
2012-09-21 12:23:17 +02:00
|
|
|
present @members, with: Entities::ProjectMember, project: user_project
|
2012-09-06 22:49:29 +02:00
|
|
|
end
|
|
|
|
|
2012-09-21 12:23:17 +02:00
|
|
|
# Get a project team members
|
2012-09-05 22:01:03 +02:00
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-09-21 12:23:17 +02:00
|
|
|
# user_id (required) - The ID of a user
|
2012-09-05 22:01:03 +02:00
|
|
|
# Example Request:
|
2012-09-21 12:23:17 +02:00
|
|
|
# GET /projects/:id/members/:user_id
|
|
|
|
get ":id/members/:user_id" do
|
|
|
|
@member = user_project.users.find params[:user_id]
|
|
|
|
present @member, with: Entities::ProjectMember, project: user_project
|
|
|
|
end
|
|
|
|
|
|
|
|
# Add a new project team member
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-09-21 12:23:17 +02:00
|
|
|
# user_id (required) - The ID of a user
|
|
|
|
# access_level (required) - Project access level
|
|
|
|
# Example Request:
|
|
|
|
# POST /projects/:id/members
|
|
|
|
post ":id/members" do
|
2012-09-10 08:06:11 +02:00
|
|
|
authorize! :admin_project, user_project
|
2012-09-21 12:23:17 +02:00
|
|
|
|
2013-02-13 15:48:52 +01:00
|
|
|
bad_request!(:user_id) if !params.has_key? :user_id
|
|
|
|
bad_request!(:access_level) if !params.has_key? :access_level
|
2013-02-08 14:33:29 +01:00
|
|
|
|
|
|
|
# either the user is already a team member or a new one
|
|
|
|
team_member = user_project.team_member_by_id(params[:user_id])
|
|
|
|
if team_member.nil?
|
|
|
|
team_member = user_project.users_projects.new(
|
|
|
|
user_id: params[:user_id],
|
|
|
|
project_access: params[:access_level]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
if team_member.save
|
|
|
|
@member = team_member.user
|
2012-09-21 12:23:17 +02:00
|
|
|
present @member, with: Entities::ProjectMember, project: user_project
|
|
|
|
else
|
2013-02-08 16:33:15 +01:00
|
|
|
handle_project_member_errors team_member.errors
|
2012-09-21 12:23:17 +02:00
|
|
|
end
|
2012-09-05 22:01:03 +02:00
|
|
|
end
|
|
|
|
|
2012-09-21 12:23:17 +02:00
|
|
|
# Update project team member
|
2012-09-06 22:49:29 +02:00
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-09-21 12:23:17 +02:00
|
|
|
# user_id (required) - The ID of a team member
|
|
|
|
# access_level (required) - Project access level
|
2012-09-06 22:49:29 +02:00
|
|
|
# Example Request:
|
2012-09-21 12:23:17 +02:00
|
|
|
# PUT /projects/:id/members/:user_id
|
|
|
|
put ":id/members/:user_id" do
|
2012-09-10 08:06:11 +02:00
|
|
|
authorize! :admin_project, user_project
|
2012-09-21 12:23:17 +02:00
|
|
|
|
2013-02-08 14:33:29 +01:00
|
|
|
team_member = user_project.users_projects.find_by_user_id(params[:user_id])
|
2013-02-13 15:48:52 +01:00
|
|
|
bad_request!(:access_level) if !params.has_key? :access_level
|
|
|
|
not_found!("User can not be found") if team_member.nil?
|
2013-02-08 14:33:29 +01:00
|
|
|
|
|
|
|
if team_member.update_attributes(project_access: params[:access_level])
|
|
|
|
@member = team_member.user
|
2012-09-21 12:23:17 +02:00
|
|
|
present @member, with: Entities::ProjectMember, project: user_project
|
|
|
|
else
|
2013-02-08 16:33:15 +01:00
|
|
|
handle_project_member_errors team_member.errors
|
2012-09-21 12:23:17 +02:00
|
|
|
end
|
2012-09-06 22:49:29 +02:00
|
|
|
end
|
|
|
|
|
2012-09-21 12:23:17 +02:00
|
|
|
# Remove a team member from project
|
2012-09-06 22:49:29 +02:00
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-09-21 12:23:17 +02:00
|
|
|
# user_id (required) - The ID of a team member
|
2012-09-06 22:49:29 +02:00
|
|
|
# Example Request:
|
2012-09-21 12:23:17 +02:00
|
|
|
# DELETE /projects/:id/members/:user_id
|
|
|
|
delete ":id/members/:user_id" do
|
2012-09-10 08:06:11 +02:00
|
|
|
authorize! :admin_project, user_project
|
2013-02-14 16:55:33 +01:00
|
|
|
team_member = user_project.users_projects.find_by_user_id(params[:user_id])
|
|
|
|
unless team_member.nil?
|
|
|
|
team_member.destroy
|
2013-02-01 14:53:35 +01:00
|
|
|
else
|
|
|
|
{:message => "Access revoked", :id => params[:user_id].to_i}
|
|
|
|
end
|
2012-09-06 22:49:29 +02:00
|
|
|
end
|
|
|
|
|
2012-09-08 19:51:12 +02:00
|
|
|
# Get project hooks
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-09-08 19:51:12 +02:00
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/hooks
|
|
|
|
get ":id/hooks" do
|
2012-09-10 15:50:01 +02:00
|
|
|
authorize! :admin_project, user_project
|
2012-09-08 19:51:12 +02:00
|
|
|
@hooks = paginate user_project.hooks
|
|
|
|
present @hooks, with: Entities::Hook
|
|
|
|
end
|
2012-11-09 18:36:55 +01:00
|
|
|
|
2012-10-12 09:30:09 +02:00
|
|
|
# Get a project hook
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-10-12 09:30:09 +02:00
|
|
|
# hook_id (required) - The ID of a project hook
|
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/hooks/:hook_id
|
|
|
|
get ":id/hooks/:hook_id" do
|
2013-02-16 14:42:49 +01:00
|
|
|
authorize! :admin_project, user_project
|
2012-10-12 09:30:09 +02:00
|
|
|
@hook = user_project.hooks.find(params[:hook_id])
|
|
|
|
present @hook, with: Entities::Hook
|
|
|
|
end
|
2012-11-09 18:36:55 +01:00
|
|
|
|
2012-09-08 19:51:12 +02:00
|
|
|
|
|
|
|
# Add hook to project
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-09-08 19:51:12 +02:00
|
|
|
# url (required) - The hook URL
|
|
|
|
# Example Request:
|
|
|
|
# POST /projects/:id/hooks
|
|
|
|
post ":id/hooks" do
|
2012-09-10 15:50:01 +02:00
|
|
|
authorize! :admin_project, user_project
|
2013-02-12 17:44:42 +01:00
|
|
|
|
2013-02-13 15:48:52 +01:00
|
|
|
bad_request!(:url) unless params.has_key? :url
|
2013-02-12 17:44:42 +01:00
|
|
|
|
2012-09-08 19:51:12 +02:00
|
|
|
@hook = user_project.hooks.new({"url" => params[:url]})
|
|
|
|
if @hook.save
|
|
|
|
present @hook, with: Entities::Hook
|
|
|
|
else
|
2013-02-14 16:55:33 +01:00
|
|
|
if @hook.errors[:url].present?
|
|
|
|
error!("Invalid url given", 422)
|
|
|
|
end
|
2013-02-12 17:44:42 +01:00
|
|
|
not_found!
|
2012-09-08 19:51:12 +02:00
|
|
|
end
|
|
|
|
end
|
2012-11-09 18:36:55 +01:00
|
|
|
|
2012-10-12 09:30:09 +02:00
|
|
|
# Update an existing project hook
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-10-12 09:30:09 +02:00
|
|
|
# hook_id (required) - The ID of a project hook
|
|
|
|
# url (required) - The hook URL
|
|
|
|
# Example Request:
|
|
|
|
# PUT /projects/:id/hooks/:hook_id
|
|
|
|
put ":id/hooks/:hook_id" do
|
|
|
|
@hook = user_project.hooks.find(params[:hook_id])
|
|
|
|
authorize! :admin_project, user_project
|
|
|
|
|
2013-02-13 15:48:52 +01:00
|
|
|
bad_request!(:url) unless params.has_key? :url
|
2012-10-12 09:30:09 +02:00
|
|
|
|
2013-02-08 16:33:15 +01:00
|
|
|
attrs = attributes_for_keys [:url]
|
2012-10-12 09:30:09 +02:00
|
|
|
if @hook.update_attributes attrs
|
|
|
|
present @hook, with: Entities::Hook
|
|
|
|
else
|
2013-02-14 16:55:33 +01:00
|
|
|
if @hook.errors[:url].present?
|
|
|
|
error!("Invalid url given", 422)
|
|
|
|
end
|
2012-10-12 09:30:09 +02:00
|
|
|
not_found!
|
|
|
|
end
|
|
|
|
end
|
2012-09-08 19:51:12 +02:00
|
|
|
|
|
|
|
# Delete project hook
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-09-08 19:51:12 +02:00
|
|
|
# hook_id (required) - The ID of hook to delete
|
|
|
|
# Example Request:
|
2013-02-20 12:35:36 +01:00
|
|
|
# DELETE /projects/:id/hooks/:hook_id
|
|
|
|
delete ":id/hooks/:hook_id" do
|
2012-09-10 15:50:01 +02:00
|
|
|
authorize! :admin_project, user_project
|
2013-02-13 15:48:52 +01:00
|
|
|
bad_request!(:hook_id) unless params.has_key? :hook_id
|
2013-02-12 17:44:42 +01:00
|
|
|
|
|
|
|
begin
|
|
|
|
@hook = ProjectHook.find(params[:hook_id])
|
|
|
|
@hook.destroy
|
|
|
|
rescue
|
|
|
|
end
|
2012-09-08 19:51:12 +02:00
|
|
|
end
|
|
|
|
|
2012-06-29 12:46:01 +02:00
|
|
|
# Get a project repository branches
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-06-29 12:46:01 +02:00
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/repository/branches
|
|
|
|
get ":id/repository/branches" do
|
2013-01-28 18:22:44 +01:00
|
|
|
present user_project.repo.heads.sort_by(&:name), with: Entities::RepoObject, project: user_project
|
2012-06-29 12:46:01 +02:00
|
|
|
end
|
|
|
|
|
2012-07-26 16:29:53 +02:00
|
|
|
# Get a single branch
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-08-01 14:48:15 +02:00
|
|
|
# branch (required) - The name of the branch
|
2012-07-26 16:29:53 +02:00
|
|
|
# Example Request:
|
2012-08-01 14:48:15 +02:00
|
|
|
# GET /projects/:id/repository/branches/:branch
|
|
|
|
get ":id/repository/branches/:branch" do
|
|
|
|
@branch = user_project.repo.heads.find { |item| item.name == params[:branch] }
|
2013-02-09 20:54:52 +01:00
|
|
|
not_found!("Branch does not exist") if @branch.nil?
|
2013-01-28 18:22:44 +01:00
|
|
|
present @branch, with: Entities::RepoObject, project: user_project
|
|
|
|
end
|
|
|
|
|
|
|
|
# Protect a single branch
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# id (required) - The ID of a project
|
|
|
|
# branch (required) - The name of the branch
|
|
|
|
# Example Request:
|
|
|
|
# PUT /projects/:id/repository/branches/:branch/protect
|
|
|
|
put ":id/repository/branches/:branch/protect" do
|
|
|
|
@branch = user_project.repo.heads.find { |item| item.name == params[:branch] }
|
2013-02-14 16:55:33 +01:00
|
|
|
not_found! unless @branch
|
2013-01-28 18:22:44 +01:00
|
|
|
protected = user_project.protected_branches.find_by_name(@branch.name)
|
|
|
|
|
|
|
|
unless protected
|
|
|
|
user_project.protected_branches.create(:name => @branch.name)
|
|
|
|
end
|
|
|
|
|
|
|
|
present @branch, with: Entities::RepoObject, project: user_project
|
|
|
|
end
|
|
|
|
|
|
|
|
# Unprotect a single branch
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# id (required) - The ID of a project
|
|
|
|
# branch (required) - The name of the branch
|
|
|
|
# Example Request:
|
|
|
|
# PUT /projects/:id/repository/branches/:branch/unprotect
|
|
|
|
put ":id/repository/branches/:branch/unprotect" do
|
|
|
|
@branch = user_project.repo.heads.find { |item| item.name == params[:branch] }
|
2013-02-14 16:55:33 +01:00
|
|
|
not_found! unless @branch
|
2013-01-28 18:22:44 +01:00
|
|
|
protected = user_project.protected_branches.find_by_name(@branch.name)
|
|
|
|
|
|
|
|
if protected
|
|
|
|
protected.destroy
|
|
|
|
end
|
|
|
|
|
|
|
|
present @branch, with: Entities::RepoObject, project: user_project
|
2012-07-26 16:29:53 +02:00
|
|
|
end
|
|
|
|
|
2012-06-29 12:46:01 +02:00
|
|
|
# Get a project repository tags
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-06-29 12:46:01 +02:00
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/repository/tags
|
|
|
|
get ":id/repository/tags" do
|
2012-08-11 00:07:50 +02:00
|
|
|
present user_project.repo.tags.sort_by(&:name).reverse, with: Entities::RepoObject
|
2012-06-29 12:46:01 +02:00
|
|
|
end
|
2012-06-29 15:34:08 +02:00
|
|
|
|
2012-09-21 13:34:07 +02:00
|
|
|
# Get a project repository commits
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2013-02-27 11:24:12 +01:00
|
|
|
# ref_name (optional) - The name of a repository branch or tag, if not given the default branch is used
|
|
|
|
# page (optional) - The page number of the commit pagination
|
|
|
|
# per_page (optional) - The number of elements per page used in pagination
|
2012-09-21 13:34:07 +02:00
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/repository/commits
|
|
|
|
get ":id/repository/commits" do
|
|
|
|
authorize! :download_code, user_project
|
|
|
|
|
|
|
|
page = params[:page] || 0
|
|
|
|
per_page = params[:per_page] || 20
|
|
|
|
ref = params[:ref_name] || user_project.try(:default_branch) || 'master'
|
|
|
|
|
2013-01-04 17:50:31 +01:00
|
|
|
commits = user_project.repository.commits(ref, nil, per_page, page * per_page)
|
2012-09-21 13:34:07 +02:00
|
|
|
present CommitDecorator.decorate(commits), with: Entities::RepoCommit
|
|
|
|
end
|
|
|
|
|
2012-10-08 11:13:53 +02:00
|
|
|
# Get a project snippets
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-10-08 11:13:53 +02:00
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/snippets
|
|
|
|
get ":id/snippets" do
|
|
|
|
present paginate(user_project.snippets), with: Entities::ProjectSnippet
|
|
|
|
end
|
|
|
|
|
2012-06-29 15:34:08 +02:00
|
|
|
# Get a project snippet
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-06-29 15:34:08 +02:00
|
|
|
# snippet_id (required) - The ID of a project snippet
|
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/snippets/:snippet_id
|
|
|
|
get ":id/snippets/:snippet_id" do
|
2012-07-06 15:08:17 +02:00
|
|
|
@snippet = user_project.snippets.find(params[:snippet_id])
|
2012-08-11 00:07:50 +02:00
|
|
|
present @snippet, with: Entities::ProjectSnippet
|
2012-06-29 15:34:08 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# Create a new project snippet
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-06-29 15:34:08 +02:00
|
|
|
# title (required) - The title of a snippet
|
|
|
|
# file_name (required) - The name of a snippet file
|
|
|
|
# lifetime (optional) - The expiration date of a snippet
|
|
|
|
# code (required) - The content of a snippet
|
|
|
|
# Example Request:
|
|
|
|
# POST /projects/:id/snippets
|
|
|
|
post ":id/snippets" do
|
2012-09-21 12:22:30 +02:00
|
|
|
authorize! :write_snippet, user_project
|
|
|
|
|
2013-02-13 15:48:52 +01:00
|
|
|
bad_request!(:title) if !params[:title].present?
|
|
|
|
bad_request!(:file_name) if !params[:file_name].present?
|
|
|
|
bad_request!(:code) if !params[:code].present?
|
2013-02-13 12:09:16 +01:00
|
|
|
|
2012-09-16 19:08:57 +02:00
|
|
|
attrs = attributes_for_keys [:title, :file_name]
|
2012-09-16 18:51:04 +02:00
|
|
|
attrs[:expires_at] = params[:lifetime] if params[:lifetime].present?
|
|
|
|
attrs[:content] = params[:code] if params[:code].present?
|
|
|
|
@snippet = user_project.snippets.new attrs
|
2012-06-29 15:34:08 +02:00
|
|
|
@snippet.author = current_user
|
|
|
|
|
|
|
|
if @snippet.save
|
2012-08-11 00:07:50 +02:00
|
|
|
present @snippet, with: Entities::ProjectSnippet
|
2012-06-29 15:34:08 +02:00
|
|
|
else
|
2012-09-10 09:41:46 +02:00
|
|
|
not_found!
|
2012-06-29 15:34:08 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-07-04 11:03:32 +02:00
|
|
|
# Update an existing project snippet
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-07-04 11:03:32 +02:00
|
|
|
# snippet_id (required) - The ID of a project snippet
|
|
|
|
# title (optional) - The title of a snippet
|
|
|
|
# file_name (optional) - The name of a snippet file
|
|
|
|
# lifetime (optional) - The expiration date of a snippet
|
|
|
|
# code (optional) - The content of a snippet
|
|
|
|
# Example Request:
|
|
|
|
# PUT /projects/:id/snippets/:snippet_id
|
|
|
|
put ":id/snippets/:snippet_id" do
|
2012-07-06 15:08:17 +02:00
|
|
|
@snippet = user_project.snippets.find(params[:snippet_id])
|
2012-09-10 08:06:11 +02:00
|
|
|
authorize! :modify_snippet, @snippet
|
|
|
|
|
2012-09-16 19:08:57 +02:00
|
|
|
attrs = attributes_for_keys [:title, :file_name]
|
2012-09-16 18:51:04 +02:00
|
|
|
attrs[:expires_at] = params[:lifetime] if params[:lifetime].present?
|
|
|
|
attrs[:content] = params[:code] if params[:code].present?
|
2012-07-04 11:03:32 +02:00
|
|
|
|
2012-09-16 18:51:04 +02:00
|
|
|
if @snippet.update_attributes attrs
|
2012-08-11 00:07:50 +02:00
|
|
|
present @snippet, with: Entities::ProjectSnippet
|
2012-07-04 11:03:32 +02:00
|
|
|
else
|
2012-09-10 09:41:46 +02:00
|
|
|
not_found!
|
2012-07-04 11:03:32 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-06-29 15:34:08 +02:00
|
|
|
# Delete a project snippet
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-06-29 15:34:08 +02:00
|
|
|
# snippet_id (required) - The ID of a project snippet
|
|
|
|
# Example Request:
|
|
|
|
# DELETE /projects/:id/snippets/:snippet_id
|
|
|
|
delete ":id/snippets/:snippet_id" do
|
2013-02-13 12:09:16 +01:00
|
|
|
begin
|
|
|
|
@snippet = user_project.snippets.find(params[:snippet_id])
|
|
|
|
authorize! :modify_snippet, user_project
|
|
|
|
@snippet.destroy
|
|
|
|
rescue
|
|
|
|
end
|
2012-06-29 15:34:08 +02:00
|
|
|
end
|
2012-07-04 11:03:32 +02:00
|
|
|
|
|
|
|
# Get a raw project snippet
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-07-04 11:03:32 +02:00
|
|
|
# snippet_id (required) - The ID of a project snippet
|
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/snippets/:snippet_id/raw
|
|
|
|
get ":id/snippets/:snippet_id/raw" do
|
2012-07-06 15:08:17 +02:00
|
|
|
@snippet = user_project.snippets.find(params[:snippet_id])
|
2012-08-01 14:57:56 +02:00
|
|
|
content_type 'text/plain'
|
2012-07-04 11:03:32 +02:00
|
|
|
present @snippet.content
|
|
|
|
end
|
2012-07-26 16:29:53 +02:00
|
|
|
|
|
|
|
# Get a raw file contents
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-08-01 14:48:15 +02:00
|
|
|
# sha (required) - The commit or branch name
|
2012-07-26 16:29:53 +02:00
|
|
|
# filepath (required) - The path to the file to display
|
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/repository/commits/:sha/blob
|
|
|
|
get ":id/repository/commits/:sha/blob" do
|
2012-09-21 12:22:30 +02:00
|
|
|
authorize! :download_code, user_project
|
|
|
|
|
2013-02-13 15:48:52 +01:00
|
|
|
bad_request!(:filepath) if !params.has_key? :filepath
|
2013-02-13 14:47:59 +01:00
|
|
|
|
2012-07-26 16:29:53 +02:00
|
|
|
ref = params[:sha]
|
|
|
|
|
2013-01-04 17:50:31 +01:00
|
|
|
commit = user_project.repository.commit ref
|
2012-09-10 09:41:46 +02:00
|
|
|
not_found! "Commit" unless commit
|
2012-08-01 14:48:15 +02:00
|
|
|
|
2013-01-04 17:50:31 +01:00
|
|
|
tree = Tree.new commit.tree, ref, params[:filepath]
|
2012-09-10 09:41:46 +02:00
|
|
|
not_found! "File" unless tree.try(:tree)
|
2012-08-01 14:48:15 +02:00
|
|
|
|
2012-11-09 18:36:55 +01:00
|
|
|
content_type tree.mime_type
|
2012-07-26 16:29:53 +02:00
|
|
|
present tree.data
|
|
|
|
end
|
|
|
|
|
2012-06-29 12:46:01 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|