~singpolyma/sgx-jmp

ref: 7b1379d203d72bb0edb6a4d8b8dd2bb0bae5f216 sgx-jmp/lib/customer_info.rb -rw-r--r-- 1.8 KiB
7b1379d2Christopher Vollick Customer Visible Plan Info 1 year, 9 months 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
# frozen_string_literal: true

require "value_semantics/monkey_patched"
require_relative "proxied_jid"
require_relative "customer_plan"

class CustomerInfo
	value_semantics do
		plan CustomerPlan
		tel Either(String, nil)
		balance BigDecimal
		expires_at Either(Time, nil)
	end

	def self.for(customer, plan, expires_at)
		customer.registered?.then do |registration|
			new(
				plan: plan,
				tel: registration ? registration.phone : nil,
				balance: customer.balance,
				expires_at: expires_at
			)
		end
	end

	def account_status
		if plan.plan_name.nil?
			"Transitional"
		elsif plan.active?
			"Active"
		else
			"Expired"
		end
	end

	def next_renewal
		{ var: "Next renewal", value: expires_at.strftime("%Y-%m-%d") } if expires_at
	end

	def monthly_amount
		return unless plan.monthly_price
		{ var: "Renewal", value: "$%.4f / month" % plan.monthly_price }
	end

	def fields
		[
			{ var: "Account Status", value: account_status },
			{ var: "Phone Number", value: tel || "Not Registered" },
			{ var: "Balance", value: "$%.4f" % balance },
			monthly_amount,
			next_renewal,
			{ var: "Currency", value: (plan.currency || "No Currency").to_s }
		].compact
	end
end

class AdminInfo
	value_semantics do
		jid ProxiedJID, coerce: ProxiedJID.method(:new)
		customer_id String
		info CustomerInfo
		api API
	end

	def self.for(customer, plan, expires_at)
		EMPromise.all([
			CustomerInfo.for(customer, plan, expires_at),
			customer.api
		]).then do |info, api_value|
			new(
				jid: customer.jid,
				customer_id: customer.customer_id,
				info: info, api: api_value
			)
		end
	end

	def fields
		info.fields + [
			{ var: "JID", value: jid.unproxied.to_s },
			{ var: "Cheo JID", value: jid.to_s },
			{ var: "Customer ID", value: customer_id },
			{ var: "Plan", value: info.plan.plan_name || "No Plan" },
			{ var: "API", value: api.to_s }
		]
	end
end