Module: Recurrente

Includes:
HTTParty
Defined in:
lib/recurrente.rb,
lib/recurrente/version.rb

Constant Summary collapse

VERSION =
"0.1.1"

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#authObject

Returns the value of attribute auth.



26
27
28
# File 'lib/recurrente.rb', line 26

def auth
  @auth
end

Class Method Details

.cancel_suscription(suscription_id) ⇒ Object

4.5 POST - Cancelar una Suscripción. Status CANCELLED



711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
# File 'lib/recurrente.rb', line 711

def self.cancel_suscription(suscription_id)
  handle_timeouts do
    response = delete("/subscriptions" + "/#{suscription_id}")
 
    case response.code 
      when 200..202
        puts response
        response.parsed_response["response"]["description"]
      when 404
        response.message
      when 500..600
        puts "OMG ERROR #{response.code}"
      else
        response
    end
  end
end

.create_card(customer_id, numero, exp_mes, exp_ano, tipo, nombre, documento, dir_linea1, dir_linea2, dir_linea3, departamento, ciudad, pais, codigo_postal, telefono) ⇒ Object

3.1 POST - Crear una Tarjeta de Credito a un Suscriptor



317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
# File 'lib/recurrente.rb', line 317

def self.create_card(customer_id, numero , exp_mes, exp_ano ,tipo, nombre, documento, dir_linea1, dir_linea2 , dir_linea3 , departamento, ciudad, pais, codigo_postal, telefono)
  # Recurrente.add_customer_card(cliente, "371449635398431","01", "2018","AMEX","Pablo Picasso","1020304050","Calle Falsa","123","Patio 1","Bogotá","Bogotá D.C.", "CO", "110221", "3103456789")

  #############################################################################################################
  # customer_id           Campo para la URL no va en la petición. Código de identificación del cliente.       #
  # numero                Número de la tarjeta Ej: "4242424242424242"                                         #
  # exp_mes               Mes de expiración - Mínimo 1 máximo 12. Ej: "01"                                    #
  # exp_ano               Año de expiración de la tarjeta. Ej: "2018"                                         #
  # tipo                  Franquicia de la tarjeta VISA, AMEX, DINERS, MASTERCARD. Ej: "VISA"                 #
  # nombre                Nombre del tarjeta habiente: Ej: "Pedrito Fernandez"                                #
  # documento             Documento de identificación. Ej: "1020304050"                                       #
  # dir_linea1            Línea 1 de dirección opcional de correspondencia. Ej: "Calle Falsa"                 #
  # dir_linea2            Línea 2 de dirección opcional de correspondencia. Ej: "123"                         #
  # dir_linea3            Línea 3 de dirección opcional de correspondencia. Ej: "Patio trasero"               #
  # departamento          Nombre de departamento. Ej: "Bogotá"                                                #
  # ciudad                Nombre de ciudad. Ej: "Bogotá D.C."                                                 #
  # pais                  Dos letras del país según el Código ISO 3166. Ej: "CO"                              #
  # codigo_postal         Código de la dirección                                                              #
  # telefono              Teléfono asociado con la dirección                                                  #
  #############################################################################################################  
  handle_timeouts do
    headers = {
      'Content-Type' => 'application/json; charset=UTF-8',
      'Accept' => "application/json",
      'Accept-language' => 'es', 
      'Authorization' => @auth
      }
    params = {
         "name": nombre,
         "document": documento,
         "number": numero,
         "expMonth": exp_mes,
         "expYear": exp_ano,
         "type": tipo,
         "address": {
            "line1": dir_linea1,
            "line2": dir_linea2,
            "line3": dir_linea3,
            "postalCode": codigo_postal,
            "city": ciudad,
            "state": departamento,
            "country": pais,
            "phone": telefono
         }
      }

    response = post('/customers' + "/#{customer_id}/creditCards", body: JSON.generate(params), headers: headers)
    case response.code 
      when 200
        response
      when 201
        puts JSON.pretty_generate(response.parsed_response)
        retrieve_credit_card response
      when 404
        response.message
      when 500..600
        puts "OMG ERROR #{response.code}"
      else
        response
    end
  end 
