namespace.rb 8.4 KB
Newer Older
1
class Namespace < ActiveRecord::Base
2 3
  acts_as_paranoid

4
  include CacheMarkdownField
5
  include Sortable
6
  include Gitlab::ShellAdapter
7
  include Gitlab::CurrentSettings
8
  include Routable
9
  include AfterCommitQueue
10

11 12 13 14 15
  # Prevent users from creating unreasonably deep level of nesting.
  # The number 20 was taken based on maximum nesting level of
  # Android repo (15) + some extra backup.
  NUMBER_OF_ANCESTORS_ALLOWED = 20

16 17
  cache_markdown_field :description, pipeline: :description

18
  has_many :projects, dependent: :destroy
M
Markus Koller 已提交
19
  has_many :project_statistics
20 21
  belongs_to :owner, class_name: "User"

22 23
  belongs_to :parent, class_name: "Namespace"
  has_many :children, class_name: "Namespace", foreign_key: :parent_id
24
  has_one :chat_team, dependent: :destroy
25

26
  validates :owner, presence: true, unless: ->(n) { n.type == "Group" }
27
  validates :name,
28
    presence: true,
29
    uniqueness: { scope: :parent_id },
30 31
    length: { maximum: 255 },
    namespace_name: true
32

33
  validates :description, length: { maximum: 255 }
34
  validates :path,
R
Robert Speicher 已提交
35
    presence: true,
36
    length: { maximum: 255 },
37
    dynamic_path: true
38

39 40
  validate :nesting_level_allowed

41 42
  delegate :name, to: :owner, allow_nil: true, prefix: true

43
  after_update :move_dir, if: :path_changed?
44
  after_commit :refresh_access_of_projects_invited_groups, on: :update, if: -> { previous_changes.key?('share_with_group_lock') }
45 46

  # Save the storage paths before the projects are destroyed to use them on after destroy
47
  before_destroy(prepend: true) { prepare_for_destroy }
48
  after_destroy :rm_dir
49

50 51
  default_scope { with_deleted }

52
  scope :for_user, -> { where('type IS NULL') }
53

M
Markus Koller 已提交
54 55 56 57 58 59 60 61
  scope :with_statistics, -> do
    joins('LEFT JOIN project_statistics ps ON ps.namespace_id = namespaces.id')
      .group('namespaces.id')
      .select(
        'namespaces.*',
        'COALESCE(SUM(ps.storage_size), 0) AS storage_size',
        'COALESCE(SUM(ps.repository_size), 0) AS repository_size',
        'COALESCE(SUM(ps.lfs_objects_size), 0) AS lfs_objects_size',
62
        'COALESCE(SUM(ps.build_artifacts_size), 0) AS build_artifacts_size'
M
Markus Koller 已提交
63 64 65
      )
  end

66 67
  class << self
    def by_path(path)
G
Gabriel Mazetto 已提交
68
      find_by('lower(path) = :value', value: path.downcase)
69 70 71 72 73 74 75
    end

    # Case insensetive search for namespace by path or name
    def find_by_path_or_name(path)
      find_by("lower(path) = :path OR lower(name) = :path", path: path.downcase)
    end

76 77 78 79 80 81 82
    # Searches for namespaces matching the given query.
    #
    # This method uses ILIKE on PostgreSQL and LIKE on MySQL.
    #
    # query - The search query as a String
    #
    # Returns an ActiveRecord::Relation
83
    def search(query)
84 85 86 87
      t = arel_table
      pattern = "%#{query}%"

      where(t[:name].matches(pattern).or(t[:path].matches(pattern)))
88 89 90
    end

    def clean_path(path)
91
      path = path.dup
D
Douwe Maan 已提交
92
      # Get the email username by removing everything after an `@` sign.
93
      path.gsub!(/@.*\z/,                "")
D
Douwe Maan 已提交
94
      # Remove everything that's not in the list of allowed characters.
95 96 97 98 99
      path.gsub!(/[^a-zA-Z0-9_\-\.]/,    "")
      # Remove trailing violations ('.atom', '.git', or '.')
      path.gsub!(/(\.atom|\.git|\.)*\z/, "")
      # Remove leading violations ('-')
      path.gsub!(/\A\-+/,                "")
100

101
      # Users with the great usernames of "." or ".." would end up with a blank username.
102
      # Work around that by setting their username to "blank", followed by a counter.
103 104
      path = "blank" if path.blank?

105
      uniquify = Uniquify.new
106
      uniquify.string(path) { |s| Namespace.find_by_path_or_name(s) }
107
    end
108 109
  end

110
  def to_param
111
    full_path
112
  end
113 114 115 116

  def human_name
    owner_name
  end
117

118
  def move_dir
119
    if any_project_has_container_registry_tags?
120
      raise Gitlab::UpdatePathError.new('Namespace cannot be moved, because at least one project has tags in container registry')
121 122
    end

123 124 125
    # Move the namespace directory in all storages paths used by member projects
    repository_storage_paths.each do |repository_storage_path|
      # Ensure old directory exists before moving it
126
      gitlab_shell.add_namespace(repository_storage_path, full_path_was)
