Class: Stealth::Services::Facebook::Client
- Inherits:
-
BaseClient
- Object
- BaseClient
- Stealth::Services::Facebook::Client
- Defined in:
- lib/stealth/services/facebook/client.rb
Constant Summary collapse
- FB_ENDPOINT =
if ENV['FACEBOOK_API_VERSION'].present? "https://graph.facebook.com/v#{ENV['FACEBOOK_API_VERSION']}/me" else "https://graph.facebook.com/v3.2/me" end
Instance Attribute Summary collapse
-
#api_endpoint ⇒ Object
readonly
Returns the value of attribute api_endpoint.
-
#reply ⇒ Object
readonly
Returns the value of attribute reply.
Class Method Summary collapse
- .fetch_profile(recipient_id:, fields: nil) ⇒ Object
- .http_client ⇒ Object
- .track(recipient_id:, metric:, value:, options: {}) ⇒ Object
Instance Method Summary collapse
-
#initialize(reply:, endpoint: 'messages') ⇒ Client
constructor
A new instance of Client.
- #transmit ⇒ Object
Constructor Details
#initialize(reply:, endpoint: 'messages') ⇒ Client
Returns a new instance of Client.
23 24 25 26 27 |
# File 'lib/stealth/services/facebook/client.rb', line 23 def initialize(reply:, endpoint: 'messages') @reply = reply access_token = "access_token=#{Stealth.config.facebook.page_access_token}" @api_endpoint = [[FB_ENDPOINT, endpoint].join('/'), access_token].join('?') end |
Instance Attribute Details
#api_endpoint ⇒ Object (readonly)
Returns the value of attribute api_endpoint.
21 22 23 |
# File 'lib/stealth/services/facebook/client.rb', line 21 def api_endpoint @api_endpoint end |
#reply ⇒ Object (readonly)
Returns the value of attribute reply.
21 22 23 |
# File 'lib/stealth/services/facebook/client.rb', line 21 def reply @reply end |
Class Method Details
.fetch_profile(recipient_id:, fields: nil) ⇒ Object
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 |
# File 'lib/stealth/services/facebook/client.rb', line 60 def self.fetch_profile(recipient_id:, fields: nil) if fields.blank? fields = [:id, :name, :first_name, :last_name, :profile_pic] end query_hash = { fields: fields.join(','), access_token: Stealth.config.facebook.page_access_token } uri = URI::HTTPS.build( host: "graph.facebook.com", path: "/#{recipient_id}", query: query_hash.to_query ) res = http_client.get(uri.to_s) Stealth::Logger.l(topic: 'facebook', message: "Requested user profile for #{recipient_id}. Response: #{res.status.code}: #{res.body}" ) if res.status.success? MultiJson.load(res.body.to_s) else raise( Stealth::Errors::ServiceError, "Facebook error #{res.status}: #{res.body}" ) end end |
.http_client ⇒ Object
53 54 55 56 57 58 |
# File 'lib/stealth/services/facebook/client.rb', line 53 def self.http_client headers = { 'Content-Type' => 'application/json' } HTTP.timeout(connect: 15, read: 60).headers(headers) end |
.track(recipient_id:, metric:, value:, options: {}) ⇒ Object
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 |
# File 'lib/stealth/services/facebook/client.rb', line 92 def self.track(recipient_id:, metric:, value:, options: {}) metric_values = [{ '_eventName' => metric, '_valueToSum' => value }] metric_values.first.merge!() params = { event: 'CUSTOM_APP_EVENTS', custom_events: MultiJson.dump(metric_values), advertiser_tracking_enabled: 1, application_tracking_enabled: 1, extinfo: MultiJson.dump(['mb1']), page_scoped_user_id: recipient_id, page_id: Stealth.config.facebook.page_id } uri = URI::HTTPS.build( host: "graph.facebook.com", path: "/#{Stealth.config.facebook.app_id}/activities" ) res = http_client.post(uri.to_s, body: MultiJson.dump(params)) Stealth::Logger.l( topic: "facebook", message: "Sent custom event for metric: #{metric} and value: #{value}. Response: #{res.status}: #{res.body}" ) if res.status.success? MultiJson.load(res.body.to_s) else raise( Stealth::Errors::ServiceError, "Facebook error #{res.status}: #{res.body}" ) end end |
Instance Method Details
#transmit ⇒ Object
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/stealth/services/facebook/client.rb', line 29 def transmit res = self .class .http_client .post(api_endpoint, body: MultiJson.dump(reply)) if res.status.client_error? # HTTP 4xx error # Messenger error sub-codes (https://developers.facebook.com/docs/messenger-platform/reference/send-api/error-codes) case res.body when /1545041/ raise Stealth::Errors::UserOptOut when /2018108/ raise Stealth::Errors::UserOptOut when /2018028/ raise Stealth::Errors::InvalidSessionID.new('Cannot message users who are not admins, developers or testers of the app until pages_messaging permission is reviewed and the app is live.') end end Stealth::Logger.l( topic: "facebook", message: "Transmitted. Response: #{res.status.code}: #{res.body}" ) end |