solidus_mp 0.2.0 → 0.2.1
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 +4 -4
- data/README.md +0 -8
- data/app/models/solidus_mp/mp_card.rb +2 -14
- data/app/models/solidus_mp/mp_pix.rb +2 -9
- data/lib/solidus_mp/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98de92d2e207f5ff621a944cb8f4d361228293c85bf3ce399168b0a24f8128ef
|
4
|
+
data.tar.gz: 9f6f5b90d2e06ece8de659e16cd750781dd0cfcbac76c1b87eafb3ea4d5c88b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d0263a2f4408e083a27837083cda99f562843b2dcb564856e93c6d16019a19010d9b5ebf49e6c2a6d67395f2611c96c631178e81b011a1ca975277167539ce0
|
7
|
+
data.tar.gz: 8d16891d5d19bb303429fc5a25f31a18f884d04b14c5528a864e51bb93cc0f047a66f17a41cc96a02197caf1bb3e3eea677a508a4596a928253aa1a1a0280ea7
|
data/README.md
CHANGED
@@ -1,10 +1,5 @@
|
|
1
1
|
# Solidus Bling
|
2
2
|
|
3
|
-
[](https://circleci.com/gh/solidusio-contrib/solidus_bling)
|
4
|
-
[](https://codecov.io/gh/solidusio-contrib/solidus_bling)
|
5
|
-
|
6
|
-
<!-- Explain what your extension does. -->
|
7
|
-
|
8
3
|
## Installation
|
9
4
|
|
10
5
|
Add solidus_bling to your Gemfile:
|
@@ -22,9 +17,6 @@ bin/rails generate solidus_mp:install
|
|
22
17
|
```shell
|
23
18
|
bin/rails assets:precompile
|
24
19
|
```
|
25
|
-
|
26
|
-
## Usage
|
27
|
-
|
28
20
|
## License
|
29
21
|
|
30
22
|
Copyright (c) 2023 ulysses-bull, released under the New BSD License.
|
@@ -18,20 +18,8 @@ module SolidusMp
|
|
18
18
|
end
|
19
19
|
|
20
20
|
def create_api_payment payment
|
21
|
-
|
22
|
-
|
23
|
-
mp_payment = MpApi::Payment.new(amount: payment.amount.to_f, payment_method: payment.source.credit_card_brand, payer_email: payment.source.email, payer_identification_type: payment.source.payer_identification_type, payer_identification_number: payment.source.tax_id, token: payment.source.token, issuer_id: payment.source.issuer_id, installments: payment.source.installments, three_d_secure_mode: true, statement_descriptor: payment.source.statement_descriptor, description: payment.source.description, items: payment.source.items).create
|
24
|
-
payment.source.update(external_id: mp_payment.id, three_ds_url: mp_payment.three_ds_info_external_resource_url, three_ds_creq: mp_payment.three_ds_info_creq)
|
25
|
-
if mp_payment.status == "approved"
|
26
|
-
payment.complete
|
27
|
-
elsif mp_payment.status == "rejected"
|
28
|
-
payment.invalidate
|
29
|
-
end
|
30
|
-
rescue MpApi::TooManyRequestsError
|
31
|
-
payment.invalidate
|
32
|
-
rescue MpApi::RequestError
|
33
|
-
payment.invalidate
|
34
|
-
end
|
21
|
+
MpApi.configuration.access_token = preferences[:access_token]
|
22
|
+
MpApi::Payment.new(amount: payment.amount.to_f, payment_method: payment.source.credit_card_brand, payer_email: payment.source.email, payer_identification_type: payment.source.payer_identification_type, payer_identification_number: payment.source.tax_id, token: payment.source.token, issuer_id: payment.source.issuer_id, installments: payment.source.installments, three_d_secure_mode: true, statement_descriptor: payment.source.statement_descriptor, description: payment.source.description, items: payment.source.items).create
|
35
23
|
end
|
36
24
|
|
37
25
|
def authorize(money, source, options = {})
|
@@ -18,15 +18,8 @@ module SolidusMp
|
|
18
18
|
end
|
19
19
|
|
20
20
|
def create_api_payment payment
|
21
|
-
|
22
|
-
|
23
|
-
mp_payment = 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
|
24
|
-
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)
|
25
|
-
rescue MpApi::TooManyRequestsError
|
26
|
-
payment.invalidate
|
27
|
-
rescue MpApi::RequestError
|
28
|
-
payment.invalidate
|
29
|
-
end
|
21
|
+
MpApi.configuration.access_token = preferences[:access_token]
|
22
|
+
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
|
30
23
|
end
|
31
24
|
|
32
25
|
def authorize(money, source, options = {})
|
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.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- caio
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: solidus_core
|