127

128 129
      unless gitlab_shell.mv_namespace(repository_storage_path, full_path_was, full_path)
        Rails.logger.error "Exception moving path #{repository_storage_path} from #{full_path_was} to #{full_path}"
C
Chris Wilson 已提交
130

131 132
        # if we cannot move namespace directory we should rollback
        # db changes in order to prevent out of sync between db and fs
133
        raise Gitlab::UpdatePathError.new('namespace directory cannot be moved')
134
      end
135 136
    end

137 138
    Gitlab::UploadsTransfer.new.rename_namespace(full_path_was, full_path)
    Gitlab::PagesTransfer.new.rename_namespace(full_path_was, full_path)
139

140 141
    remove_exports!

142 143 144 145 146 147 148 149 150 151
    # If repositories moved successfully we need to
    # send update instructions to users.
    # However we cannot allow rollback since we moved namespace dir
    # So we basically we mute exceptions in next actions
    begin
      send_update_instructions
    rescue
      # Returning false does not rollback after_* transaction but gives
      # us information about failing some of tasks
      false
152
    end
153
  end
154

155
  def any_project_has_container_registry_tags?
156
    all_projects.any?(&:has_container_registry_tags?)
157 158
  end

159
  def send_update_instructions
160
    projects.each do |project|
161
      project.send_move_instructions("#{full_path_was}/#{project.path}")
162
    end
163
  end
164 165 166 167

  def kind
    type == 'Group' ? 'group' : 'user'
  end
168 169

  def find_fork_of(project)
G
Gabriel Mazetto 已提交
170
    projects.joins(:forked_project_link).find_by('forked_project_links.forked_from_project_id = ?', project.id)
171
  end
172

173 174 175 176 177
  def lfs_enabled?
    # User namespace will always default to the global setting
    Gitlab.config.lfs.enabled
  end

178 179 180 181
  def shared_runners_enabled?
    projects.with_shared_runners.any?
  end

182
  # Returns all the ancestors of the current namespaces.
183
  def ancestors
184
    return self.class.none unless parent_id
185

186 187 188
    Gitlab::GroupHierarchy
      .new(self.class.where(id: parent_id))
      .base_and_ancestors
189 190
  end

191
  # Returns all the descendants of the current namespace.
192
  def descendants
193 194 195
    Gitlab::GroupHierarchy
      .new(self.class.where(parent_id: id))
      .base_and_descendants
196 197
  end

198 199 200 201
  def user_ids_for_project_authorizations
    [owner_id]
  end

202 203 204 205
  def parent_changed?
    parent_id_changed?
  end

206 207 208 209 210 211 212 213
  def prepare_for_destroy
    old_repository_storage_paths
  end

  def old_repository_storage_paths
    @old_repository_storage_paths ||= repository_storage_paths
  end

214 215 216 217 218 219
  # Includes projects from this namespace and projects from all subgroups
  # that belongs to this namespace
  def all_projects
    Project.inside_path(full_path)
  end

220 221 222 223
  def has_parent?
    parent.present?
  end

224 225 226 227 228 229 230
  private

  def repository_storage_paths
    # We need to get the storage paths for all the projects, even the ones that are
    # pending delete. Unscoping also get rids of the default order, which causes
    # problems with SELECT DISTINCT.
    Project.unscoped do
231
      all_projects.select('distinct(repository_storage)').to_a.map(&:repository_storage_path)
232 233 234 235 236
    end
  end

  def rm_dir
    # Remove the namespace directory in all storages paths used by member projects
237
    old_repository_storage_paths.each do |repository_storage_path|
238 239
      # Move namespace directory into trash.
      # We will remove it later async
240
      new_path = "#{full_path}+#{id}+deleted"
241

242 243
      if gitlab_shell.mv_namespace(repository_storage_path, full_path, new_path)
        message = "Namespace directory \"#{full_path}\" moved to \"#{new_path}\""
244 245 246 247
        Gitlab::AppLogger.info message

        # Remove namespace directroy async with delay so
        # GitLab has time to remove all projects first
248 249 250
        run_after_commit do
          GitlabShellWorker.perform_in(5.minutes, :rm_namespace, repository_storage_path, new_path)
        end
251 252
      end
    end
253 254

    remove_exports!
255
  end
256 257

  def refresh_access_of_projects_invited_groups
258 259 260 261
    Group
      .joins(project_group_links: :project)
      .where(projects: { namespace_id: id })
      .find_each(&:refresh_members_authorized_projects)
262
  end
263

264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
  def remove_exports!
    Gitlab::Popen.popen(%W(find #{export_path} -not -path #{export_path} -delete))
  end

  def export_path
    File.join(Gitlab::ImportExport.storage_path, full_path_was)
  end

  def full_path_was
    if parent
      parent.full_path + '/' + path_was
    else
      path_was
    end
  end
279 280 281 282 283 284

  def nesting_level_allowed
    if ancestors.count > Group::NUMBER_OF_ANCESTORS_ALLOWED
      errors.add(:parent_id, "has too deep level of nesting")
    end
  end
285
end