Sha256: 4333cc584de24a5b082b38a3d684ae49b1fe9ce0e8f89d10e5ef38a6b328591c
Contents?: true
Size: 1.49 KB
Versions: 1
Compression:
Stored size: 1.49 KB
Contents
require "json" require "faraday" module REDCap class Client def initialize url: REDCap.url, token: REDCap.token @url = url @token = token end def records filter=nil study_ids = json_api_request(content: "record", fields: "study_id", filterLogic: filter) .map { |hash| hash["study_id"] } study_ids.in_groups_of(100, false).flat_map do |study_ids| json_api_request(content: "record", records: study_ids.join(",")) end end def metadata json_api_request(content: "metadata") end def file record_id, file_id response = base_request({ content: "file", action: "export", record: record_id, field: file_id, }) _, type, filename = *response.headers["content-type"].match(/\A(.+); name=\"(.+)\"\z/) File.new(response.body, type, filename) end File = Struct.new(:data, :type, :filename) private def json_api_request options response = base_request(options.reverse_merge({ format: "json", })) JSON.load(response.body) end def base_request options connection = Faraday.new(url: @url) connection.options.open_timeout = 300 connection.options.timeout = 300 response = connection.post nil, options.reverse_merge(token: @token) if error_message = response.body[/<error>(.+?)<\/error>/, 1] raise Error.new(error_message) end response end class Error < StandardError; end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
red_cap-0.6.0 | lib/red_cap/client.rb |