~singpolyma/sgx-jmp

ref: e636c3335d3a14dc2817221c2bdd476ab2394103 sgx-jmp/lib/call_attempt.rb -rw-r--r-- 3.4 KiB
e636c333Stephen Paul Weber Calculate the maximum allowable call length 1 year, 1 month ago
                                                                                
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
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
127
128
129
130
131
132
133
134
135
136
137
138
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
# frozen_string_literal: true

require "value_semantics/monkey_patched"

require_relative "tts_template"
require_relative "low_balance"

class CallAttempt
	def self.for(customer, rate, usage, trust_level, direction:, **kwargs)
		kwargs.merge!(direction: direction)
		credit = [customer.minute_limit.to_d - usage, 0].max + customer.balance
		if !rate || !trust_level.support_call?(rate)
			Unsupported.new(direction: direction)
		elsif credit < rate * 10
			NoBalance.for(customer, rate, usage, trust_level, **kwargs)
		else
			for_ask_or_go(customer, rate, usage, credit, **kwargs)
		end
	end

	def self.for_ask_or_go(customer, rate, usage, credit, digits: nil, **kwargs)
		kwargs.merge!(
			customer_id: customer.customer_id,
			limit_remaining: limit_remaining(customer, usage, rate),
			max_minutes: (credit / rate).to_i
		)
		if digits != "1" && limit_remaining(customer, usage, rate) < 10
			AtLimit.new(**kwargs)
		else
			new(**kwargs)
		end
	end

	def self.limit_remaining(customer, usage, rate)
		can_use = customer.minute_limit.to_d + customer.monthly_overage_limit
		([can_use - usage, 0].max / rate).to_i
	end

	value_semantics do
		customer_id String
		from String
		to(/\A\+\d+\Z/)
		call_id String
		direction Either(:inbound, :outbound)
		limit_remaining Integer
		max_minutes Integer
	end

	def to_render
		["#{direction}/connect", { locals: to_h }]
	end

	def create_call(fwd, *args, &block)
		fwd.create_call(*args, &block)
	end

	def as_json(*)
		{
			from: from,
			to: to,
			customer_id: customer_id,
			limit_remaining: limit_remaining,
			max_minutes: max_minutes
		}
	end

	def to_json(*args)
		as_json.to_json(*args)
	end

	class Unsupported
		value_semantics do
			direction Either(:inbound, :outbound)
		end

		def view
			"#{direction}/unsupported"
		end

		def tts
			TTSTemplate.new(view).tts(self)
		end

		def to_render
			[view]
		end

		def create_call(*); end

		def as_json(*)
			{ tts: tts }
		end

		def to_json(*args)
			as_json.to_json(*args)
		end
	end

	class NoBalance
		def self.for(customer, rate, usage, trust_level, direction:, **kwargs)
			LowBalance.for(customer).then(&:notify!).then do |amount|
				if amount&.positive?
					CallAttempt.for(
						customer.with_balance(customer.balance + amount),
						rate, usage, trust_level, direction: direction, **kwargs
					)
				else
					NoBalance.new(balance: customer.balance, direction: direction)
				end
			end
		end

		value_semantics do
			balance Numeric
			direction Either(:inbound, :outbound)
		end

		def view
			"#{direction}/no_balance"
		end

		def tts
			TTSTemplate.new(view).tts(self)
		end

		def to_render
			[view, { locals: to_h }]
		end

		def create_call(*); end

		def as_json(*)
			{ tts: tts }
		end

		def to_json(*args)
			as_json.to_json(*args)
		end
	end

	class AtLimit
		value_semantics do
			customer_id String
			from String
			to(/\A\+\d+\Z/)
			call_id String
			direction Either(:inbound, :outbound)
			limit_remaining Integer
			max_minutes Integer
		end

		def view
			"#{direction}/at_limit"
		end

		def tts
			TTSTemplate.new(view).tts(self)
		end

		def to_render
			[view, { locals: to_h }]
		end

		def create_call(fwd, *args, &block)
			fwd.create_call(*args, &block)
		end

		def as_json(*)
			{
				tts: tts,
				from: from,
				to: to,
				customer_id: customer_id,
				limit_remaining: limit_remaining,
				max_minutes: max_minutes
			}
		end

		def to_json(*args)
			as_json.to_json(*args)
		end
	end
end