Browse Source

新增:开源健康度接口keyid

pull/347/head
yystopf 1 year ago
parent
commit
c5505dc4a2
2 changed files with 10 additions and 0 deletions
  1. +9
    -0
      app/controllers/api/v1/projects/oss_health_measuring_controller.rb
  2. +1
    -0
      config/routes/api.rb

+ 9
- 0
app/controllers/api/v1/projects/oss_health_measuring_controller.rb View File

@@ -10,6 +10,15 @@ class Api::V1::Projects::OssHealthMeasuringController < Api::V1::BaseController
render :json=> response.read_body
end

def keyid
url = URI("#{EduSetting.get("ohm_server_url")}/api/OSS_Health_Measuring/#{params[:owner]}/#{params[:repo]}/#{params[:key_id]}")

http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
response = http.request(request)
render :json=> response.read_body
end

def can_get
url = URI("#{EduSetting.get("ohm_server_url")}/api/OHM_can_get/#{params[:owner]}/#{params[:repo]}")



+ 1
- 0
config/routes/api.rb View File

@@ -134,6 +134,7 @@ defaults format: :json do
resources :oss_health_measuring, only: [:index] do
collection do
get :can_get
get :keyid
end
end
resources :portrait, only: [:index]


Loading…
Cancel
Save