Class: ActionNetworkRest::Client
- Inherits:
-
Vertebrae::API
- Object
- Vertebrae::API
- ActionNetworkRest::Client
- Defined in:
- lib/action_network_rest/client.rb
Instance Attribute Summary collapse
-
#api_key ⇒ Object
Returns the value of attribute api_key.
Instance Method Summary collapse
- #default_options ⇒ Object
- #entry_point ⇒ Object
- #event_campaigns(event_campaign_id = nil) ⇒ Object
-
#events(event_id = nil) ⇒ Object
Helpers to let users do things like ‘an_client.people.create(params)`.
- #extract_data_from_params(params) ⇒ Object
-
#initialize(options = {}, &block) ⇒ Client
constructor
A new instance of Client.
- #people ⇒ Object
- #petitions(petition_id = nil) ⇒ Object
- #tags(tag_id = nil) ⇒ Object
Constructor Details
#initialize(options = {}, &block) ⇒ Client
7 8 9 10 |
# File 'lib/action_network_rest/client.rb', line 7 def initialize( = {}, &block) self.api_key = [:api_key] super(, &block) end |
Instance Attribute Details
#api_key ⇒ Object
Returns the value of attribute api_key.
5 6 7 |
# File 'lib/action_network_rest/client.rb', line 5 def api_key @api_key end |
Instance Method Details
#default_options ⇒ Object
12 13 14 15 16 17 18 19 20 |
# File 'lib/action_network_rest/client.rb', line 12 def { host: 'actionnetwork.org', prefix: '/api/v2', content_type: 'application/json', additional_headers: { 'OSDI-API-Token' => api_key }, user_agent: 'ruby: ActionNetworkRest' } end |
#entry_point ⇒ Object
48 49 50 |
# File 'lib/action_network_rest/client.rb', line 48 def entry_point @_entry_point ||= ActionNetworkRest::EntryPoint.new(client: self) end |
#event_campaigns(event_campaign_id = nil) ⇒ Object
38 39 40 41 42 43 44 45 46 |
# File 'lib/action_network_rest/client.rb', line 38 def event_campaigns(event_campaign_id = nil) if @_event_campaigns&.send(:[], event_campaign_id).nil? @_event_campaigns = {} if @_event_campaigns.nil? @_event_campaigns[event_campaign_id] = ActionNetworkRest::EventCampaigns.new(event_campaign_id, client: self) end @_event_campaigns[event_campaign_id] end |
#events(event_id = nil) ⇒ Object
Helpers to let users do things like ‘an_client.people.create(params)`
28 29 30 31 32 33 34 35 36 |
# File 'lib/action_network_rest/client.rb', line 28 def events(event_id = nil) if @_events&.send(:[], event_id).nil? @_events = {} if @_events.nil? @_events[event_id] = ActionNetworkRest::Events.new(event_id: event_id, client: self) end @_events[event_id] end |
#extract_data_from_params(params) ⇒ Object
22 23 24 |
# File 'lib/action_network_rest/client.rb', line 22 def extract_data_from_params(params) params.to_json end |
#people ⇒ Object
52 53 54 |
# File 'lib/action_network_rest/client.rb', line 52 def people @_people ||= ActionNetworkRest::People.new(client: self) end |
#petitions(petition_id = nil) ⇒ Object
56 57 58 59 60 61 62 63 64 |
# File 'lib/action_network_rest/client.rb', line 56 def petitions(petition_id = nil) if @_petitions&.send(:[], petition_id).nil? @_petitions = {} if @_petitions.nil? @_petitions[petition_id] = ActionNetworkRest::Petitions.new(petition_id, client: self) end @_petitions[petition_id] end |
#tags(tag_id = nil) ⇒ Object
66 67 68 69 70 71 72 73 74 |
# File 'lib/action_network_rest/client.rb', line 66 def (tag_id = nil) if &.send(:[], tag_id).nil? = {} if .nil? [tag_id] = ActionNetworkRest::Tags.new(tag_id, client: self) end [tag_id] end |