2012-11-22 13:34:16 -05:00
|
|
|
class Namespace < ActiveRecord::Base
|
2016-05-28 22:54:17 -04:00
|
|
|
acts_as_paranoid
|
|
|
|
|
2016-10-06 17:17:11 -04:00
|
|
|
include CacheMarkdownField
|
2015-02-05 17:20:55 -05:00
|
|
|
include Sortable
|
2013-03-21 16:11:08 -04:00
|
|
|
include Gitlab::ShellAdapter
|
2017-01-20 06:25:53 -05:00
|
|
|
include Gitlab::CurrentSettings
|
2016-10-31 07:00:53 -04:00
|
|
|
include Routable
|
2013-03-21 16:11:08 -04:00
|
|
|
|
2017-02-06 10:16:50 -05:00
|
|
|
# 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
|
|
|
|
|
2016-10-06 17:17:11 -04:00
|
|
|
cache_markdown_field :description, pipeline: :description
|
|
|
|
|
2012-11-23 13:11:09 -05:00
|
|
|
has_many :projects, dependent: :destroy
|
2016-11-22 11:58:10 -05:00
|
|
|
has_many :project_statistics
|
2012-11-22 13:34:16 -05:00
|
|
|
belongs_to :owner, class_name: "User"
|
|
|
|
|
2016-10-31 07:00:53 -04:00
|
|
|
belongs_to :parent, class_name: "Namespace"
|
|
|
|
has_many :children, class_name: "Namespace", foreign_key: :parent_id
|
2017-02-20 07:41:50 -05:00
|
|
|
has_one :chat_team, dependent: :destroy
|
2016-10-31 07:00:53 -04:00
|
|
|
|
2013-09-26 07:49:22 -04:00
|
|
|
validates :owner, presence: true, unless: ->(n) { n.type == "Group" }
|
2015-02-03 00:15:44 -05:00
|
|
|
validates :name,
|
2015-12-07 16:17:24 -05:00
|
|
|
presence: true,
|
2016-12-07 12:15:26 -05:00
|
|
|
uniqueness: { scope: :parent_id },
|
2016-12-02 07:54:57 -05:00
|
|
|
length: { maximum: 255 },
|
|
|
|
namespace_name: true
|
2015-02-03 00:15:44 -05:00
|
|
|
|
2016-12-02 07:54:57 -05:00
|
|
|
validates :description, length: { maximum: 255 }
|
2015-02-03 00:15:44 -05:00
|
|
|
validates :path,
|
2015-12-07 16:17:12 -05:00
|
|
|
presence: true,
|
2016-12-02 07:54:57 -05:00
|
|
|
length: { maximum: 255 },
|
|
|
|
namespace: true
|
2012-11-22 13:34:16 -05:00
|
|
|
|
2017-02-06 10:16:50 -05:00
|
|
|
validate :nesting_level_allowed
|
|
|
|
|
2012-11-22 13:34:16 -05:00
|
|
|
delegate :name, to: :owner, allow_nil: true, prefix: true
|
|
|
|
|
2013-03-21 16:11:08 -04:00
|
|
|
after_update :move_dir, if: :path_changed?
|
2016-11-21 08:33:58 -05:00
|
|
|
after_commit :refresh_access_of_projects_invited_groups, on: :update, if: -> { previous_changes.key?('share_with_group_lock') }
|
2016-06-22 17:04:51 -04:00
|
|
|
|
|
|
|
# Save the storage paths before the projects are destroyed to use them on after destroy
|
2017-02-16 02:50:05 -05:00
|
|
|
before_destroy(prepend: true) { prepare_for_destroy }
|
2012-11-21 00:54:05 -05:00
|
|
|
after_destroy :rm_dir
|
2012-11-23 01:11:09 -05:00
|
|
|
|
2013-02-12 02:16:45 -05:00
|
|
|
scope :root, -> { where('type IS NULL') }
|
2012-11-22 23:24:09 -05:00
|
|
|
|
2016-11-22 11:58:10 -05:00
|
|
|
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',
|
|
|
|
'COALESCE(SUM(ps.build_artifacts_size), 0) AS build_artifacts_size',
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2015-03-24 09:53:30 -04:00
|
|
|
class << self
|
|
|
|
def by_path(path)
|
2015-12-14 21:53:52 -05:00
|
|
|
find_by('lower(path) = :value', value: path.downcase)
|
2015-03-24 09:53:30 -04:00
|
|
|
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
|
|
|
|
|
2016-03-04 06:06:25 -05:00
|
|
|
# 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
|
2015-03-24 09:53:30 -04:00
|
|
|
def search(query)
|
2016-03-04 06:06:25 -05:00
|
|
|
t = arel_table
|
|
|
|
pattern = "%#{query}%"
|
|
|
|
|
|
|
|
where(t[:name].matches(pattern).or(t[:path].matches(pattern)))
|
2015-03-24 09:53:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def clean_path(path)
|
2015-04-17 06:03:54 -04:00
|
|
|
path = path.dup
|
2015-04-21 09:49:16 -04:00
|
|
|
# Get the email username by removing everything after an `@` sign.
|
2016-08-25 12:48:08 -04:00
|
|
|
path.gsub!(/@.*\z/, "")
|
2015-04-21 09:49:16 -04:00
|
|
|
# Remove everything that's not in the list of allowed characters.
|
2016-08-25 12:48:08 -04:00
|
|
|
path.gsub!(/[^a-zA-Z0-9_\-\.]/, "")
|
|
|
|
# Remove trailing violations ('.atom', '.git', or '.')
|
|
|
|
path.gsub!(/(\.atom|\.git|\.)*\z/, "")
|
|
|
|
# Remove leading violations ('-')
|
|
|
|
path.gsub!(/\A\-+/, "")
|
2015-03-24 09:53:30 -04:00
|
|
|
|
2015-04-21 06:00:08 -04:00
|
|
|
# Users with the great usernames of "." or ".." would end up with a blank username.
|
2015-06-03 08:57:12 -04:00
|
|
|
# Work around that by setting their username to "blank", followed by a counter.
|
2015-04-21 06:00:08 -04:00
|
|
|
path = "blank" if path.blank?
|
|
|
|
|
2017-02-03 07:55:50 -05:00
|
|
|
uniquify = Uniquify.new
|
2017-02-16 02:05:10 -05:00
|
|
|
uniquify.string(path) { |s| Namespace.find_by_path_or_name(s) }
|
2015-03-24 09:53:30 -04:00
|
|
|
end
|
2012-11-27 01:31:15 -05:00
|
|
|
end
|
|
|
|
|
2012-11-22 13:34:16 -05:00
|
|
|
def to_param
|
2016-10-31 07:00:53 -04:00
|
|
|
full_path
|
2012-11-22 13:34:16 -05:00
|
|
|
end
|
2012-11-22 23:11:09 -05:00
|
|
|
|
|
|
|
def human_name
|
|
|
|
owner_name
|
|
|
|
end
|
2012-11-23 01:11:09 -05:00
|
|
|
|
2012-11-24 15:11:46 -05:00
|
|
|
def move_dir
|
2016-05-09 15:41:48 -04:00
|
|
|
if any_project_has_container_registry_tags?
|
2016-12-20 11:52:27 -05:00
|
|
|
raise Gitlab::UpdatePathError.new('Namespace cannot be moved, because at least one project has tags in container registry')
|
2016-05-09 15:41:48 -04:00
|
|
|
end
|
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
# 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
|
2017-03-28 13:27:44 -04:00
|
|
|
gitlab_shell.add_namespace(repository_storage_path, full_path_was)
|
2016-06-22 17:04:51 -04:00
|
|
|
|
2017-03-28 13:27:44 -04:00
|
|
|
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}"
|
2016-11-24 00:36:15 -05:00
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
# if we cannot move namespace directory we should rollback
|
|
|
|
# db changes in order to prevent out of sync between db and fs
|
2016-12-20 11:52:27 -05:00
|
|
|
raise Gitlab::UpdatePathError.new('namespace directory cannot be moved')
|
2012-12-20 15:16:51 -05:00
|
|
|
end
|
2016-06-22 17:04:51 -04:00
|
|
|
end
|
|
|
|
|
2017-03-28 13:27:44 -04:00
|
|
|
Gitlab::UploadsTransfer.new.rename_namespace(full_path_was, full_path)
|
|
|
|
Gitlab::PagesTransfer.new.rename_namespace(full_path_was, full_path)
|
2016-06-22 17:04:51 -04:00
|
|
|
|
2017-01-04 14:13:29 -05:00
|
|
|
remove_exports!
|
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
# 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
|
2012-11-27 01:31:15 -05:00
|
|
|
end
|
2012-11-24 15:11:46 -05:00
|
|
|
end
|
2012-11-21 00:54:05 -05:00
|
|
|
|
2016-05-09 15:41:48 -04:00
|
|
|
def any_project_has_container_registry_tags?
|
2017-04-03 11:48:17 -04:00
|
|
|
all_projects.any?(&:has_container_registry_tags?)
|
2016-05-09 15:41:48 -04:00
|
|
|
end
|
|
|
|
|
2012-12-20 15:16:51 -05:00
|
|
|
def send_update_instructions
|
2015-09-29 09:37:50 -04:00
|
|
|
projects.each do |project|
|
2017-03-28 13:27:44 -04:00
|
|
|
project.send_move_instructions("#{full_path_was}/#{project.path}")
|
2015-09-29 09:37:50 -04:00
|
|
|
end
|
2012-12-20 15:16:51 -05:00
|
|
|
end
|
2013-11-15 08:25:37 -05:00
|
|
|
|
|
|
|
def kind
|
|
|
|
type == 'Group' ? 'group' : 'user'
|
|
|
|
end
|
2014-11-14 09:06:39 -05:00
|
|
|
|
|
|
|
def find_fork_of(project)
|
2015-12-14 21:53:52 -05:00
|
|
|
projects.joins(:forked_project_link).find_by('forked_project_links.forked_from_project_id = ?', project.id)
|
2014-11-14 09:06:39 -05:00
|
|
|
end
|
2016-06-22 17:04:51 -04:00
|
|
|
|
2016-09-01 19:49:48 -04:00
|
|
|
def lfs_enabled?
|
|
|
|
# User namespace will always default to the global setting
|
|
|
|
Gitlab.config.lfs.enabled
|
|
|
|
end
|
|
|
|
|
2017-01-20 06:25:53 -05:00
|
|
|
def shared_runners_enabled?
|
|
|
|
projects.with_shared_runners.any?
|
|
|
|
end
|
|
|
|
|
2017-01-05 07:43:50 -05:00
|
|
|
# Scopes the model on ancestors of the record
|
|
|
|
def ancestors
|
|
|
|
if parent_id
|
2017-02-06 10:16:50 -05:00
|
|
|
path = route ? route.path : full_path
|
2017-01-05 07:43:50 -05:00
|
|
|
paths = []
|
|
|
|
|
|
|
|
until path.blank?
|
|
|
|
path = path.rpartition('/').first
|
|
|
|
paths << path
|
|
|
|
end
|
|
|
|
|
2017-01-05 12:20:12 -05:00
|
|
|
self.class.joins(:route).where('routes.path IN (?)', paths).reorder('routes.path ASC')
|
2017-01-05 07:43:50 -05:00
|
|
|
else
|
|
|
|
self.class.none
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Scopes the model on direct and indirect children of the record
|
|
|
|
def descendants
|
2017-03-21 12:04:12 -04:00
|
|
|
self.class.joins(:route).merge(Route.inside_path(route.path)).reorder('routes.path ASC')
|
2016-12-08 11:30:11 -05:00
|
|
|
end
|
|
|
|
|
2017-02-07 08:55:42 -05:00
|
|
|
def user_ids_for_project_authorizations
|
|
|
|
[owner_id]
|
|
|
|
end
|
|
|
|
|
2017-02-04 13:26:11 -05:00
|
|
|
def parent_changed?
|
|
|
|
parent_id_changed?
|
|
|
|
end
|
|
|
|
|
2017-02-16 02:50:05 -05:00
|
|
|
def prepare_for_destroy
|
|
|
|
old_repository_storage_paths
|
|
|
|
end
|
|
|
|
|
|
|
|
def old_repository_storage_paths
|
|
|
|
@old_repository_storage_paths ||= repository_storage_paths
|
|
|
|
end
|
|
|
|
|
2017-04-03 11:48:17 -04:00
|
|
|
# Includes projects from this namespace and projects from all subgroups
|
|
|
|
# that belongs to this namespace
|
|
|
|
def all_projects
|
|
|
|
Project.inside_path(full_path)
|
|
|
|
end
|
|
|
|
|
2016-06-22 17:04:51 -04:00
|
|
|
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
|
2017-04-03 11:48:17 -04:00
|
|
|
all_projects.select('distinct(repository_storage)').to_a.map(&:repository_storage_path)
|
2016-06-22 17:04:51 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def rm_dir
|
|
|
|
# Remove the namespace directory in all storages paths used by member projects
|
2017-02-16 02:50:05 -05:00
|
|
|
old_repository_storage_paths.each do |repository_storage_path|
|
2016-06-22 17:04:51 -04:00
|
|
|
# Move namespace directory into trash.
|
|
|
|
# We will remove it later async
|
2017-03-28 13:27:44 -04:00
|
|
|
new_path = "#{full_path}+#{id}+deleted"
|
2016-06-22 17:04:51 -04:00
|
|
|
|
2017-03-28 13:27:44 -04:00
|
|
|
if gitlab_shell.mv_namespace(repository_storage_path, full_path, new_path)
|
|
|
|
message = "Namespace directory \"#{full_path}\" moved to \"#{new_path}\""
|
2016-06-22 17:04:51 -04:00
|
|
|
Gitlab::AppLogger.info message
|
|
|
|
|
|
|
|
# Remove namespace directroy async with delay so
|
|
|
|
# GitLab has time to remove all projects first
|
|
|
|
GitlabShellWorker.perform_in(5.minutes, :rm_namespace, repository_storage_path, new_path)
|
|
|
|
end
|
|
|
|
end
|
2017-01-04 14:13:29 -05:00
|
|
|
|
|
|
|
remove_exports!
|
2016-06-22 17:04:51 -04:00
|
|
|
end
|
2016-11-21 08:33:58 -05:00
|
|
|
|
|
|
|
def refresh_access_of_projects_invited_groups
|
|
|
|
Group.
|
|
|
|
joins(project_group_links: :project).
|
|
|
|
where(projects: { namespace_id: id }).
|
|
|
|
find_each(&:refresh_members_authorized_projects)
|
|
|
|
end
|
2016-10-31 07:00:53 -04:00
|
|
|
|
2017-01-04 14:13:29 -05:00
|
|
|
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
|
2017-02-06 10:16:50 -05:00
|
|
|
|
|
|
|
def nesting_level_allowed
|
|
|
|
if ancestors.count > Group::NUMBER_OF_ANCESTORS_ALLOWED
|
|
|
|
errors.add(:parent_id, "has too deep level of nesting")
|
|
|
|
end
|
|
|
|
end
|
2012-11-22 13:34:16 -05:00
|
|
|
end
|