solidus_mp 0.3.7 → 1.0.0

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: 337fc7106db6c102a4c8dbae9d6d57c58ff8e7ff3ea3a45874f0239ece25405d
4
- data.tar.gz: f7a9733e4ab7f42a94eeb6202bafde5601c1075061582f4eb5e1dc0b48d9a174
3
+ metadata.gz: 317ace149d7d821b01bf295b4883a8b51966a77b9bd58f39607abeff96c6602a
4
+ data.tar.gz: d9f670db89f5bd072dab697a37cb3b15446966b93dd71762bffd5c4c35fb76ce
5
5
  SHA512:
6
- metadata.gz: 2d1f979eee81e4aebb2d0cb3662068905d246a90fef950a055951e01cf99402b9a4bd586d70a1c7c247b8e0db45cfcbd02ac643b88e5fd9b6eb8148103798e46
7
- data.tar.gz: ba3e5a0a1b0c052f800730f297903fa70b2ecfdf67a01eef18c89ba228413f9cce86cde828bd3df6c11a762b6e6b18f7c5b0c5e80232ab5d4ef78d6bd830e091
6
+ metadata.gz: 8f9d7f20d1db7a1e432aa91cfe54328d9f8a8f0aa01ba907fa9cd92b0dcd0bbe493a9944d1cdefa9b910b660f29a680c8ef758032deaa1048da0acd580ea9d1f
7
+ data.tar.gz: 808b7b32bd0f4776180af0f6bcd1124a14879b39947d73dfd493ceb796066a6351b59874ceac72abd0a39d7a62b26082053ff5e90bb2a0670c9700157cc7ad8d
@@ -13,13 +13,18 @@ module SolidusMp
13
13
  "MpCard"
14
14
  end
15
15
 
16
+ # Pra nao dar problema de pagamento pendente
17
+ def auto_capture?
18
+ true
19
+ end
20
+
16
21
  def supports?(source)
17
22
  source.is_a?(payment_source_class)
18
23
  end
19
24
 
20
25
  def create_card_payment payment
21
26
  mp_payment = create_mp_payment(payment)
22
- 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)
27
+ 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, last_four_digits: mp_payment.last_four_digits)
23
28
  if mp_payment.error || mp_payment.internal_error
24
29
  payment.invalidate
25
30
  error_message = "#{mp_payment.error || mp_payment.internal_error} (#{mp_payment.status_detail})"
@@ -27,7 +32,6 @@ module SolidusMp
27
32
  payment.log_entries.create!(parsed_payment_response_details_with_fallback: response)
28
33
  payment.source.update(error_message: mp_payment.error || "Ocorreu um erro ao criar o pagamento.", status: "error")
29
34
  elsif mp_payment.status == "approved"
30
- payment.complete
31
35
  payment.source.update(status: "success")
32
36
  elsif mp_payment.status == "pending"
33
37
  payment.source.update(status: "pending")
@@ -85,4 +89,4 @@ module SolidusMp
85
89
  end
86
90
 
87
91
  end
88
- end
92
+ end
@@ -0,0 +1,5 @@
1
+ class AddLastFourDigitsToCreditCardSource < ActiveRecord::Migration[7.0]
2
+ def change
3
+ add_column :solidus_mp_card_payment_sources, :last_four_digits, :string
4
+ end
5
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SolidusMp
4
- VERSION = '0.3.7'
4
+ VERSION = '1.0.0'
5
5
  end
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.3.7
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - caio
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-04-02 00:00:00.000000000 Z
11
+ date: 2024-05-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: solidus_core
@@ -115,6 +115,7 @@ files:
115
115
  - db/migrate/20231221141935_add_items_to_mp_card.rb
116
116
  - db/migrate/20240105143500_add_status_to_payment_source.rb
117
117
  - db/migrate/20240109171955_add_error_message_to_payment_source.rb
118
+ - db/migrate/20240510185743_add_last_four_digits_to_credit_card_source.rb
118
119
  - lib/generators/solidus_mp/install/install_generator.rb
119
120
  - lib/generators/solidus_mp/install/templates/app/javascript/controllers/credit_card_controller.js
120
121
  - lib/generators/solidus_mp/install/templates/app/javascript/controllers/three_ds_controller.js
@@ -157,7 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
157
158
  - !ruby/object:Gem::Version
158
159
  version: '0'
159
160
  requirements: []
160
- rubygems_version: 3.5.3
161
+ rubygems_version: 3.5.10
161
162
  signing_key:
162
163
  specification_version: 4
163
164
  summary: ''