socialforge/app/controllers/quality_analysis_controller.rb

272 lines
11 KiB
Ruby
Raw Normal View History

2016-06-21 16:50:45 +08:00
class QualityAnalysisController < ApplicationController
2016-06-17 11:29:49 +08:00
before_filter :find_project_by_project_id#, :except => [:getattachtype]
2016-07-01 09:31:05 +08:00
before_filter :find_quality_analysis, :only => [:edit, :update_jenkins_job]
2016-06-21 16:46:34 +08:00
before_filter :authorize
2016-07-01 17:50:08 +08:00
before_filter :connect_jenkins, :only => [:create, :edit, :update_jenkins_job, :index]
2016-06-17 11:29:49 +08:00
layout "base_projects"
include ApplicationHelper
2016-07-01 14:39:40 +08:00
include QualityAnalysisHelper
require 'jenkins_api_client'
require 'nokogiri'
2016-06-21 16:46:34 +08:00
require 'json'
require 'open-uri'
2016-06-22 17:09:54 +08:00
def show
end
2016-07-01 14:39:40 +08:00
# params 说明:{identifier版本库名}
def create
2016-06-28 09:45:45 +08:00
begin
user_name = User.find(params[:user_id]).try(:login)
identifier = params[:identifier]
2016-06-28 14:48:09 +08:00
rep_id = params[:rep_id]
2016-07-01 14:39:40 +08:00
# job_name and sonar_name 前者为job名字后者为jenkins配置名
2016-06-28 14:48:09 +08:00
job_name = "#{user_name}-#{rep_id}"
2016-06-28 17:18:50 +08:00
sonar_name = "#{user_name}:#{rep_id}"
2016-06-28 09:45:45 +08:00
2016-07-08 11:27:03 +08:00
# 考虑到历史数据有些用户创建类job但是build失败,即sonar没有结果这个时候需要把job删除,并且删掉quality_analyses表数据
# 如果不要这句则需要迁移数据
@sonar_address = Redmine::Configuration['sonar_address']
projects_date = open(@sonar_address + "/api/projects/index").read
arr = JSON.parse(projects_date).map {|m| m["nm"]} # eg: ["Hjqreturn:cc_rep", "Hjqreturn:putong", "Hjqreturn:sonar_rep2", "shitou:sonar_rep"]
quality_an = QualityAnalysis.where(:sonar_name => sonar_name).first
if @client.job.exists?(job_name) && QualityAnalysis.where(:sonar_name => sonar_name).select{|qa| arr.include?(qa.sonar_name)}.blank?
logger.info("88888888888888888888")
aa = @client.job.delete("#{job_name}")
quality_an.delete unless quality_an.blank?
end
2016-06-28 09:45:45 +08:00
# Checks if the given job exists in Jenkins.
unless @client.job.exists?(job_name)
@g = Gitlab.client
2016-06-28 14:48:09 +08:00
branch = params[:branch]
2016-06-29 09:59:21 +08:00
language = swith_language_type(params[:language])
2016-06-29 09:10:47 +08:00
path = params[:path].blank? ? "./" : params[:path]
2016-07-08 11:27:03 +08:00
# qa = QualityAnalysis.where(:project_id => @project.id, :author_login => user_name).first
version = quality_an.nil? ? 1 : quality_an.sonar_version + 1
2016-06-28 17:18:50 +08:00
properties = "sonar.projectKey=#{sonar_name}
sonar.projectName=#{sonar_name}
2016-06-22 17:09:54 +08:00
sonar.projectVersion=#{version}
sonar.sources=#{path}
2016-06-21 16:46:34 +08:00
sonar.language=#{language.downcase}
sonar.sourceEncoding=utf-8"
2016-06-28 09:45:45 +08:00
git_url = @gitlab_address.to_s+"/"+@project.owner.to_s+"/"+ identifier + "."+"git"
2016-07-01 14:39:40 +08:00
# 替换配置文件
2016-06-28 09:45:45 +08:00
@doc = Nokogiri::XML(File.open(File.join(Rails.root, 'tmp', 'config.xml')))
@doc.at_xpath("//hudson.plugins.git.UserRemoteConfig/url").content = git_url
@doc.at_xpath("//hudson.plugins.git.BranchSpec/name").content = "*/#{branch}"
@doc.at_xpath("//hudson.plugins.sonar.SonarRunnerBuilder/properties").content = properties # sonar-properties
2016-07-01 14:39:40 +08:00
# jenkins job创建
2016-06-28 14:48:09 +08:00
jenkins_job = @client.job.create("#{job_name}", @doc.to_xml)
2016-07-01 14:39:40 +08:00
logger.info("Jenkins status of create ==> #{jenkins_job}")
2016-06-28 09:45:45 +08:00
2016-07-01 14:39:40 +08:00
# 将地址作为hook值添加到gitlab
2016-06-28 14:48:09 +08:00
@g.add_project_hook(@project.gpid, @jenkins_address + "/project/#{job_name}")
2016-07-01 14:39:40 +08:00
# job创建完成后自动运行job,如果运行成功则返回200
2016-06-28 14:48:09 +08:00
code = @client.job.build("#{job_name}")
logger.error("build result ==> #{code}")
2016-07-01 14:39:40 +08:00
# 判断调用sonar分析是否成功
# 等待启动时间处理, 最长时间为30分钟
for i in 0..60 do
2016-07-07 11:08:29 +08:00
sleep(30)
2016-07-01 14:39:40 +08:00
@current_build_status = @client.job.get_current_build_status("#{job_name}")
2016-07-08 14:22:20 +08:00
if (@current_build_status == "success" || @current_build_status == "failure")
2016-07-01 14:39:40 +08:00
break
if i == 60
@build_console_result = false
break
end
end
end
2016-07-08 20:35:21 +08:00
# sonar 缓冲,取数据
sleep(5)
2016-07-07 14:22:48 +08:00
# 获取sonar output结果
2016-07-08 11:27:03 +08:00
console_build = @client.job.get_console_output("#{job_name}", build_num = 0, start = 0, mode = 'text')["output"]
2016-07-01 14:39:40 +08:00
logger.info("@current_build_status is ==> #{@current_build_status}")
2016-07-07 14:22:48 +08:00
# 两种情况需要删除job
# 1/创建成功但是build失败则删除job
# 2/creat和build成功调用sonar启动失败则删除job
# 错误信息存储需存到Trustie数据库否则一旦job删除则无法获取这些信息
if jenkins_job == '200' && code != '201'
@client.job.delete("#{job_name}")
2016-06-28 09:45:45 +08:00
else
2016-07-07 14:22:48 +08:00
if @current_build_status == "failure"
2016-07-08 11:27:03 +08:00
reg_console = /Exception:.*?\r/.match(console_build)
output = reg_console[0].gsub("\r", "") unless reg_console.nil?
se = SonarError.where(:jenkins_job_name => job_name).first
se.nil? ? SonarError.create(:project_id => @project.id, :jenkins_job_name => job_name, :output => output) : se.update_column(:output, output)
2016-07-07 14:22:48 +08:00
@client.job.delete("#{job_name}")
elsif @current_build_status == "success"
2016-07-08 11:27:03 +08:00
if quality_an.blank?
2016-07-07 14:22:48 +08:00
QualityAnalysis.create(:project_id => @project.id, :author_login => user_name, :rep_identifier => identifier,
:sonar_version => version, :path => path, :branch => branch, :language => language, :sonar_name => "#{user_name}:#{rep_id}")
else
qa.update_attribute(:sonar_version, version)
end
end
2016-06-28 09:45:45 +08:00
end
2016-06-27 18:13:46 +08:00
end
2016-06-28 09:45:45 +08:00
rescue => e
puts e
2016-06-22 17:09:54 +08:00
end
2016-07-01 14:39:40 +08:00
respond_to do |format|
2016-07-07 11:08:29 +08:00
if @current_build_status == "success"
format.html{redirect_to project_quality_analysis_path(:project_id => @project.id, :resource_id => sonar_name, :branch => branch, :current_build_status => @current_build_status, :job_name => job_name)}
elsif @current_build_status == "failure"
2016-07-07 14:22:48 +08:00
format.html{redirect_to error_list_project_quality_analysi_path(:project_id => @project.id, :job_name => job_name)}
2016-07-07 11:08:29 +08:00
end
2016-07-01 14:39:40 +08:00
end
end
2016-06-17 11:29:49 +08:00
2016-07-07 14:22:48 +08:00
def error_list
@error_list = SonarError.where(:jenkins_job_name => params[:job_name]).first
respond_to do |format|
format.html
end
end
2016-06-29 09:59:21 +08:00
# get language type
def swith_language_type language
2016-06-29 11:10:19 +08:00
if language == "c#"
2016-06-29 09:59:21 +08:00
"cs"
2016-06-29 11:10:19 +08:00
elsif language == "python"
2016-06-29 09:59:21 +08:00
"py"
2016-06-29 11:10:19 +08:00
elsif language == "c"
2016-06-29 09:59:21 +08:00
"c++"
else
language
end
end
2016-06-30 10:17:53 +08:00
def edit
2016-07-01 09:31:05 +08:00
@g = Gitlab.client
gitlab_branches = @g.branches(@project.gpid)
@branch_names = gitlab_branches.map{|b| b.name}
@gitlab_default_branch = @g.project(@project.gpid).default_branch
2016-06-30 10:17:53 +08:00
end
2016-07-01 14:39:40 +08:00
# 更新Jenkins job主要包括相关配置文件参数的更新Trustie平台数据的更新
2016-07-01 09:31:05 +08:00
def update_jenkins_job
begin
rep_id = Repository.where(:project_id => @project.id).first.try(:id)
logger.error("#############################===>666")
sonar_name = @quality_analysis.sonar_name
job_name = "#{@quality_analysis.author_login}-#{rep_id}"
version = @quality_analysis.sonar_version
path = params[:path].blank? ? "./" : params[:path]
language = swith_language_type(params[:language])
branch = params[:branch]
identifier = @quality_analysis.rep_identifier
properties = "sonar.projectKey=#{sonar_name}
sonar.projectName=#{sonar_name}
sonar.projectVersion=#{version}
sonar.sources=#{path}
sonar.language=#{language.downcase}
sonar.sourceEncoding=utf-8"
git_url = @gitlab_address.to_s+"/"+@project.owner.to_s+"/"+ identifier + "."+"git"
# modify config.yml
@doc = Nokogiri::XML(File.open(File.join(Rails.root, 'tmp', 'config.xml')))
@doc.at_xpath("//hudson.plugins.git.UserRemoteConfig/url").content = git_url
@doc.at_xpath("//hudson.plugins.git.BranchSpec/name").content = "*/#{branch}"
@doc.at_xpath("//hudson.plugins.sonar.SonarRunnerBuilder/properties").content = properties # sonar-properties
2016-07-01 14:39:40 +08:00
# update成功则返回 200
2016-07-01 09:31:05 +08:00
jenkins_job = @client.job.update("#{job_name}", @doc.to_xml)
2016-07-01 14:39:40 +08:00
get_current_build_status = @client.job.get_current_build_status("Hjqreturn-1280")
2016-07-01 09:31:05 +08:00
logger.error("Failed to update job: ==> #{jenkins_job}") unless jenkins_job == '200'
2016-07-01 14:39:40 +08:00
2016-07-07 11:08:29 +08:00
# 数据更新到Trustie数据
2016-07-01 09:31:05 +08:00
if jenkins_job == '200'
logger.info("quality_ananlysis will be updated: ==> #{jenkins_job}")
@quality_analysis.path = path
@quality_analysis.language = language
@quality_analysis.branch = branch
@quality_analysis.save
end
rescue Exception => e
logger.error("Update jenkins job: #{e}")
end
respond_to do |format|
format.html{redirect_to project_quality_analysis_path(:project_id => @project.id)}
format.js
end
2016-06-30 10:17:53 +08:00
end
2016-06-28 14:48:09 +08:00
# resource_id: login + @repository.id
2016-06-17 11:29:49 +08:00
def index
2016-06-28 14:48:09 +08:00
begin
2016-07-01 21:31:50 +08:00
@branch = params[:branch]
2016-06-28 14:48:09 +08:00
@resource_id = params[:resource_id]
@sonar_address = Redmine::Configuration['sonar_address']
if params[:resource_id].nil?
@name_flag = true
projects_date = open(@sonar_address + "/api/projects/index").read
arr = JSON.parse(projects_date).map {|m| m["nm"]} # eg: ["Hjqreturn:cc_rep", "Hjqreturn:putong", "Hjqreturn:sonar_rep2", "shitou:sonar_rep"]
2016-06-29 09:38:30 +08:00
@quality_analyses = QualityAnalysis.where(:project_id => @project.id).select{|qa| arr.include?(qa.sonar_name)}
2016-06-28 14:48:09 +08:00
else
2016-07-08 16:19:33 +08:00
filter = "sqale_rating,function_complexity,duplicated_lines_density,comment_lines_density,sqale_index,lines,files,functions,classes,directories,blocker_violations,critical_violations,major_violations,minor_violations,info_violations,violations"
2016-07-11 10:48:44 +08:00
# complexity_date = open(@sonar_address + "/api/resources/index?resource=#{@resource_id}&depth=0&metrics=#{filter}").read
complexity_date = open("http://sonar.trustie.net" + "/api/resources/index?resource=947&depth=0&metrics=#{filter}").read
2016-06-28 14:48:09 +08:00
@complexity =JSON.parse(complexity_date).first
2016-07-08 16:19:33 +08:00
# 按名称转换成hash键值对
@ha = {}
@complexity["msr"].each do |com|
key = com["key"]
if key == "sqale_index"
value = com["frmt_val"]
else
value = com["val"].to_i
end
@ha.store(key,value)
end
2016-06-28 14:48:09 +08:00
end
rescue => e
puts e
2016-06-27 18:13:46 +08:00
end
2016-06-17 11:29:49 +08:00
end
# Find project of id params[:project_id]
def find_project_by_project_id
@project = Project.find(params[:project_id])
rescue ActiveRecord::RecordNotFound
render_404
end
2016-06-21 16:46:34 +08:00
2016-07-01 09:31:05 +08:00
def find_quality_analysis
begin
@quality_analysis = QualityAnalysis.find(params[:id])
rescue
render_404
end
end
2016-06-21 16:46:34 +08:00
# Authorize the user for the requested action
def authorize(ctrl = params[:controller], action = params[:action], global = false)
unless @project.archived? && @project.gpid.nil?
true
else
render_403 :message => :notice_not_authorized_archived_project
end
end
2016-06-27 18:13:46 +08:00
def connect_jenkins
@gitlab_address = Redmine::Configuration['gitlab_address']
@jenkins_address = Redmine::Configuration['jenkins_address']
2016-06-28 09:45:45 +08:00
2016-06-27 18:13:46 +08:00
# connect jenkins
@client = JenkinsApi::Client.new(:server_url => @jenkins_address, :username => "temp", :password => '123123')
2016-06-28 09:45:45 +08:00
rescue => e
logger.error("failed to connect Jenkins ==> #{e}")
2016-06-27 18:13:46 +08:00
end
2016-06-17 11:29:49 +08:00
end