socialforge/app/controllers/quality_analysis_controller.rb

100 lines
4.1 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-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-24 16:18:17 +08:00
gitlab_address = Redmine::Configuration['gitlab_address']
jenkins_address = Redmine::Configuration['jenkins_address']
@client = JenkinsApi::Client.new(:server_url => jenkins_address,
2016-06-21 16:46:34 +08:00
:username => "temp",
:password => '123123')
#@client.exists?(job_name)
@g = Gitlab.client
2016-06-20 16:21:37 +08:00
user_name = User.find(params[:user_id]).try(:login)
branch = params[:branch].nil? ? "master" : params[:branch]
language = params[:language]
path = params[:path]
2016-06-21 16:46:34 +08:00
identifier = params[:identifier]
2016-06-24 14:59:17 +08:00
qa = QualityAnalysis.where(:project_id => @project.id, :author_login => user_name).first
version = qa.nil? ? 1 : qa.sonar_version + 1
2016-06-21 16:46:34 +08:00
properties = "sonar.projectKey=#{user_name}:#{identifier}
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-22 11:25:59 +08:00
git_url = gitlab_address.to_s+"/"+@project.owner.to_s+"/"+ identifier + "."+"git"
2016-06-21 16:46:34 +08:00
2016-06-22 11:25:59 +08:00
# # # modify config
@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}"
2016-06-21 16:46:34 +08:00
@doc.at_xpath("//hudson.plugins.sonar.SonarRunnerBuilder/properties").content = properties #sonar-properties
2016-06-22 11:25:59 +08:00
#
# replace config.xml of jenkins
2016-06-21 16:46:34 +08:00
@client = @client.job.create("#{user_name}_#{identifier}", @doc.to_xml)
# relace gitlab hook
# genkins address
2016-06-24 16:18:17 +08:00
@g.add_project_hook(@project.gpid, jenkins_address + "/project/#{user_name}_#{identifier}")
2016-06-22 17:09:54 +08:00
if qa.nil?
2016-06-24 14:59:17 +08:00
QualityAnalysis.create(:project_id => @project.id, :author_login => user_name, :rep_identifier => identifier, :sonar_version => version, :path => path, :branch => branch, :language => language)
2016-06-24 18:47:54 +08:00
2016-06-22 17:09:54 +08:00
else
2016-06-24 14:59:17 +08:00
qa.update_attribute(:sonar_version, version)
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-24 19:12:07 +08:00
# if params[:resource_id].nil?
# @name_flag = true
# @quality_analyses = QualityAnalysis.where(:project_id => @project.id)
# # @quality_analyses.map {|qa| qa.}
# # if @quality_analyses.count > 0
# # @quality_analyses.each do |qa|
# # ["Hjqreturn:cc_rep", "Hjqreturn:putong", "Hjqreturn:sonar_rep2", "shitou:sonar_rep"]
# #
# # end
# # end
# # projects_date = open(@sonar_address + "/api/projects/index").read
# # arr = JSON.parse(projects_date).map {|m| m["nm"]}
# # arr.map
# 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-17 11:29:49 +08:00
end