1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# frozen_string_literal: true
class BillPlanCommand
def self.for(customer)
return ForUnregistered.new unless customer.registered?
unless customer.balance > customer.monthly_price
return ForLowBalance.new(customer)
end
new(customer)
end
def initialize(customer)
@customer = customer
end
def call
@customer.bill_plan
Command.reply do |reply|
reply.note_type = :info
reply.note_text = "Customer billed"
end
end
class ForLowBalance
def initialize(customer)
@customer = customer
end
def call
LowBalance.for(@customer).then(&:notify!).then do |amount|
return command_for(amount).call if amount&.positive?
notify_failure
Command.reply do |reply|
reply.note_type = :error
reply.note_text = "Customer balance is too low"
end
end
end
protected
def notify_failure
m = Blather::Stanza::Message.new
m.from = CONFIG[:notify_from]
m.body =
"Failed to renew account for #{@customer.registered?.phone}. " \
"To keep your number, please buy more credit soon."
@customer.stanza_to(m)
end
def command_for(amount)
BillPlanCommand.for(
@customer.with_balance(@customer.balance + amount)
)
end
end
class ForUnregistered
def call
Command.reply do |reply|
reply.note_type = :error
reply.note_text = "Customer is not registered"
end
end
end
end