debian-mirror-gitlab/app/models/namespace.rb

179 lines
5.4 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
class Namespace < ActiveRecord::Base
2016-09-13 17:45:13 +05:30
acts_as_paranoid
2016-11-03 12:29:30 +05:30
include CacheMarkdownField
2015-04-26 12:48:37 +05:30
include Sortable
2014-09-02 18:07:02 +05:30
include Gitlab::ShellAdapter
2016-11-03 12:29:30 +05:30
cache_markdown_field :description, pipeline: :description
2014-09-02 18:07:02 +05:30
has_many :projects, dependent: :destroy
belongs_to :owner, class_name: "User"
validates :owner, presence: true, unless: ->(n) { n.type == "Group" }
2015-04-26 12:48:37 +05:30
validates :name,
length: { within: 0..255 },
2015-12-23 02:04:40 +05:30
namespace_name: true,
presence: true,
uniqueness: true
2015-04-26 12:48:37 +05:30
2014-09-02 18:07:02 +05:30
validates :description, length: { within: 0..255 }
2015-04-26 12:48:37 +05:30
validates :path,
length: { within: 1..255 },
2015-12-23 02:04:40 +05:30
namespace: true,
presence: true,
uniqueness: { case_sensitive: false }
2014-09-02 18:07:02 +05:30
delegate :name, to: :owner, allow_nil: true, prefix: true
after_update :move_dir, if: :path_changed?
2016-08-24 12:49:21 +05:30
# Save the storage paths before the projects are destroyed to use them on after destroy
before_destroy(prepend: true) { @old_repository_storage_paths = repository_storage_paths }
2014-09-02 18:07:02 +05:30
after_destroy :rm_dir
scope :root, -> { where('type IS NULL') }
2015-04-26 12:48:37 +05:30
class << self
def by_path(path)
2015-12-23 02:04:40 +05:30
find_by('lower(path) = :value', value: path.downcase)
2015-04-26 12:48:37 +05:30
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-06-02 11:05:42 +05:30
# 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-04-26 12:48:37 +05:30
def search(query)
2016-06-02 11:05:42 +05:30
t = arel_table
pattern = "%#{query}%"
where(t[:name].matches(pattern).or(t[:path].matches(pattern)))
2015-04-26 12:48:37 +05:30
end
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
def clean_path(path)
path = path.dup
2015-09-11 14:41:01 +05:30
# Get the email username by removing everything after an `@` sign.
2016-11-03 12:29:30 +05:30
path.gsub!(/@.*\z/, "")
2015-09-11 14:41:01 +05:30
# Remove everything that's not in the list of allowed characters.
2016-11-03 12:29:30 +05:30
path.gsub!(/[^a-zA-Z0-9_\-\.]/, "")
# Remove trailing violations ('.atom', '.git', or '.')
path.gsub!(/(\.atom|\.git|\.)*\z/, "")
# Remove leading violations ('-')
path.gsub!(/\A\-+/, "")
2015-04-26 12:48:37 +05:30
2015-09-11 14:41:01 +05:30
# Users with the great usernames of "." or ".." would end up with a blank username.
# Work around that by setting their username to "blank", followed by a counter.
path = "blank" if path.blank?
2015-04-26 12:48:37 +05:30
counter = 0
base = path
2015-09-11 14:41:01 +05:30
while Namespace.find_by_path_or_name(path)
2015-04-26 12:48:37 +05:30
counter += 1
path = "#{base}#{counter}"
end
path
end
2014-09-02 18:07:02 +05:30
end
def to_param
path
end
def human_name
owner_name
end
def move_dir
2016-06-02 11:05:42 +05:30
if any_project_has_container_registry_tags?
raise Exception.new('Namespace cannot be moved, because at least one project has tags in container registry')
end
2016-08-24 12:49:21 +05:30
# 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
gitlab_shell.add_namespace(repository_storage_path, path_was)
unless gitlab_shell.mv_namespace(repository_storage_path, path_was, path)
# if we cannot move namespace directory we should rollback
# db changes in order to prevent out of sync between db and fs
raise Exception.new('namespace directory cannot be moved')
2014-09-02 18:07:02 +05:30
end
2016-08-24 12:49:21 +05:30
end
Gitlab::UploadsTransfer.new.rename_namespace(path_was, path)
# 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
2014-09-02 18:07:02 +05:30
end
end
2016-06-02 11:05:42 +05:30
def any_project_has_container_registry_tags?
projects.any?(&:has_container_registry_tags?)
end
2014-09-02 18:07:02 +05:30
def send_update_instructions
2015-10-24 18:46:33 +05:30
projects.each do |project|
project.send_move_instructions("#{path_was}/#{project.path}")
end
2014-09-02 18:07:02 +05:30
end
def kind
type == 'Group' ? 'group' : 'user'
end
2015-04-26 12:48:37 +05:30
def find_fork_of(project)
2015-12-23 02:04:40 +05:30
projects.joins(:forked_project_link).find_by('forked_project_links.forked_from_project_id = ?', project.id)
2015-04-26 12:48:37 +05:30
end
2016-08-24 12:49:21 +05:30
2016-09-29 09:46:39 +05:30
def lfs_enabled?
# User namespace will always default to the global setting
Gitlab.config.lfs.enabled
end
2016-08-24 12:49:21 +05:30
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
projects.select('distinct(repository_storage)').to_a.map(&:repository_storage_path)
end
end
def rm_dir
# Remove the namespace directory in all storages paths used by member projects
@old_repository_storage_paths.each do |repository_storage_path|
# Move namespace directory into trash.
# We will remove it later async
new_path = "#{path}+#{id}+deleted"
if gitlab_shell.mv_namespace(repository_storage_path, path, new_path)
message = "Namespace directory \"#{path}\" moved to \"#{new_path}\""
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
end
2014-09-02 18:07:02 +05:30
end