end

.create_charge(suscription_id, descripcion, valor, moneda, impuesto, base_impuesto) ⇒ Object

5.1 POST - Crear un cargo adicional



740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
# File 'lib/recurrente.rb', line 740

def self.create_charge(suscription_id, descripcion, valor, moneda, impuesto, base_impuesto )
  handle_timeouts do
    headers = {
      'Content-type' => 'application/json; charset=UTF-8',
      'Accept' => 'application/json',
      'Accept-language' => 'es', 
      'Authorization' => @auth
      }
    params = {
       "description": descripcion,
       "additionalValues": [
          {
             "name": "ITEM_VALUE",
             "value": valor,
             "currency": moneda
          },
          {
             "name": "ITEM_TAX",
             "value": impuesto,
             "currency": moneda
          },
          {
             "name": "ITEM_TAX_RETURN_BASE",
             "value": base_impuesto,
             "currency": moneda
          }
       ]
    }
    response = post("/subscriptions" + "/#{suscription_id}" + "/recurringBillItems", body: params.to_json, headers: headers)
    case response.code 
      when 200..202
        puts JSON.pretty_generate(response.parsed_response)
        retrieve_extra_charge response
      when 404
        response.message
      when 500..600
        puts "OMG ERROR #{response.code}"
      else
        response
    end
  end
end

.create_plan(codigo, descripcion, intervalo, cantidad_intervalos, moneda, valor, impuesto, base_impuesto, reintentos, dias_entre_reintentos, cobros, periodo_de_gracia) ⇒ Object

1.2 POST - Crear un nuevo Plan



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# File 'lib/recurrente.rb', line 57

def self.create_plan(codigo, descripcion, intervalo, cantidad_intervalos, moneda, valor, impuesto, base_impuesto, reintentos, dias_entre_reintentos, cobros,periodo_de_gracia)
    #######################################################################################################################
    # Recurrente.create_plan("Netflix-001", "Plan semanal", "WEEK", "1", "COP", "14000", "0", "0", "2", "2", "12", "2")   #
    # codigo                Es el nombre con el que se manipula el plan.                                                  #
    # descripcion           Es la descripción del Plan                                                                    #
    # intervalo             Es la frecuencia con la que se repite el cobro: DAY, WEEK, MONTH, YEAR.                       #
    # cantidad_intervalos   Es lo que define cada cuanto se realiza el cobro de la suscripción                            #  
    # moneda                Es el código para definir las divisas según el estándar internacional ISO 4217                #
    # valor                 Es el valor del plan                                                                          #
    # base_impuesto         Es el valor para calcular la devolución del impuesto                                          #
    # impuesto              Es el valor del impuesto                                                                      #
    # reintentos            Es la cantidad de intentos antes de ser rechazado el pago                                     #
    # cobros                Es la cantidad máxima de pagos que espera el plan                                             #
    # periodo de gracia     Es la cantidad máxima de pagos pendientes antes de cancelada                                  #
    # dias_entre_reintentos Es la cantidad de días de espera entre los reintentos.                                        #
    #######################################################################################################################  

  handle_timeouts do
    headers = {
        'Content-type' => 'application/json;charset=UTF-8',
        'Accept' => 'application/json',
        'Accept-language' => 'es', 
        'Authorization' => @auth 
        }
    params = {
       "accountId": ACCOUNT,
       "planCode": codigo,
       "description": descripcion,
       "interval": intervalo,
       "intervalCount": cantidad_intervalos ,
       "maxPaymentsAllowed": cobros,
       "paymentAttemptsDelay": dias_entre_reintentos,
       "maxPaymentAttempts": reintentos,
       "maxPendingPayments": periodo_de_gracia,
       "additionalValues": [
          {
             "name": "PLAN_VALUE",
             "value": valor,
             "currency": moneda
          },
          {
             "name": "PLAN_TAX",
             "value": impuesto,
             "currency": moneda
          },
          {
             "name": "PLAN_TAX_RETURN_BASE",
             "value": base_impuesto,
             "currency": moneda
          }
        ]
      }
    # Es necesario incluir los encabezados de otra forma lo identifica de otro typo distinto a json
    
    
    response = post("/plans", body: params.to_json, headers: headers)
    
    case response.code 
      when 200..202
        puts JSON.pretty_generate(response.parsed_response)
        retrieve_plan response
      when 404
        response.message
      when 500..600
        puts "OMG ERROR #{response.code}"
      else
        response
    end
  end # <-- Timeout Block
end

.create_suscription(params = {}) ⇒ Object

4.1.1 CON TODOS LOS ELEMENTOS NUEVOS



451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
# File 'lib/recurrente.rb', line 451

def self.create_suscription(params = {})
  handle_timeouts do
    
    headers = {
        'Content-type' => 'application/json;charset=UTF-8',
        'Accept' => 'application/json',
        'Accept-language' => 'es', 
        'Authorization' => @auth
        }
    response = post('/subscriptions', body: params.to_json, headers: headers) 
    case response.code 
        when 200..202
          puts response
          retrieve_suscription response
        when 404
          response.message
        when 500..600
          puts "OMG ERROR #{response.code}"
        else
          response
    end
  end   
end

.create_suscription_all_existent(customer_id, plan_code, token, quantity, installments, trial_days) ⇒ Object

4.1.2 CON TODOS LOS ELEMENTOS EXISTENTES



479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
# File 'lib/recurrente.rb', line 479

def self.create_suscription_all_existent(customer_id, plan_code, token, quantity, installments, trial_days)
  #Recurrente.add_new_suscription(cliente,plan,token,1,1,0)
  handle_timeouts do
    params = {
         "quantity": quantity,
         "installments": installments,
         "trialDays": trial_days,
         "customer": {
            "id": customer_id,
            "creditCards": [
               {
                  "token": token
               }
            ]
         },
         "plan": {
            "planCode": plan_code
         }
      }
    headers = {
        'Content-type' => 'application/json;charset=UTF-8',
        'Accept' => 'application/json',
        'Accept-language' => 'es', 
        'Authorization' => @auth
        }
    response = post('/subscriptions', body: params.to_json, headers: headers) 
    case response.code 
        when 200..202
          puts response
          retrieve_suscription response
        when 404
          response.message
          response
        when 500..600
          puts "OMG ERROR #{response.code}"
        else
          response
    end
  end
end

.create_suscription_alternative_1(customer_id, plan_code, quantity, installments, trial_days, numero, exp_mes, exp_ano, tipo, nombre, documento, dir_linea1, dir_linea2, dir_linea3, departamento, ciudad, pais, codigo_postal, telefono) ⇒ Object

4.1.3 PLAN Y SUSCRIPTOR YA CREADOS Y UNA TARJETA NUEVA



521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
# File 'lib/recurrente.rb', line 521

def self.create_suscription_alternative_1(customer_id, plan_code, quantity, installments, trial_days, numero , exp_mes, exp_ano ,tipo, nombre, documento, dir_linea1, dir_linea2 , dir_linea3 , departamento, ciudad, pais, codigo_postal, telefono )
  handle_timeouts do  
    params = {
       "quantity": quantity,
       "installments": installments,
       "trialDays": trial_days,
       "customer": {
          "id": customer_id,
          "creditCards": [
             {
               "name": nombre,
               "document": documento,
               "number": numero,
               "expMonth": exp_mes,
               "expYear": exp_ano,
               "type": tipo,
               "address": {
                  "line1": dir_linea1,
                  "line2": dir_linea2,
                  "line3": dir_linea3,
                  "postalCode": codigo_postal,
                  "city": ciudad,
                  "state": departamento,
                  "country": pais,
                  "phone": telefono
               }
            }
          ]
       },
       "plan": {
          "planCode": plan_code
       }
    }
    headers = {
        'Content-type' => 'application/json;charset=UTF-8',
        'Accept' => 'application/json',
        'Accept-language' => 'es', 
        'Authorization' => @auth
        }
    response = post('/subscriptions', body: params.to_json, headers: headers) 
    case response.code 
        when 200..202
          puts response
          retrieve_suscription response
        when 404
          response.message
        when 500..600
          puts "OMG ERROR #{response.code}"
        else
          response
    end
  end
end

.create_suscription_alternative_2(customer_id, plan_code, token, quantity, installments, trial_days, codigo, descripcion, intervalo, cantidad_intervalos, moneda, valor, impuesto, base_impuesto, reintentos, dias_entre_reintentos, cobros, periodo_de_gracia) ⇒ Object

4.1.4 CLIENTE Y TARJETA YA CREADOS, CON PLAN NUEVO



576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
# File 'lib/recurrente.rb', line 576

def self.create_suscription_alternative_2(customer_id, plan_code, token, quantity, installments, trial_days, codigo, descripcion, intervalo, cantidad_intervalos, moneda, valor, impuesto, base_impuesto, reintentos, dias_entre_reintentos, cobros,periodo_de_gracia)
  handle_timeouts do
    params = {
       "installments": installments,
       "trialDays": trial_days,
       "customer": {
          "id": customer_id,
          "creditCards": [
             {
                "token": token
             }
          ]
       },
       "plan": {
          "accountId": ACCOUNT,
          "planCode": codigo,
          "description": descripcion,
          "interval": intervalo,
          "intervalCount": cantidad_intervalos ,
          "maxPaymentsAllowed": cobros,
          "paymentAttemptsDelay": dias_entre_reintentos,
          "maxPaymentAttempts": reintentos,
          "maxPendingPayments": periodo_de_gracia,
          "additionalValues": [
            {
               "name": "PLAN_VALUE",
               "value": valor,
               "currency": moneda
            },
            {
               "name": "PLAN_TAX",
               "value": impuesto,
               "currency": moneda
            },
            {
               "name": "PLAN_TAX_RETURN_BASE",
               "value": base_impuesto,
               "currency": moneda
            }
          ]
        }
    }
    headers = {
        'Content-type' => 'application/json;charset=UTF-8',
        'Accept' => 'application/json',
        'Accept-language' => 'es', 
        'Authorization' => @auth
        }
    response = post('/subscriptions', body: params.to_json, headers: headers) 
    case response.code 
        when 200..202
          puts response
          retrieve_suscription response
        when 404
          response.message
        when 500..600
          puts "OMG ERROR #{response.code}"
        else
          response
    end
  end
end

.create_suscriptor(name, email) ⇒ Object

 2.1 POST - Crear un Suscriptor



206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# File 'lib/recurrente.rb', line 206

def self.create_suscriptor(name,email)
  handle_timeouts do
    headers = {
      'Content-type' => 'application/json;charset=UTF-8',
      'Accept' => 'application/json',
      'Accept-language' => 'es', 
      'Authorization' => @auth
      }
  
    params = {
       "fullName": name,
        "email": email
    }
  
    response = post('/customers', body: params.to_json, headers: headers)
   
    case response.code 
      when 200..202
        puts response
        puts JSON.pretty_generate(response.parsed_response)
        retrieve_customer response
      when 404
        response.message
      when 500..600
        puts "OMG ERROR #{response.code}"
      else
        response
    end
  end
end

.delete_card(customer_id, token) ⇒ Object

3.4 DELETE - Eliminar una tarjeta de crédito



416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
# File 'lib/recurrente.rb', line 416

def self.delete_card(customer_id, token)
  handle_timeouts do
    response = delete("/customers" + "/#{customer_id}" + '/creditCards' + "/#{token}")
 
    case response.code 
      when 200..202
        puts response
        response.parsed_response["response"]["description"]
        # Retorna la descripción
      when 404
        response.message
      when 500..600
        puts "OMG ERROR #{response.code}"
      else
        response
    end
  end
end

.delete_charge(extra_charge_id) ⇒ Object

5.5 POST - Borrar un cargo de la suscripción



876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
# File 'lib/recurrente.rb', line 876

def self.delete_charge(extra_charge_id)
  handle_timeouts do
    response = delete("/recurringBillItems" + "/#{extra_charge_id}")
 
    case response.code 
      when 200..202
        puts response
        puts response.code.to_s +  " " + response.message
        response.parsed_response["response"]["description"]
      when 404
        response.message
      when 500..600
        puts "OMG ERROR #{response.code}"
      else
        response
    end
  end
end

.delete_plan(plan_code) ⇒ Object

1.5 DELETE - Borrar un Plan existente



191
192
193
194
195
# File 'lib/recurrente.rb', line 191

def self.delete_plan(plan_code)
  handle_timeouts do
    response = delete("/plans" + "/#{plan_code}")   
  end
end

.delete_suscriptor(customer_id) ⇒ Object

2.4 DELETE - Borrar un Suscriptor



288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
# File 'lib/recurrente.rb', line 288

def self.delete_suscriptor(customer_id)
  handle_timeouts do
    response = delete("/customers" + "/#{customer_id}")
     case response.code 
      when 200..202
        puts response
        response.parsed_response["response"]["description"]
      when 404
        response.message
      when 500..600
        puts "OMG ERROR #{response.code}"
      else
        response
      end
  end
end

.find_card(token) ⇒ Object

3.2 GET - Buscar una tarjeta de crédito



381
382
383
384
385
386
387
388
389
390
391
392
# File 'lib/recurrente.rb', line 381

def self.find_card(token)
  handle_timeouts do
    response = get("/creditCards" + "/#{token}")
    puts JSON.pretty_generate(response.parsed_response)
    case response.code 
      when 200
        response.parsed_response["creditCard"]
      else
        response
    end
  end
end

.find_cards_by_suscriptor(customer_id) ⇒ Object

3.3 GET - Buscar tarjetas de crédito de un usuario



396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
# File 'lib/recurrente.rb', line 396

def self.find_cards_by_suscriptor(customer_id)
  handle_timeouts do
    response = get("/customers"+ "/#{customer_id}/creditCards")
     case response.code 
      when 200
        puts JSON.pretty_generate(response.parsed_response)
        response.parsed_response["creditCardListResponse"]["creditCards"]["creditCard"]
        # Retorna el hash de las tarjetas de crédito
      when 404
        response.message
      when 500..600
        puts "OMG ERROR #{response.code}"
      else
        response
    end
  end
end

.find_charge_by_id(charge_id) ⇒ Object

5.3 GET - Buscar un Cargo Extra por ID



831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
# File 'lib/recurrente.rb', line 831

def self.find_charge_by_id(charge_id)
  handle_timeouts do
    response = get("/recurringBillItems" + "/#{charge_id}")
    
     case response.code 
      when 200
        puts JSON.pretty_generate(response.parsed_response)
        puts response.code.to_s +  " " + response.message
        response.parsed_response["recurringBillItem"]
        # Retorna el cargo extra
      when 404
        response.message
        response
      when 500..600
        puts "OMG ERROR #{response.code}"
        response
      else
        response
    end
  end
end

.find_charge_by_suscription(suscription_id) ⇒ Object

5.4 GET - Buscar un Cargo Extra por Suscripcion



854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
# File 'lib/recurrente.rb', line 854

def self.find_charge_by_suscription(suscription_id)
  handle_timeouts do
    response = get("/recurringBillItems" + "/?subscriptionId=#{suscription_id}")
    
     case response.code 
      when 200
        puts JSON.pretty_generate(response.parsed_response)
        puts response.code.to_s +  " " + response.message
        response.parsed_response["recurringBillItemListResponse"]["recurringBillItems"]["recurringBillItem"]
        # Retorna los cargos extra de la suscripción
      when 404
        response.message
      when 500..600
        puts "OMG ERROR #{response.code}"
      else
        response
    end
  end
