summaryrefslogtreecommitdiff
path: root/lib/gitlab/tracking/standard_context.rb
blob: 92fdd008249301ab33d51f8d55be86d65cdf3fea (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
# frozen_string_literal: true

module Gitlab
  module Tracking
    class StandardContext
      GITLAB_STANDARD_SCHEMA_URL = 'iglu:com.gitlab/gitlab_standard/jsonschema/1-0-3'.freeze
      GITLAB_RAILS_SOURCE = 'gitlab-rails'.freeze

      def initialize(namespace: nil, project: nil, user: nil, **data)
        @data = data
      end

      def to_context
        SnowplowTracker::SelfDescribingJson.new(GITLAB_STANDARD_SCHEMA_URL, to_h)
      end

      def environment
        return 'production' if Gitlab.com_and_canary?

        return 'staging' if Gitlab.staging?

        'development'
      end

      def source
        GITLAB_RAILS_SOURCE
      end

      private

      def to_h
        {
          environment: environment,
          source: source
        }.merge(@data)
      end
    end
  end
end