solidus_mp 0.2.2 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 74ec75fa7d047fc008dd680e7471a4f547ddb9ba8ffc9a1aae76ce0feee57bae
|
4
|
+
data.tar.gz: 541d4d05bad0221c59a84c2ce02af4fa226d5c3c9783abe003873cf45494271d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab8837d46c3276df7089f3c898954e4dbaaedb9391c0e51223430dea4405a79d69505aa0e3acf761e54f5fcbe0dba3816be69f80bb28a7e59a23b757c1251d30
|
7
|
+
data.tar.gz: f8a947de786eae4233c255e3a6369dd5ac18d854c8e47be61dc4ae71ab35aeb14739615d4b0b8db51b2ad11ca30046acf583fcfb70b75e06d21221ce955b26ef
|
@@ -17,7 +17,22 @@ module SolidusMp
|
|
17
17
|
source.is_a?(payment_source_class)
|
18
18
|
end
|
19
19
|
|
20
|
-
def
|
20
|
+
def create_pix_payment payment
|
21
|
+
mp_payment = create_mp_payment(payment)
|
22
|
+
if mp_payment.errors
|
23
|
+
payment.invalidate
|
24
|
+
error_message = mp_payment.errors&.first || mp_payment.status_detail
|
25
|
+
response = failure_response(error_message)
|
26
|
+
payment.log_entries.create!(parsed_payment_response_details_with_fallback: response)
|
27
|
+
payment.source.update(error_message: error_message, status: mp_payment.status)
|
28
|
+
"error"
|
29
|
+
elsif mp_payment.status == "pending"
|
30
|
+
payment.source.update(external_id: mp_payment.id, qr_code: mp_payment.qr_code, qr_code_base64: mp_payment.qr_code_base_64, ticket_url: mp_payment.ticket_url, status: mp_payment.status)
|
31
|
+
"pending"
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
def create_mp_payment payment
|
21
36
|
MpApi.configuration.access_token = preferences[:access_token]
|
22
37
|
MpApi::Payment.new(payer_email: payment.source.email, payer_identification_type: "CPF", payment_method: "pix", payer_identification_number: payment.source.tax_id, amount: payment.amount.to_f, statement_descriptor: payment.source.statement_descriptor, description: payment.source.description, items: payment.source.items).create
|
23
38
|
end
|
data/lib/solidus_mp/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: solidus_mp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- caio
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-01-
|
11
|
+
date: 2024-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: solidus_core
|
@@ -114,6 +114,7 @@ files:
|
|
114
114
|
- db/migrate/20231221130457_add_items_to_mp_pix.rb
|
115
115
|
- db/migrate/20231221141935_add_items_to_mp_card.rb
|
116
116
|
- db/migrate/20240105143500_add_status_to_payment_source.rb
|
117
|
+
- db/migrate/20240109171955_add_error_message_to_payment_source.rb
|
117
118
|
- lib/generators/solidus_mp/install/install_generator.rb
|
118
119
|
- lib/generators/solidus_mp/install/templates/app/javascript/controllers/credit_card_controller.js
|
119
120
|
- lib/generators/solidus_mp/install/templates/app/javascript/controllers/three_ds_controller.js
|
@@ -156,7 +157,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
156
157
|
- !ruby/object:Gem::Version
|
157
158
|
version: '0'
|
158
159
|
requirements: []
|
159
|
-
rubygems_version: 3.4.
|
160
|
+
rubygems_version: 3.4.19
|
160
161
|
signing_key:
|
161
162
|
specification_version: 4
|
162
163
|
summary: ''
|