Sha256: a5da4fe1589ef19c4bdc3cadd16927a5e8928e9bc8ef07daec1ef12936bc2867
Contents?: true
Size: 1.3 KB
Versions: 4
Compression:
Stored size: 1.3 KB
Contents
# frozen_string_literal: true module PagSeguro class Authorizations include Restful PERMISSIONS = { checkouts: "CREATE_CHECKOUTS", notifications: "RECEIVE_TRANSACTION_NOTIFICATIONS", searches: "SEARCH_TRANSACTIONS", payments: "DIRECT_PAYMENT", refunds: "REFUND_TRANSACTIONS", cancels: "CANCEL_TRANSACTIONS", direct_pre_approval: "USE_DIRECT_PRE_APPROVAL", manage_pre_approvals: "MANAGE_PAYMENT_PRE_APPROVALS" } def create(params) body = build_request(params).to_xml response = post("/v2/authorizations/request", body, xml: :simple) response.authorization_request end def find_by_notification_code(code) response = get("/v2/authorizations/notifications/#{code}", nil, xml: :simple) response.authorization end def url(code) url_for :site, "/v2/authorization/request.jhtml", code: code end private def build_request(params) builder do authorizationRequest do redirectURL params[:redirect_url] permissions do params[:permissions].each do |aliased| code PERMISSIONS[aliased] end end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems