Class: ProcessOut::Subscription
- Inherits:
-
Object
- Object
- ProcessOut::Subscription
- Defined in:
- lib/processout/subscription.rb
Instance Attribute Summary collapse
-
#activated ⇒ Object
Returns the value of attribute activated.
-
#activated_at ⇒ Object
Returns the value of attribute activated_at.
-
#active ⇒ Object
Returns the value of attribute active.
-
#amount ⇒ Object
Returns the value of attribute amount.
-
#cancel_at ⇒ Object
Returns the value of attribute cancel_at.
-
#cancel_url ⇒ Object
Returns the value of attribute cancel_url.
-
#canceled ⇒ Object
Returns the value of attribute canceled.
-
#cancellation_reason ⇒ Object
Returns the value of attribute cancellation_reason.
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#currency ⇒ Object
Returns the value of attribute currency.
-
#customer ⇒ Object
Returns the value of attribute customer.
-
#id ⇒ Object
Returns the value of attribute id.
-
#interval ⇒ Object
Returns the value of attribute interval.
-
#iterate_at ⇒ Object
Returns the value of attribute iterate_at.
-
#metadata ⇒ Object
Returns the value of attribute metadata.
-
#name ⇒ Object
Returns the value of attribute name.
-
#pending_cancellation ⇒ Object
Returns the value of attribute pending_cancellation.
-
#plan ⇒ Object
Returns the value of attribute plan.
-
#plan_id ⇒ Object
Returns the value of attribute plan_id.
-
#project ⇒ Object
Returns the value of attribute project.
-
#return_url ⇒ Object
Returns the value of attribute return_url.
-
#sandbox ⇒ Object
Returns the value of attribute sandbox.
-
#token ⇒ Object
Returns the value of attribute token.
-
#trial_end_at ⇒ Object
Returns the value of attribute trial_end_at.
-
#url ⇒ Object
Returns the value of attribute url.
Instance Method Summary collapse
-
#all(options = {}) ⇒ Object
Get all the subscriptions.
-
#apply_coupon(coupon_id, options = {}) ⇒ Object
Apply a coupon on the subscription.
-
#cancel(cancellation_reason, options = {}) ⇒ Object
Cancel a subscription.
-
#cancel_at_date(cancel_at, cancellation_reason, options = {}) ⇒ Object
Schedule the cancellation of the subscription.
-
#create(customer_id, options = {}) ⇒ Object
Create a new subscription for the given customer.
-
#create_from_plan(customer_id, plan_id, options = {}) ⇒ Object
Create a new subscription for the customer from the given plan ID.
-
#fetch_customer(options = {}) ⇒ Object
Get the customer owning the subscription.
-
#fetch_discounts(options = {}) ⇒ Object
Get the discounts applied to the subscription.
-
#fetch_transactions(options = {}) ⇒ Object
Get the subscriptions past transactions.
-
#fill_with_data(data) ⇒ Object
- Fills the object with data coming from the API Params:
data -
Hashof data coming from the API.
- Fills the object with data coming from the API Params:
-
#find(subscription_id, options = {}) ⇒ Object
Find a subscription by its ID.
-
#find_discount(discount_id, options = {}) ⇒ Object
Find a subscription’s discount by its ID.
-
#initialize(client, data = {}) ⇒ Subscription
constructor
- Initializes the Subscription object Params:
client ProcessOutclient instancedata-
data that can be used to fill the object.
- Initializes the Subscription object Params:
-
#new(data = {}) ⇒ Object
Create a new Subscription using the current client.
-
#prefill(data) ⇒ Object
- Prefills the object with the data passed as parameters Params:
data -
Hashof data.
- Prefills the object with the data passed as parameters Params:
-
#remove_discount(discount_id, options = {}) ⇒ Object
Remove a discount applied to a subscription.
-
#save(options = {}) ⇒ Object
Save the updated subscription attributes.
Constructor Details
#initialize(client, data = {}) ⇒ Subscription
Initializes the Subscription object Params:
client-
ProcessOutclient instance data-
data that can be used to fill the object
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
# File 'lib/processout/subscription.rb', line 170 def initialize(client, data = {}) @client = client self.id = data.fetch(:id, nil) self.project = data.fetch(:project, nil) self.plan_id = data.fetch(:plan_id, nil) self.plan = data.fetch(:plan, nil) self.customer = data.fetch(:customer, nil) self.token = data.fetch(:token, nil) self.url = data.fetch(:url, nil) self.name = data.fetch(:name, nil) self.amount = data.fetch(:amount, nil) self.currency = data.fetch(:currency, nil) self. = data.fetch(:metadata, nil) self.interval = data.fetch(:interval, nil) self.trial_end_at = data.fetch(:trial_end_at, nil) self.activated = data.fetch(:activated, nil) self.active = data.fetch(:active, nil) self.canceled = data.fetch(:canceled, nil) self.cancellation_reason = data.fetch(:cancellation_reason, nil) self.pending_cancellation = data.fetch(:pending_cancellation, nil) self.cancel_at = data.fetch(:cancel_at, nil) self.return_url = data.fetch(:return_url, nil) self.cancel_url = data.fetch(:cancel_url, nil) self.sandbox = data.fetch(:sandbox, nil) self.created_at = data.fetch(:created_at, nil) self.activated_at = data.fetch(:activated_at, nil) self.iterate_at = data.fetch(:iterate_at, nil) end |
Instance Attribute Details
#activated ⇒ Object
Returns the value of attribute activated.
23 24 25 |
# File 'lib/processout/subscription.rb', line 23 def activated @activated end |
#activated_at ⇒ Object
Returns the value of attribute activated_at.
33 34 35 |
# File 'lib/processout/subscription.rb', line 33 def activated_at @activated_at end |
#active ⇒ Object
Returns the value of attribute active.
24 25 26 |
# File 'lib/processout/subscription.rb', line 24 def active @active end |
#amount ⇒ Object
Returns the value of attribute amount.
18 19 20 |
# File 'lib/processout/subscription.rb', line 18 def amount @amount end |
#cancel_at ⇒ Object
Returns the value of attribute cancel_at.
28 29 30 |
# File 'lib/processout/subscription.rb', line 28 def cancel_at @cancel_at end |
#cancel_url ⇒ Object
Returns the value of attribute cancel_url.
30 31 32 |
# File 'lib/processout/subscription.rb', line 30 def cancel_url @cancel_url end |
#canceled ⇒ Object
Returns the value of attribute canceled.
25 26 27 |
# File 'lib/processout/subscription.rb', line 25 def canceled @canceled end |
#cancellation_reason ⇒ Object
Returns the value of attribute cancellation_reason.
26 27 28 |
# File 'lib/processout/subscription.rb', line 26 def cancellation_reason @cancellation_reason end |
#created_at ⇒ Object
Returns the value of attribute created_at.
32 33 34 |
# File 'lib/processout/subscription.rb', line 32 def created_at @created_at end |
#currency ⇒ Object
Returns the value of attribute currency.
19 20 21 |
# File 'lib/processout/subscription.rb', line 19 def currency @currency end |
#customer ⇒ Object
Returns the value of attribute customer.
14 15 16 |
# File 'lib/processout/subscription.rb', line 14 def customer @customer end |
#id ⇒ Object
Returns the value of attribute id.
10 11 12 |
# File 'lib/processout/subscription.rb', line 10 def id @id end |
#interval ⇒ Object
Returns the value of attribute interval.
21 22 23 |
# File 'lib/processout/subscription.rb', line 21 def interval @interval end |
#iterate_at ⇒ Object
Returns the value of attribute iterate_at.
34 35 36 |
# File 'lib/processout/subscription.rb', line 34 def iterate_at @iterate_at end |
#metadata ⇒ Object
Returns the value of attribute metadata.
20 21 22 |
# File 'lib/processout/subscription.rb', line 20 def @metadata end |
#name ⇒ Object
Returns the value of attribute name.
17 18 19 |
# File 'lib/processout/subscription.rb', line 17 def name @name end |
#pending_cancellation ⇒ Object
Returns the value of attribute pending_cancellation.
27 28 29 |
# File 'lib/processout/subscription.rb', line 27 def pending_cancellation @pending_cancellation end |
#plan ⇒ Object
Returns the value of attribute plan.
13 14 15 |
# File 'lib/processout/subscription.rb', line 13 def plan @plan end |
#plan_id ⇒ Object
Returns the value of attribute plan_id.
12 13 14 |
# File 'lib/processout/subscription.rb', line 12 def plan_id @plan_id end |
#project ⇒ Object
Returns the value of attribute project.
11 12 13 |
# File 'lib/processout/subscription.rb', line 11 def project @project end |
#return_url ⇒ Object
Returns the value of attribute return_url.
29 30 31 |
# File 'lib/processout/subscription.rb', line 29 def return_url @return_url end |
#sandbox ⇒ Object
Returns the value of attribute sandbox.
31 32 33 |
# File 'lib/processout/subscription.rb', line 31 def sandbox @sandbox end |
#token ⇒ Object
Returns the value of attribute token.
15 16 17 |
# File 'lib/processout/subscription.rb', line 15 def token @token end |
#trial_end_at ⇒ Object
Returns the value of attribute trial_end_at.
22 23 24 |
# File 'lib/processout/subscription.rb', line 22 def trial_end_at @trial_end_at end |
#url ⇒ Object
Returns the value of attribute url.
16 17 18 |
# File 'lib/processout/subscription.rb', line 16 def url @url end |
Instance Method Details
#all(options = {}) ⇒ Object
Get all the subscriptions. Params:
options-
Hashof options
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 |
# File 'lib/processout/subscription.rb', line 492 def all( = {}) self.prefill() request = Request.new(@client) path = "/subscriptions" data = { } response = Response.new(request.get(path, data, )) return_values = Array.new a = Array.new body = response.body for v in body['subscriptions'] tmp = Subscription.new(@client) tmp.fill_with_data(v) a.push(tmp) end return_values.push(a) return_values[0] end |
#apply_coupon(coupon_id, options = {}) ⇒ Object
Apply a coupon on the subscription. Params:
coupon_id-
ID of the coupon
options-
Hashof options
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 |
# File 'lib/processout/subscription.rb', line 386 def apply_coupon(coupon_id, = {}) self.prefill() request = Request.new(@client) path = "/subscriptions/" + CGI.escape(@id) + "/discounts" data = { "coupon_id" => coupon_id } response = Response.new(request.post(path, data, )) return_values = Array.new body = response.body body = body["discount"] discount = Discount.new(@client) return_values.push(discount.fill_with_data(body)) return_values[0] end |
#cancel(cancellation_reason, options = {}) ⇒ Object
Cancel a subscription. The reason may be provided as well. Params:
cancellation_reason-
Cancellation reason
options-
Hashof options
664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 |
# File 'lib/processout/subscription.rb', line 664 def cancel(cancellation_reason, = {}) self.prefill() request = Request.new(@client) path = "/subscriptions/" + CGI.escape(@id) + "" data = { "cancellation_reason" => cancellation_reason } response = Response.new(request.delete(path, data, )) return_values = Array.new body = response.body body = body["subscription"] return_values.push(self.fill_with_data(body)) return_values[0] end |
#cancel_at_date(cancel_at, cancellation_reason, options = {}) ⇒ Object
Schedule the cancellation of the subscription. The reason may be provided as well. Params:
cancel_at-
Cancellation date, in the form of a string
cancellation_reason-
Cancellation reason
options-
Hashof options
692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 |
# File 'lib/processout/subscription.rb', line 692 def cancel_at_date(cancel_at, cancellation_reason, = {}) self.prefill() request = Request.new(@client) path = "/subscriptions/" + CGI.escape(@id) + "" data = { "cancel_at_end" => .fetch(:cancel_at_end, nil), "cancel_at" => cancel_at, "cancellation_reason" => cancellation_reason } response = Response.new(request.delete(path, data, )) return_values = Array.new body = response.body body = body["subscription"] return_values.push(self.fill_with_data(body)) return_values[0] end |
#create(customer_id, options = {}) ⇒ Object
Create a new subscription for the given customer. Params:
customer_id-
ID of the customer
options-
Hashof options
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 |
# File 'lib/processout/subscription.rb', line 523 def create(customer_id, = {}) self.prefill() request = Request.new(@client) path = "/subscriptions" data = { "plan_id" => @plan_id, "cancel_at" => @cancel_at, "name" => @name, "amount" => @amount, "currency" => @currency, "metadata" => @metadata, "interval" => @interval, "trial_end_at" => @trial_end_at, "return_url" => @return_url, "cancel_url" => @cancel_url, "source" => .fetch(:source, nil), "prorate" => .fetch(:prorate, nil), "customer_id" => customer_id } response = Response.new(request.post(path, data, )) return_values = Array.new body = response.body body = body["subscription"] return_values.push(self.fill_with_data(body)) return_values[0] end |
#create_from_plan(customer_id, plan_id, options = {}) ⇒ Object
Create a new subscription for the customer from the given plan ID. Params:
customer_id-
ID of the customer
plan_id-
ID of the plan
options-
Hashof options
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 |
# File 'lib/processout/subscription.rb', line 563 def create_from_plan(customer_id, plan_id, = {}) self.prefill() request = Request.new(@client) path = "/subscriptions" data = { "cancel_at" => @cancel_at, "name" => @name, "amount" => @amount, "currency" => @currency, "metadata" => @metadata, "interval" => @interval, "trial_end_at" => @trial_end_at, "return_url" => @return_url, "cancel_url" => @cancel_url, "source" => .fetch(:source, nil), "customer_id" => customer_id, "plan_id" => plan_id } response = Response.new(request.post(path, data, )) return_values = Array.new body = response.body body = body["subscription"] return_values.push(self.fill_with_data(body)) return_values[0] end |
#fetch_customer(options = {}) ⇒ Object
Get the customer owning the subscription. Params:
options-
Hashof options
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 |
# File 'lib/processout/subscription.rb', line 331 def fetch_customer( = {}) self.prefill() request = Request.new(@client) path = "/subscriptions/" + CGI.escape(@id) + "/customers" data = { } response = Response.new(request.get(path, data, )) return_values = Array.new body = response.body body = body["customer"] customer = Customer.new(@client) return_values.push(customer.fill_with_data(body)) return_values[0] end |
#fetch_discounts(options = {}) ⇒ Object
Get the discounts applied to the subscription. Params:
options-
Hashof options
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 |
# File 'lib/processout/subscription.rb', line 355 def fetch_discounts( = {}) self.prefill() request = Request.new(@client) path = "/subscriptions/" + CGI.escape(@id) + "/discounts" data = { } response = Response.new(request.get(path, data, )) return_values = Array.new a = Array.new body = response.body for v in body['discounts'] tmp = Discount.new(@client) tmp.fill_with_data(v) a.push(tmp) end return_values.push(a) return_values[0] end |
#fetch_transactions(options = {}) ⇒ Object
Get the subscriptions past transactions. Params:
options-
Hashof options
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 |
# File 'lib/processout/subscription.rb', line 462 def fetch_transactions( = {}) self.prefill() request = Request.new(@client) path = "/subscriptions/" + CGI.escape(@id) + "/transactions" data = { } response = Response.new(request.get(path, data, )) return_values = Array.new a = Array.new body = response.body for v in body['transactions'] tmp = Transaction.new(@client) tmp.fill_with_data(v) a.push(tmp) end return_values.push(a) return_values[0] end |
#fill_with_data(data) ⇒ Object
Fills the object with data coming from the API Params:
data-
Hashof data coming from the API
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 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 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 287 288 289 290 |
# File 'lib/processout/subscription.rb', line 209 def fill_with_data(data) if data.nil? return self end if data.include? "id" self.id = data["id"] end if data.include? "project" self.project = data["project"] end if data.include? "plan_id" self.plan_id = data["plan_id"] end if data.include? "plan" self.plan = data["plan"] end if data.include? "customer" self.customer = data["customer"] end if data.include? "token" self.token = data["token"] end if data.include? "url" self.url = data["url"] end if data.include? "name" self.name = data["name"] end if data.include? "amount" self.amount = data["amount"] end if data.include? "currency" self.currency = data["currency"] end if data.include? "metadata" self. = data["metadata"] end if data.include? "interval" self.interval = data["interval"] end if data.include? "trial_end_at" self.trial_end_at = data["trial_end_at"] end if data.include? "activated" self.activated = data["activated"] end if data.include? "active" self.active = data["active"] end if data.include? "canceled" self.canceled = data["canceled"] end if data.include? "cancellation_reason" self.cancellation_reason = data["cancellation_reason"] end if data.include? "pending_cancellation" self.pending_cancellation = data["pending_cancellation"] end if data.include? "cancel_at" self.cancel_at = data["cancel_at"] end if data.include? "return_url" self.return_url = data["return_url"] end if data.include? "cancel_url" self.cancel_url = data["cancel_url"] end if data.include? "sandbox" self.sandbox = data["sandbox"] end if data.include? "created_at" self.created_at = data["created_at"] end if data.include? "activated_at" self.activated_at = data["activated_at"] end if data.include? "iterate_at" self.iterate_at = data["iterate_at"] end self end |
#find(subscription_id, options = {}) ⇒ Object
Find a subscription by its ID. Params:
subscription_id-
ID of the subscription
options-
Hashof options
601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 |
# File 'lib/processout/subscription.rb', line 601 def find(subscription_id, = {}) self.prefill() request = Request.new(@client) path = "/subscriptions/" + CGI.escape(subscription_id) + "" data = { } response = Response.new(request.get(path, data, )) return_values = Array.new body = response.body body = body["subscription"] obj = Subscription.new(@client) return_values.push(obj.fill_with_data(body)) return_values[0] end |
#find_discount(discount_id, options = {}) ⇒ Object
Find a subscription’s discount by its ID. Params:
discount_id-
ID of the discount
options-
Hashof options
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 |
# File 'lib/processout/subscription.rb', line 411 def find_discount(discount_id, = {}) self.prefill() request = Request.new(@client) path = "/subscriptions/" + CGI.escape(@id) + "/discounts/" + CGI.escape(discount_id) + "" data = { } response = Response.new(request.get(path, data, )) return_values = Array.new body = response.body body = body["discount"] discount = Discount.new(@client) return_values.push(discount.fill_with_data(body)) return_values[0] end |
#new(data = {}) ⇒ Object
Create a new Subscription using the current client
202 203 204 |
# File 'lib/processout/subscription.rb', line 202 def new(data = {}) Subscription.new(@client, data) end |
#prefill(data) ⇒ Object
Prefills the object with the data passed as parameters Params:
data-
Hashof data
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 |
# File 'lib/processout/subscription.rb', line 295 def prefill(data) if data.nil? return self end self.id = data.fetch(:id, self.id) self.project = data.fetch(:project, self.project) self.plan_id = data.fetch(:plan_id, self.plan_id) self.plan = data.fetch(:plan, self.plan) self.customer = data.fetch(:customer, self.customer) self.token = data.fetch(:token, self.token) self.url = data.fetch(:url, self.url) self.name = data.fetch(:name, self.name) self.amount = data.fetch(:amount, self.amount) self.currency = data.fetch(:currency, self.currency) self. = data.fetch(:metadata, self.) self.interval = data.fetch(:interval, self.interval) self.trial_end_at = data.fetch(:trial_end_at, self.trial_end_at) self.activated = data.fetch(:activated, self.activated) self.active = data.fetch(:active, self.active) self.canceled = data.fetch(:canceled, self.canceled) self.cancellation_reason = data.fetch(:cancellation_reason, self.cancellation_reason) self.pending_cancellation = data.fetch(:pending_cancellation, self.pending_cancellation) self.cancel_at = data.fetch(:cancel_at, self.cancel_at) self.return_url = data.fetch(:return_url, self.return_url) self.cancel_url = data.fetch(:cancel_url, self.cancel_url) self.sandbox = data.fetch(:sandbox, self.sandbox) self.created_at = data.fetch(:created_at, self.created_at) self.activated_at = data.fetch(:activated_at, self.activated_at) self.iterate_at = data.fetch(:iterate_at, self.iterate_at) self end |
#remove_discount(discount_id, options = {}) ⇒ Object
Remove a discount applied to a subscription. Params:
discount_id-
ID of the discount or coupon to be removed from the subscription
options-
Hashof options
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 |
# File 'lib/processout/subscription.rb', line 436 def remove_discount(discount_id, = {}) self.prefill() request = Request.new(@client) path = "/subscriptions/" + CGI.escape(@id) + "/discounts/" + CGI.escape(discount_id) + "" data = { } response = Response.new(request.delete(path, data, )) return_values = Array.new body = response.body body = body["discount"] return_values.push(self.fill_with_data(body)) return_values[0] end |
#save(options = {}) ⇒ Object
Save the updated subscription attributes. Params:
options-
Hashof options
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 |
# File 'lib/processout/subscription.rb', line 628 def save( = {}) self.prefill() request = Request.new(@client) path = "/subscriptions/" + CGI.escape(@id) + "" data = { "plan_id" => @plan_id, "name" => @name, "amount" => @amount, "interval" => @interval, "trial_end_at" => @trial_end_at, "metadata" => @metadata, "coupon_id" => .fetch(:coupon_id, nil), "source" => .fetch(:source, nil), "prorate" => .fetch(:prorate, nil), "proration_date" => .fetch(:proration_date, nil) } response = Response.new(request.put(path, data, )) return_values = Array.new body = response.body body = body["subscription"] return_values.push(self.fill_with_data(body)) return_values[0] end |