docbrown/app/controllers/ga_events_controller.rb
Mac Siri 40f488d991 Migrate to Travis CI (part 2) (#591)
* Update Travis.yml

* Update README

* Update README

* Adjust test to not rely on env vars

* Update encryption

* Refactor

* Update env key

* Stub AWS calls

* Create ApplicationConfig

* Fix specs

* Fix lint

* Update ApplicationConfig

* Remove travis env vars

* Fix lint

* Extend character limit to 100

* Add env to travis

* Take out auto-restart after deploy

* Immediately discarded test cache

* Stub GA in request specs

* Stub Pusher

* Fix broken specs

* Update fixture

* Add CodeClimate id

* Change CodeClimate key

* Remove merge mistakes

* WIP

* Add Envied gem & Change README

* Add missing keys

* Add missing key

* Update fixture

* Fix broken spec

* Add Slack Notification for Travis

* Fix wording

* Fix typo
2018-07-20 20:17:18 -04:00

40 lines
1.5 KiB
Ruby

class GaEventsController < ApplicationController
# No authorization required for entirely public controller
# This controller is for tracking activity when GA script fails
# IP is scrambled as to not be persisted to limit fingerprinting abilities on our end.
def create
json = JSON.parse(request.raw_post)
user_id = user_signed_in? ? current_user.id : nil
client_id = "#{scrambled_ip[0..12]}_#{json['user_agent']}_#{user_id}"
tracker = Staccato.tracker(ApplicationConfig["GA_TRACKING_ID"], client_id)
tracker.pageview(
path: json["path"],
user_id: user_id,
user_language: json["user_language"],
referrer: (json["referrer"] if json["referrer"] && !json["referrer"].start_with?("https://dev.to")),
user_agent: json["user_agent"],
viewport_size: json["viewport_size"],
screen_resolution: json["screen_resolution"],
document_title: json["document_title"],
document_encoding: json["document_encoding"],
document_path: json["document_path"],
cache_buster: rand(100000000000).to_s,
data_source: "web",
)
logger.info("Server-Side Google Analytics Tracking - #{client_id}")
render body: nil
end
def scrambled_ip
crypt = ActiveSupport::MessageEncryptor.new(todays_key)
crypt.encrypt_and_sign(request.env["HTTP_X_FORWARDED_FOR"] || request.remote_ip)
end
def todays_key
Rails.cache.fetch("daily_random_key", expires_in: 48.hours) do
SecureRandom.random_bytes(32)
end
end
end