Sha256: 2588c8454ef88f596ff772b92fe6457cc995d7f19a3c6b8e9fa9af3caf1d8efa
Contents?: true
Size: 1.9 KB
Versions: 95
Compression:
Stored size: 1.9 KB
Contents
require_relative 'analytics_ingester_client' require_relative 'action_launch_context' require_relative 'analytics_event_builder' module FastlaneCore class AnalyticsSession GA_TRACKING = "UA-121171860-1" private_constant :GA_TRACKING attr_accessor :session_id attr_accessor :client def initialize(analytics_ingester_client: AnalyticsIngesterClient.new(GA_TRACKING)) require 'securerandom' @session_id = SecureRandom.uuid @client = analytics_ingester_client @threads = [] @launch_event_sent = false end def action_launched(launch_context: nil) if should_show_message? show_message end if @launch_event_sent || launch_context.p_hash.nil? return end @launch_event_sent = true builder = AnalyticsEventBuilder.new( p_hash: launch_context.p_hash, session_id: session_id, action_name: nil, fastlane_client_language: launch_context.fastlane_client_language ) launch_event = builder.new_event(:launch) post_thread = client.post_event(launch_event) unless post_thread.nil? @threads << post_thread end end def action_completed(completion_context: nil) end def show_message UI.message("Sending anonymous analytics information") UI.message("Learn more at https://docs.fastlane.tools/#metrics") UI.message("No personal or sensitive data is sent.") UI.message("You can disable this by adding `opt_out_usage` at the top of your Fastfile") end def should_show_message? return false if FastlaneCore::Env.truthy?("FASTLANE_OPT_OUT_USAGE") file_name = ".did_show_opt_info" new_path = File.join(FastlaneCore.fastlane_user_dir, file_name) return false if File.exist?(new_path) File.write(new_path, '1') true end def finalize_session @threads.map(&:join) end end end
Version data entries
95 entries across 95 versions & 4 rubygems