Class: AppManager::GraphqlHelper
- Inherits:
-
Object
- Object
- AppManager::GraphqlHelper
- Defined in:
- lib/app_manager/graphql_helper.rb
Instance Method Summary collapse
- #api_call(query, is_json = false) ⇒ Object
-
#initialize(shopify_domain, shopify_token) ⇒ GraphqlHelper
constructor
A new instance of GraphqlHelper.
- #recurring_charge_api_call(plan, return_url, shop) ⇒ Object
- #recurring_charge_cancel_api_call(charge_id, shop) ⇒ Object
- #rest_client ⇒ Object
- #run_graph_api(query, variables = '', is_retrieve_all = false, after = '', is_json = true) ⇒ Object
Constructor Details
#initialize(shopify_domain, shopify_token) ⇒ GraphqlHelper
Returns a new instance of GraphqlHelper.
4 5 6 7 8 9 |
# File 'lib/app_manager/graphql_helper.rb', line 4 def initialize(shopify_domain,shopify_token) @api_key = AppManager.configuration.shopify_api_key || nil @api_version = AppManager.configuration.shopify_api_version || nil @shopify_domain = shopify_domain @shopify_token = shopify_token end |
Instance Method Details
#api_call(query, is_json = false) ⇒ Object
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 |
# File 'lib/app_manager/graphql_helper.rb', line 15 def api_call(query,is_json=false) require 'uri' require 'net/http' if !@api_key.nil? && !@api_version.nil? && !@shopify_domain.nil? && !@shopify_token.nil? url = URI("https://#{@api_key}:#{@shopify_token}@#{@shopify_domain}/admin/api/#{@api_version}/graphql.json") http = Net::HTTP.new(url.host, url.port) http.use_ssl = true http.verify_mode = OpenSSL::SSL::VERIFY_PEER request = Net::HTTP::Post.new(url) request["X-Shopify-Access-Token"] = @shopify_token request.body = query request["Accept"] = 'application/json' if is_json.present? request["Content-Type"] = 'application/json' else request["Content-Type"] = 'application/graphql' end response = http.request(request) response = ActiveSupport::JSON.decode(response.read_body) rescue nil return response else Rollbar.error("=== params missing from any of these api_key, api_version, shopify_domain, shopify_token ===") return [] end end |
#recurring_charge_api_call(plan, return_url, shop) ⇒ Object
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 |
# File 'lib/app_manager/graphql_helper.rb', line 55 def recurring_charge_api_call(plan,return_url,shop) 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) # trial_days = !remaining.nil? ? remaining : trial_days 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 discount_type = plan['discount_type'] || "percentage" discount_val = discount_type == "percentage" ? (plan['discount'].to_f/ 100) : "#{plan['discount']}" plan_discount = plan['discount'] ? { "discount" => { "durationLimitInIntervals" => (plan['cycle_count'].to_i || 0), "value" => {"#{discount_type}" => discount_val} } } : {} price_details = { "price": { "amount": plan['price'], "currencyCode": 'USD' }, "interval": plan['interval']['value'] } price_details.merge! plan_discount if 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 |
#recurring_charge_cancel_api_call(charge_id, shop) ⇒ Object
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
# File 'lib/app_manager/graphql_helper.rb', line 154 def recurring_charge_cancel_api_call(charge_id,shop) query = 'mutation( $id: ID! ){ appSubscriptionCancel( id: $id ) { userErrors { field message } appSubscription { id status } } } ' variables = { "id": "gid://shopify/AppSubscription/#{charge_id}" } data = run_graph_api(query,variables) return data end |
#rest_client ⇒ Object
11 12 13 |
# File 'lib/app_manager/graphql_helper.rb', line 11 def rest_client end |
#run_graph_api(query, variables = '', is_retrieve_all = false, after = '', is_json = true) ⇒ Object
41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/app_manager/graphql_helper.rb', line 41 def run_graph_api(query,variables = '',is_retrieve_all = false,after = '',is_json = true) query = query.dup.force_encoding("UTF-8") if variables.present? query = {"query": "#{query}","variables": variables } end if is_json response = api_call(query.to_json,true) else response = api_call(query,false) end return response end |