76 lines
2.7 KiB
Ruby
76 lines
2.7 KiB
Ruby
class Api::V1::Projects::Actions::ActionsController < Api::V1::Projects::Actions::BaseController
|
|
|
|
def new_index
|
|
@files = $gitea_client.get_repos_contents_by_owner_repo_filepath(@project&.owner&.login, @project&.identifier, ".gitea/workflows")
|
|
@action_runs = Gitea::ActionRun.where(repo_id: @project.gpid)
|
|
@action_runs = @action_runs.where(id: params[:ids].split(",")) if params[:ids].present?
|
|
@action_runs = @action_runs.where(workflow_id: params[:workflow_ids].split(",")) if params[:workflow_ids].present?
|
|
group_data = @action_runs.group(:workflow_id, :status).count
|
|
@result = []
|
|
@files.map{|i|i['name']}.each do |file|
|
|
last_action_run = @action_runs.where(workflow_id: file).order(updated: :desc).first
|
|
last_action_run_json = last_action_run.present? ? {
|
|
id: last_action_run.id,
|
|
schedule: last_action_run.schedule_id > 0,
|
|
title: last_action_run.title,
|
|
index: last_action_run.index,
|
|
status: last_action_run.status,
|
|
started: last_action_run.started,
|
|
stopped: last_action_run.stopped,
|
|
length: last_action_run.stopped-last_action_run.started,
|
|
created: last_action_run.created,
|
|
updated: last_action_run.updated,
|
|
} : {}
|
|
|
|
total = 0
|
|
success = 0
|
|
failure = 0
|
|
group_data.each do |k,v|
|
|
total += v if k[0] == file
|
|
success += v if k[0] == file && k[1] == 1
|
|
failure += v if k[0] == file && k[1] == 1
|
|
end
|
|
|
|
@result << {
|
|
name: file,
|
|
last_action_run: last_action_run_json,
|
|
history: {
|
|
total: total,
|
|
success: success,
|
|
failure: failure,
|
|
}
|
|
}
|
|
end
|
|
|
|
render :json => @result
|
|
end
|
|
|
|
def index
|
|
begin
|
|
gitea_result = $gitea_hat_client.get_repos_actions_by_owner_repo(@project&.owner&.login, @project&.identifier)
|
|
@data = gitea_result[:data]["Workflows"]
|
|
rescue
|
|
@data = []
|
|
end
|
|
end
|
|
|
|
def disable
|
|
return render_error("请输入正确的流水线文件!") if params[:workflow].blank?
|
|
gitea_result = $gitea_hat_client.post_repos_actions_disable(@project&.owner&.login, @project&.identifier, {query: {workflow: params[:workflow]}}) rescue nil
|
|
if gitea_result
|
|
render_ok
|
|
else
|
|
render_error("禁用流水线失败")
|
|
end
|
|
end
|
|
|
|
def enable
|
|
return render_error("请输入正确的流水线文件!") if params[:workflow].blank?
|
|
gitea_result = $gitea_hat_client.post_repos_actions_enable(@project&.owner&.login, @project&.identifier, {query: {workflow: params[:workflow]}}) rescue nil
|
|
if gitea_result
|
|
render_ok
|
|
else
|
|
render_error("取消禁用流水线失败")
|
|
end
|
|
end
|
|
end |