canvas-lms/lib/ssl_common.rb

64 lines
2.1 KiB
Ruby

# frozen_string_literal: true
#
# Copyright (C) 2011 - present Instructure, Inc.
#
# This file is part of Canvas.
#
# Canvas is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the Free
# Software Foundation, version 3 of the License.
#
# Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
# details.
#
# You should have received a copy of the GNU Affero General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
#
class SSLCommon
SSL_CA_PATH = "/etc/ssl/certs/"
class << self
def get_http_conn(host, port, ssl)
http = Net::HTTP.new(host, port)
http.use_ssl = true if ssl
if File.directory? SSL_CA_PATH
http.ca_path = SSL_CA_PATH
http.verify_mode = OpenSSL::SSL::VERIFY_PEER
end
http
end
def raw_post(url, payload, headers = {}, form_data = nil)
url = URI.parse(url)
http = get_http_conn(url.host, url.port, url.scheme.casecmp?("https"))
req = Net::HTTP::Post.new(url.request_uri, headers)
req.basic_auth URI::DEFAULT_PARSER.unescape(url.user || ""), URI::DEFAULT_PARSER.unescape(url.password || "") if url.user
req.form_data = form_data if form_data
http.start { |conn| conn.request(req, payload) }
end
def get(url, headers = {})
url = URI.parse(url)
http = get_http_conn(url.host, url.port, url.scheme.casecmp?("https"))
http.get(url.request_uri, headers)
end
def post_form(url, form_data, headers = {})
raw_post(url, nil, headers, form_data)
end
def post_multipart_form(url, form_data, headers = {}, field_priority = [])
payload, mp_headers = LegacyMultipart::Post.prepare_query(form_data, field_priority)
raw_post(url, payload, mp_headers.merge(headers))
end
def post_data(url, data, content_type, headers = {})
raw_post(url, data, { "Content-Type" => content_type }.merge(headers))
end
end
end