Class: ShopifyApp::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/shopify_app/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



42
43
44
45
46
47
48
# File 'lib/shopify_app/configuration.rb', line 42

def initialize
  @root_url = '/'
  @myshopify_domain = 'myshopify.com'
  @scripttags_manager_queue_name = Rails.application.config.active_job.queue_name
  @webhooks_manager_queue_name = Rails.application.config.active_job.queue_name
  @disable_webpacker = ENV['SHOPIFY_APP_DISABLE_WEBPACKER'].present?
end

Instance Attribute Details

#after_authenticate_jobObject

Returns the value of attribute after_authenticate_job.



16
17
18
# File 'lib/shopify_app/configuration.rb', line 16

def after_authenticate_job
  @after_authenticate_job
end

#allow_jwt_authenticationObject

allow enabling jwt headers for authentication



40
41
42
# File 'lib/shopify_app/configuration.rb', line 40

def allow_jwt_authentication
  @allow_jwt_authentication
end

#api_keyObject

Returns the value of attribute api_key.



8
9
10
# File 'lib/shopify_app/configuration.rb', line 8

def api_key
  @api_key
end

#api_versionObject

Returns the value of attribute api_version.



17
18
19
# File 'lib/shopify_app/configuration.rb', line 17

def api_version
  @api_version
end

#application_nameObject

Shopify App settings. These values should match the configuration for the app in your Shopify Partners page. Change your settings in ‘config/initializers/shopify_app.rb`



7
8
9
# File 'lib/shopify_app/configuration.rb', line 7

def application_name
  @application_name
end

#disable_webpackerObject

ability to have webpacker installed but not used in this gem and the generators



31
32
33
# File 'lib/shopify_app/configuration.rb', line 31

def disable_webpacker
  @disable_webpacker
end

#embedded_appObject Also known as: embedded_app?

Returns the value of attribute embedded_app.



12
13
14
# File 'lib/shopify_app/configuration.rb', line 12

def embedded_app
  @embedded_app
end

#enable_same_site_noneObject



78
79
80
# File 'lib/shopify_app/configuration.rb', line 78

def enable_same_site_none
  !Rails.env.test? && (@enable_same_site_none.nil? ? embedded_app? : @enable_same_site_none)
end

#login_urlObject



50
51
52
# File 'lib/shopify_app/configuration.rb', line 50

def 
  @login_url || File.join(@root_url, 'login')
end

#myshopify_domainObject

configure myshopify domain for local shopify development



28
29
30
# File 'lib/shopify_app/configuration.rb', line 28

def myshopify_domain
  @myshopify_domain
end

#old_secretObject

Returns the value of attribute old_secret.



10
11
12
# File 'lib/shopify_app/configuration.rb', line 10

def old_secret
  @old_secret
end

#root_urlObject

customise urls



20
21
22
# File 'lib/shopify_app/configuration.rb', line 20

def root_url
  @root_url
end

#scopeObject

Returns the value of attribute scope.



11
12
13
# File 'lib/shopify_app/configuration.rb', line 11

def scope
  @scope
end

#scripttagsObject

Returns the value of attribute scripttags.



15
16
17
# File 'lib/shopify_app/configuration.rb', line 15

def scripttags
  @scripttags
end

#scripttags_manager_queue_nameObject

customise ActiveJob queue names



24
25
26
# File 'lib/shopify_app/configuration.rb', line 24

def scripttags_manager_queue_name
  @scripttags_manager_queue_name
end

#secretObject

Returns the value of attribute secret.



9
10
11
# File 'lib/shopify_app/configuration.rb', line 9

def secret
  @secret
end

#webhook_jobs_namespaceObject

allow namespacing webhook jobs



34
35
36
# File 'lib/shopify_app/configuration.rb', line 34

def webhook_jobs_namespace
  @webhook_jobs_namespace
end

#webhooksObject

Returns the value of attribute webhooks.



14
15
16
# File 'lib/shopify_app/configuration.rb', line 14

def webhooks
  @webhooks
end

#webhooks_manager_queue_nameObject

Returns the value of attribute webhooks_manager_queue_name.



25
26
27
# File 'lib/shopify_app/configuration.rb', line 25

def webhooks_manager_queue_name
  @webhooks_manager_queue_name
end

Instance Method Details

#has_scripttags?Boolean

Returns:

  • (Boolean)


74
75
76
# File 'lib/shopify_app/configuration.rb', line 74

def has_scripttags?
  scripttags.present?
end

#has_webhooks?Boolean

Returns:

  • (Boolean)


70
71
72
# File 'lib/shopify_app/configuration.rb', line 70

def has_webhooks?
  webhooks.present?
end

#shop_session_repositoryObject



66
67
68
# File 'lib/shopify_app/configuration.rb', line 66

def shop_session_repository
  ShopifyApp::SessionRepository.shop_storage
end

#shop_session_repository=(klass) ⇒ Object



62
63
64
# File 'lib/shopify_app/configuration.rb', line 62

def shop_session_repository=(klass)
  ShopifyApp::SessionRepository.shop_storage = klass
end

#user_session_repositoryObject



58
59
60
# File 'lib/shopify_app/configuration.rb', line 58

def user_session_repository
  ShopifyApp::SessionRepository.user_storage
end

#user_session_repository=(klass) ⇒ Object



54
55
56
# File 'lib/shopify_app/configuration.rb', line 54

def user_session_repository=(klass)
  ShopifyApp::SessionRepository.user_storage = klass
end