end

.find_plan(plan_code) ⇒ Object

1.3 GET - Consultar un plan existente



129
130
131
132
133
134
135
# File 'lib/recurrente.rb', line 129

def self.find_plan(plan_code)
  handle_timeouts do
    response = get("/plans" + "/#{plan_code}")
    puts JSON.pretty_generate(response.parsed_response)
    response
  end
end

.find_plansObject

1.1 GET - Mostrar todos los planes



49
50
51
52
53
54
# File 'lib/recurrente.rb', line 49

def self.find_plans
  handle_timeouts do
    response = get("/plans")
    JSON.pretty_generate(response.parsed_response)
  end
end

.find_suscription(suscription_id) ⇒ Object

4.3 GET - Buscar una Suscripción



670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
# File 'lib/recurrente.rb', line 670

def self.find_suscription(suscription_id)
  handle_timeouts do
    response = get("/subscriptions" + "/#{suscription_id}")
    
     case response.code 
      when 200..202
        puts JSON.pretty_generate(response.parsed_response)
        puts response.code.to_s +  " " + response.message
        response
      when 404
        response.code.to_s +  " " + response.message
      when 500..600
        puts "OMG ERROR #{response.code}"
      else
        response
    end
  end
end

.find_suscriptions_by_suscriptor(customer_id) ⇒ Object

4.4 GET - Buscar las suscripciones de un Cliente



690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
# File 'lib/recurrente.rb', line 690

def self.find_suscriptions_by_suscriptor(customer_id)
  handle_timeouts do
    response = get("/subscriptions" + "/?customerId=#{customer_id}")
    
     case response.code 
      when 200..202
        puts JSON.pretty_generate(response.parsed_response)
        puts response.code.to_s +  " " + response.message
        response.parsed_response["subscriptionsListResponse"]["subscriptions"]
      when 404
        response.message
      when 500..600
        puts "OMG ERROR #{response.code}"
      else
        response
    end
  end
end

.find_suscriptor(customer_id) ⇒ Object

2.2 GET - Buscar un Suscriptor



238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
# File 'lib/recurrente.rb', line 238

def self.find_suscriptor(customer_id)
  handle_timeouts do
    response = get("/customers" + "/#{customer_id}")
    
     case response.code 
      when 200..202
        puts JSON.pretty_generate(response.parsed_response)
        response.parsed_response["customer"] # Retorna el hash del suscriptor
      when 404
        response.message
      when 500..600
        puts "OMG ERROR #{response.code}"
      else
        response
    end
  end
end

.handle_timeoutsObject

Una buena practica de consumir una API es definir los timeouts que podrían acumularse y tumbar la pagina al tener los servidores atentidendo las peticiones HTTParty sacará un Net::OpenTimeout si no puede conectarse al servidor y un  Net::ReadTimeout si al leer la respuesta del servidor se cuelga.



33
34
35
36
37
38
39
# File 'lib/recurrente.rb', line 33

def self.handle_timeouts
  begin
    yield
  rescue Net::OpenTimeout, Net::ReadTimeout
    {}
  end
end

.update_charge(extra_charge_id, descripcion, valor, moneda, impuesto, base_impuesto) ⇒ Object

 5.2 PUT - Actualizar un cargo adicional



785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
# File 'lib/recurrente.rb', line 785

def self.update_charge(extra_charge_id, descripcion, valor, moneda, impuesto, base_impuesto )
  handle_timeouts do
    params = {
     "description": descripcion,
     "additionalValues": [
        {
           "name": "ITEM_VALUE",
           "value": valor,
           "currency": moneda
        },
        {
           "name": "ITEM_TAX",
           "value": impuesto,
           "currency": moneda
        },
        {
           "name": "ITEM_TAX_RETURN_BASE",
           "value": base_impuesto,
           "currency": moneda
        }
     ]
    } 
  
    headers = {
      'Content-type' => 'application/json;charset=UTF-8',
      'Accept' => 'application/json',
      'Accept-language' => 'es', 
      'Authorization' => @auth
      }
    put("/recurringBillItems" + "/#{extra_charge_id}", body: params.to_json, headers: headers)
    case response.code 
      when 200..202
        puts JSON.pretty_generate(response.parsed_response)
        puts response.code.to_s +  " " + response.message
        response
      when 404
        response.message
      when 500..600
        puts "OMG ERROR #{response.code}"
      else
        response
    end
  end
