socialforge/app/controllers/quality_analysis_controller.rb

100 lines
4.4 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-06-21 16:46:34 +08:00
before_filter :authorize
2016-06-27 18:13:46 +08:00
before_filter :connect_jenkins, :only => [:create]
2016-06-17 11:29:49 +08:00
layout "base_projects"
include ApplicationHelper
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
def create
2016-06-20 16:21:37 +08:00
user_name = User.find(params[:user_id]).try(:login)
2016-06-21 16:46:34 +08:00
identifier = params[:identifier]
2016-06-27 18:13:46 +08:00
job_name = "#{user_name}:#{identifier}"
# Checks if the given job exists in Jenkins.
unless @client.job.exists?(job_name)
@g = Gitlab.client
branch = params[:branch].blank? ? "master" : params[:branch]
language = params[:language]
path = params[:path]
qa = QualityAnalysis.where(:project_id => @project.id).first
version = qa.nil? ? 1 : qa.sonar_version + 1
properties = "sonar.projectKey=#{user_name}:#{identifier}
2016-06-21 16:46:34 +08:00
sonar.projectName=#{user_name}:#{identifier}
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-27 18:13:46 +08:00
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
@client.job.create("#{user_name}_#{identifier}", @doc.to_xml)
# relace gitlab hook
@g.add_project_hook(@project.gpid, @jenkins_address + "/project/#{user_name}_#{identifier}")
# build job
opts = {'build_start_timeout' => 30, 'cancel_on_build_start_timeout' => true}
code = @client.job.build("#{user_name}_#{identifier}", opts)
# sucessed will return "201"
raise "Unable to build job: #{user_name}_#{identifier}" unless code == '201'
if qa.blank? && code == '201'
QualityAnalysis.create(:project_id => @project.id, :author_login => user_name, :rep_identifier => identifier,
:sonar_version => version, :path => path, :branch => branch, :language => language, :sonar_name => job_name)
else
qa.update_attribute(:sonar_version, version)
end
2016-06-22 17:09:54 +08:00
end
end
2016-06-17 11:29:49 +08:00
def index
2016-06-24 12:38:39 +08:00
@sonar_address = Redmine::Configuration['sonar_address']
2016-06-27 18:13:46 +08:00
projects_date = open(@sonar_address + "/api/projects/index").read
arr = JSON.parse(projects_date).map {|m| m["nm"]} # ["Hjqreturn:cc_rep", "Hjqreturn:putong", "Hjqreturn:sonar_rep2", "shitou:sonar_rep"]
if params[:resource_id].nil?
@quality_analyses = QualityAnalysis.where("sonar_name in #{arr}")
else
qa = QualityAnalysis.where(:project_id => @project.id).first
@resource_id = qa.author_login+":"+qa.rep_identifier
@name_flag = false
complexity_date = open(@sonar_address + "/api/resources/index?resource=#{@resource_id}&depth=0&metrics=sqale_rating,function_complexity,duplicated_lines_density,comment_lines_density,sqale_index,lines,file_line,files,functions,classes,directories").read
@complexity =JSON.parse(complexity_date).first
# issue_date = open(@sonar_address + "/api/resources/index?resource=#{@resource_id}&depth=0&metrics=blocker_violations,critical_violations,major_violations,minor_violations,info_violations,violations").read
# @sonar_issues = JSON.parse(issue_date).first
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
# 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']
# connect jenkins
@client = JenkinsApi::Client.new(:server_url => @jenkins_address, :username => "temp", :password => '123123')
rescue
logger.error("failed to connect Jenkins")
end
2016-06-17 11:29:49 +08:00
end