2012-07-31 08:35:27 +01:00
|
|
|
class Api::V1::BuildListsController < Api::V1::BaseController
|
2012-10-11 11:55:06 +01:00
|
|
|
|
2012-09-26 18:15:11 +01:00
|
|
|
before_filter :authenticate_user!
|
2014-01-21 04:51:49 +00:00
|
|
|
skip_before_filter :authenticate_user!, only: [:show, :index] if APP_CONFIG['anonymous_access']
|
2012-10-11 11:55:06 +01:00
|
|
|
|
2014-01-21 04:51:49 +00:00
|
|
|
load_and_authorize_resource :project, only: :index
|
|
|
|
load_and_authorize_resource :build_list, only: [:show, :create, :cancel, :publish, :reject_publish, :create_container, :publish_into_testing]
|
2012-10-11 11:55:06 +01:00
|
|
|
|
2012-07-31 08:35:27 +01:00
|
|
|
def index
|
2013-07-04 19:25:07 +01:00
|
|
|
filter = BuildList::Filter.new(@project, current_user, current_ability, params[:filter] || {})
|
2014-03-14 21:55:28 +00:00
|
|
|
@build_lists = filter.find.includes(:save_to_platform, :project, :user, :arch)
|
2012-10-10 13:02:59 +01:00
|
|
|
@build_lists = @build_lists.recent.paginate(paginate_params)
|
2012-07-31 08:35:27 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2012-10-10 17:19:00 +01:00
|
|
|
bl_params = params[:build_list] || {}
|
2014-01-21 04:51:49 +00:00
|
|
|
save_to_repository = Repository.where(id: bl_params[:save_to_repository_id]).first
|
2012-09-03 14:49:11 +01:00
|
|
|
|
2014-02-19 21:19:49 +00:00
|
|
|
bl_params[:save_to_platform_id] = save_to_repository.platform_id if save_to_repository
|
2012-08-09 15:38:41 +01:00
|
|
|
|
2013-01-31 11:32:01 +00:00
|
|
|
@build_list = current_user.build_lists.new(bl_params)
|
2013-01-30 16:23:50 +00:00
|
|
|
@build_list.priority = current_user.build_priority # User builds more priority than mass rebuild with zero priority
|
2012-10-10 17:19:00 +01:00
|
|
|
|
2013-01-30 16:23:50 +00:00
|
|
|
create_subject @build_list
|
2012-07-31 08:35:27 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def cancel
|
2012-08-08 20:16:27 +01:00
|
|
|
render_json :cancel
|
2012-07-31 08:35:27 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def publish
|
2013-03-28 11:58:26 +00:00
|
|
|
@build_list.publisher = current_user
|
2012-08-08 20:16:27 +01:00
|
|
|
render_json :publish
|
2012-07-31 08:35:27 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def reject_publish
|
2013-05-30 11:41:09 +01:00
|
|
|
@build_list.publisher = current_user
|
2012-08-08 20:16:27 +01:00
|
|
|
render_json :reject_publish
|
|
|
|
end
|
|
|
|
|
2013-01-30 16:23:50 +00:00
|
|
|
def create_container
|
2013-01-30 20:51:05 +00:00
|
|
|
render_json :create_container, :publish_container
|
2013-01-30 16:23:50 +00:00
|
|
|
end
|
|
|
|
|
2013-11-18 17:48:38 +00:00
|
|
|
def publish_into_testing
|
|
|
|
@build_list.publisher = current_user
|
|
|
|
render_json :publish_into_testing
|
|
|
|
end
|
|
|
|
|
2012-08-08 20:16:27 +01:00
|
|
|
private
|
|
|
|
|
2013-01-30 20:51:05 +00:00
|
|
|
def render_json(action_name, action_method = nil)
|
|
|
|
if @build_list.try("can_#{action_name}?") && @build_list.send(action_method || action_name)
|
2013-01-30 16:23:50 +00:00
|
|
|
render_json_response @build_list, t("layout.build_lists.#{action_name}_success")
|
|
|
|
else
|
|
|
|
render_validation_error @build_list, t("layout.build_lists.#{action_name}_fail")
|
|
|
|
end
|
2012-11-28 14:52:11 +00:00
|
|
|
end
|
2012-07-31 08:35:27 +01:00
|
|
|
end
|