end

.update_plan(plan_code, codigo, descripcion, valor, impuesto, base_impuesto, reintentos, periodo_de_gracia, dias_entre_reintentos) ⇒ Object

1.4 PUT - Actualizar un plan existente



139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# File 'lib/recurrente.rb', line 139

def self.update_plan(plan_code, codigo, descripcion, valor, impuesto, base_impuesto, reintentos, periodo_de_gracia, dias_entre_reintentos)
  # Atributos eliminados cuenta, intervalo, cantidad de intervalos, cobros, moneda 
  handle_timeouts do
    headers = {
        'Content-type' => 'application/json;charset=UTF-8',
        'Accept' => 'application/json',
        'Accept-language' => 'es', 
        'Authorization' => @auth
        }
    params = {
       "planCode": codigo,
       "description": descripcion,
       "paymentAttemptsDelay": dias_entre_reintentos,
       "maxPaymentAttempts": reintentos,
       "maxPendingPayments": periodo_de_gracia,
       "additionalValues": [
          {
             "name": "PLAN_VALUE",
             "value": valor
          },
          {
             "name": "PLAN_TAX",
             "value": impuesto
          },
          {
             "name": "PLAN_TAX_RETURN_BASE",
             "value": base_impuesto
          }
        ]
      }
    # Es necesario incluir los encabezados de otra forma lo identifica de otro typo distinto a json
    
    
    response = put("/plans" + "/#{plan_code}", body: params.to_json, headers: headers)
  
  
    case response.code 
      when 200..202
        puts JSON.pretty_generate(response.parsed_response)
        retrieve_plan response
      when 404
        response.message
      when 500..600
        puts "OMG ERROR #{response.code}"
      else
        response
    end
  end # <-- Timeout block
end

.update_suscription_card(suscription_id, token) ⇒ Object

4.2 PUT - Update Suscription Credit Card



641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
# File 'lib/recurrente.rb', line 641

def self.update_suscription_card(suscription_id, token)
  handle_timeouts do
    headers = {
      'Content-type' => 'application/json;charset=UTF-8',
      'Accept' => 'application/json',
      'Accept-language' => 'es', 
      'Authorization' => @auth
      }
    params = {
      "creditCardToken": token
    }
    response = put('/subscriptions'+ "/#{suscription_id}", body: params.to_json, headers: headers)
      
    case response.code 
      when 200..202
        puts JSON.pretty_generate(response.parsed_response)
        puts response.code.to_s +  " " + response.message
        response
      when 404
        response.message
      when 500..600
        puts "OMG ERROR #{response.code}"
      else
        response
    end
  end
end

.update_suscriptor(customer_id, name, email) ⇒ Object

2.3 PUT - Actualizar un Suscriptor



257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
# File 'lib/recurrente.rb', line 257

def self.update_suscriptor(customer_id,name,email)
  handle_timeouts do
    headers = {
      'Content-type' => 'application/json;charset=UTF-8',
      'Accept' => 'application/json',
      'Accept-language' => 'es', 
      'Authorization' => @auth
      }
  
    params = {
       "fullName": name,
        "email": email
    }
  
    response = put('/customers'+ "/#{customer_id}", body: params.to_json, headers: headers)
    
    
    case response.code 
      when 200..202
        puts JSON.pretty_generate(response.parsed_response)
        retrieve_customer response
      when 404
        response.message
      when 500..600
        puts "OMG ERROR #{response.code}"
      else
        response
    end
  end
end