Welcome to mirror list, hosted at ThFree Co, Russian Federation.

weak_password_error_event.rb « helpers « tracking « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: beb6119e3f7a74285e5ec2da6713834cdd1bd086 (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
# frozen_string_literal: true

module Gitlab
  module Tracking
    module Helpers
      module WeakPasswordErrorEvent
        # Tracks information if a user record has a weak password.
        # No-op unless the error is present.
        #
        # Captures a minimal set of information, so that GitLab
        # remains unaware of which users / demographics are attempting
        # to choose weak passwords.
        def track_weak_password_error(user, controller, method_name)
          return unless user.errors[:password].grep(/must not contain commonly used combinations.*/).any?

          Gitlab::Tracking.event(
            'Gitlab::Tracking::Helpers::WeakPasswordErrorEvent',
            'track_weak_password_error',
            controller: controller,
            method: method_name
          )
        end
      end
    end
  end
end