summaryrefslogtreecommitdiff
path: root/lib/product_analytics/collector_app.rb
blob: 1008d2f264c5e91e9f5657fd97f2e2ef297be3d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
40
# frozen_string_literal: true

module ProductAnalytics
  class CollectorApp
    def call(env)
      request = Rack::Request.new(env)
      params = request.params

      return not_found unless EventParams.has_required_params?(params)

      # Product analytics feature is behind a flag and is disabled by default.
      # We expect limited amount of projects with this feature enabled in first release.
      # Since collector has no authentication we temporary prevent recording of events
      # for project without the feature enabled. During increase of feature adoption, this
      # check will be removed for better performance.
      project = Project.find(params['aid'].to_i)
      return not_found unless Feature.enabled?(:product_analytics, project)

      # Snowplow tracker has own format of events.
      # We need to convert them to match the schema of our database.
      event_params = EventParams.parse_event_params(params)

      if ProductAnalyticsEvent.create(event_params)
        ok
      else
        not_found
      end
    rescue ActiveRecord::InvalidForeignKey, ActiveRecord::RecordNotFound
      not_found
    end

    def ok
      [200, {}, []]
    end

    def not_found
      [404, {}, []]
    end
  end
end