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
- #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 Rails.logger.info "=== 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 |
# 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_field = AppManager.configuration.field_names['trial_activated_at'] rescue nil trial_activated_at = shop[trial_activated_at] rescue nil plan_field = AppManager.configuration.plan_id_or_name_field rescue nil plan_id_field = shop[@plan_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 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? 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": [{ "plan": { "appRecurringPricingDetails": price_details } }] } 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 |