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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
|
# File 'lib/app_manager/graphql_helper.rb', line 57
def recurring_charge_api_call(plan,return_url,shop,discount_local_storage)
plan_test = nil
shop_plan_field = AppManager.configuration.field_names['shopify_plan'] rescue nil
if !plan['affiliate'].nil? && plan['affiliate'].any? && !shop_plan_field.nil? && plan['affiliate'].map{|e| e['value']}.include?(shop[shop_plan_field])
plan_test = true
end
trial_days = plan['trial_days'] || 0
if shop && shop.shopify_domain && trial_days
trial_activated_at = shop[AppManager.configuration.field_names['trial_activated_at']] rescue nil
plan_id_field = shop[AppManager.configuration.plan_id_or_name_field] rescue nil
remaining_obj = AppManager::Client.new
remaining = remaining_obj.get_remaining_days(shop.shopify_domain,trial_activated_at,plan_id_field)
if !remaining.nil?
if !plan_id_field.nil?
plan_obj = AppManager::Client.new
current_plan = plan_obj.get_plan(plan_id_field) rescue nil
used_days = (current_plan['trial_days'].to_i - remaining.to_i) if current_plan rescue 0
if used_days > 0
days = trial_days - used_days
trial_days = days > 0 ? days : 0
end
else
trial_days = remaining
end
end
end
promotional_discount = []
if !discount_local_storage.nil? && shop
plan_obj = AppManager::Client.new
promotional_discount = plan_obj.get_promotional_discount(shop.shopify_domain, discount_local_storage)
promotional_discount = [] if promotional_discount.class.to_s == "Hash" && promotional_discount.has_key?('status') && promotional_discount['status'] == 404
end
if !plan['discount'].nil? && plan['discount'] != 0
discount_type = plan['discount_type'] || "percentage"
discount_val = discount_type == "percentage" ? (plan['discount'].to_f/ 100) : "#{plan['discount']}"
if !@api_version.nil? && @api_version.to_s.include?('2024')
plan_discount = if plan['discount'] && plan['cycle_count'] && plan['cycle_count'].to_i != 0
{
"discount" => { "durationLimitInIntervals" => (plan['cycle_count'].to_i),
"value" => {"#{discount_type}" => discount_val}
}
}
elsif plan['discount']
{
"discount" => { "value" => {"#{discount_type}" => discount_val}
}
}
else
{}
end
else
plan_discount = plan['discount'] ? { "discount" => { "durationLimitInIntervals" => (plan['cycle_count'].to_i), "value" => {"#{discount_type}" => discount_val} } } : {}
end
else
if promotional_discount.any?
if promotional_discount['plan_relation'].any? && !promotional_discount['plan_relation'].include?(plan['id']) && plan['is_global']
plan_discount = {}
else
discount_type = promotional_discount['type'] || 'percentage'
discount_value = {
discount_type => discount_type == 'percentage' ? promotional_discount['value'].to_f / 100 : [promotional_discount['value'].to_f, plan['price']].min
}
discount = { 'value' => discount_value }
discount['durationLimitInIntervals'] = promotional_discount['duration_intervals'].to_i if promotional_discount['duration_intervals'].to_i.positive?
plan_discount = { "discount" => discount}
end
end
end
discount_exists = !plan['discount'].nil? && plan['discount'] != 0
promotional_discount_applies = promotional_discount.present? && promotional_discount.any?
promotional_discount_id = discount_exists && promotional_discount_applies ? 0 : promotional_discount_applies ? promotional_discount['id'] : 0
return_url += "&discount=#{promotional_discount_id}"
price_details = {
"price": { "amount": plan['price'], "currencyCode": 'USD' },
"interval": plan['interval']['value']
}
price_details.merge! plan_discount if plan_discount && plan_discount.any?
plan_var = {
"appRecurringPricingDetails": price_details,
}
line_items_data = [{
"plan": plan_var
}]
if plan['interval']['value'] == 'EVERY_30_DAYS' && plan['is_external_charge'].present? && plan['is_external_charge'] == true && plan['external_charge_limit'] != ''
plan_var_usage = {
"plan": {
"appUsagePricingDetails": {
"cappedAmount": {
"amount": plan['external_charge_limit'],
"currencyCode": "USD"
},
"terms": plan['terms']
}
}
}
line_items_data.push(plan_var_usage)
end
query = 'mutation(
$name: String!,
$returnUrl: URL!,
$trialDays: Int,
$test: Boolean,
$lineItems: [AppSubscriptionLineItemInput!]!
) {
appSubscriptionCreate(
name: $name,
returnUrl: $returnUrl,
trialDays: $trialDays,
test: $test,
lineItems: $lineItems
) {
userErrors {
field
message
}
confirmationUrl
appSubscription {
id
}
}
}'
variables = {
"name": plan['name'],
"returnUrl": return_url,
"trialDays": trial_days,
"test": plan_test,
"lineItems": line_items_data
}
data = run_graph_api(query,variables)
return data
end
|