Class: SystemCheck::App::ProjectsHaveNamespaceCheck

Inherits:
BaseCheck
  • Object
show all
Defined in:
lib/system_check/app/projects_have_namespace_check.rb

Instance Attribute Summary

Attributes inherited from BaseCheck

#skip_reason

Instance Method Summary collapse

Methods inherited from BaseCheck

#can_repair?, #can_skip?, #check?, check_fail, check_pass, display_name, #multi_check?, #repair!, set_check_fail, set_check_pass, set_name, set_skip_reason, skip_reason

Methods included from Helpers

#finished_checking, #fix_and_rerun, #for_more_information, #omnibus_gitlab?, #sanitized_message, #see_installation_guide_section, #should_sanitize?, #start_checking, #sudo_gitlab, #try_fixing_it

Methods included from Gitlab::TaskHelpers

#ask_to_continue, #checkout_or_clone_version, #checkout_version, #clone_repo, #get_version, #gid_for, #gitlab_user, #gitlab_user?, #invoke_and_time_task, #os_name, #prompt, #prompt_for_password, #repository_storage_paths_args, #run_and_match, #run_command, #run_command!, #uid_for, #user_home, #warn_user_is_not_gitlab

Instance Method Details

#multi_checkObject



13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/system_check/app/projects_have_namespace_check.rb', line 13

def multi_check
  $stdout.puts ''

  Project.find_each(batch_size: 100) do |project|
    $stdout.print sanitized_message(project)

    if project.namespace
      $stdout.puts 'yes'.color(:green)
    else
      $stdout.puts 'no'.color(:red)
      show_error
    end
  end
end

#show_errorObject



28
29
30
31
32
33
34
35
36
# File 'lib/system_check/app/projects_have_namespace_check.rb', line 28

def show_error
  try_fixing_it(
    "Migrate global projects"
  )
  for_more_information(
    "doc/update/5.4-to-6.0.md in section \"#global-projects\""
  )
  fix_and_rerun
end

#skip?Boolean

Returns:

  • (Boolean)


9
10
11
# File 'lib/system_check/app/projects_have_namespace_check.rb', line 9

def skip?
  !Project.exists?
end