2012-11-24 21:16:51 +01:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: namespaces
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# name :string(255) not null
|
|
|
|
# path :string(255) not null
|
|
|
|
# owner_id :integer not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# type :string(255)
|
|
|
|
#
|
|
|
|
|
2012-11-22 19:34:16 +01:00
|
|
|
class Namespace < ActiveRecord::Base
|
2012-11-23 19:11:09 +01:00
|
|
|
attr_accessible :name, :path
|
2012-11-22 19:34:16 +01:00
|
|
|
|
2012-11-23 19:11:09 +01:00
|
|
|
has_many :projects, dependent: :destroy
|
2012-11-22 19:34:16 +01:00
|
|
|
belongs_to :owner, class_name: "User"
|
|
|
|
|
2013-02-18 08:28:18 +01:00
|
|
|
validates :owner, presence: true
|
|
|
|
validates :name, presence: true, uniqueness: true,
|
|
|
|
length: { within: 0..255 },
|
|
|
|
format: { with: Gitlab::Regex.name_regex,
|
|
|
|
message: "only letters, digits, spaces & '_' '-' '.' allowed." }
|
|
|
|
|
2012-11-23 19:11:09 +01:00
|
|
|
validates :path, uniqueness: true, presence: true, length: { within: 1..255 },
|
2012-11-28 04:14:05 +01:00
|
|
|
format: { with: Gitlab::Regex.path_regex,
|
2012-11-23 19:11:09 +01:00
|
|
|
message: "only letters, digits & '_' '-' '.' allowed. Letter should be first" }
|
2012-11-22 19:34:16 +01:00
|
|
|
|
|
|
|
delegate :name, to: :owner, allow_nil: true, prefix: true
|
|
|
|
|
2012-11-24 21:11:46 +01:00
|
|
|
after_create :ensure_dir_exist
|
|
|
|
after_update :move_dir
|
2012-11-21 06:54:05 +01:00
|
|
|
after_destroy :rm_dir
|
2012-11-23 07:11:09 +01:00
|
|
|
|
2013-02-12 08:16:45 +01:00
|
|
|
scope :root, -> { where('type IS NULL') }
|
2012-11-23 05:24:09 +01:00
|
|
|
|
2012-11-22 19:34:16 +01:00
|
|
|
def self.search query
|
2012-11-23 19:11:09 +01:00
|
|
|
where("name LIKE :query OR path LIKE :query", query: "%#{query}%")
|
2012-11-22 19:34:16 +01:00
|
|
|
end
|
|
|
|
|
2012-11-27 07:31:15 +01:00
|
|
|
def self.global_id
|
|
|
|
'GLN'
|
|
|
|
end
|
|
|
|
|
2012-11-22 19:34:16 +01:00
|
|
|
def to_param
|
2012-11-23 19:11:09 +01:00
|
|
|
path
|
2012-11-22 19:34:16 +01:00
|
|
|
end
|
2012-11-23 05:11:09 +01:00
|
|
|
|
|
|
|
def human_name
|
|
|
|
owner_name
|
|
|
|
end
|
2012-11-23 07:11:09 +01:00
|
|
|
|
|
|
|
def ensure_dir_exist
|
2012-12-28 04:24:05 +01:00
|
|
|
unless dir_exists?
|
2012-12-07 01:51:49 +01:00
|
|
|
FileUtils.mkdir( namespace_full_path, mode: 0770 )
|
2012-12-28 04:24:05 +01:00
|
|
|
end
|
2012-12-28 04:14:05 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def dir_exists?
|
2012-12-28 04:24:05 +01:00
|
|
|
File.exists?(namespace_full_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
def namespace_full_path
|
2013-02-11 18:16:59 +01:00
|
|
|
@namespace_full_path ||= File.join(Gitlab.config.gitlab_shell.repos_path, path)
|
2012-11-23 07:11:09 +01:00
|
|
|
end
|
2012-11-24 21:11:46 +01:00
|
|
|
|
|
|
|
def move_dir
|
2012-11-29 05:29:11 +01:00
|
|
|
if path_changed?
|
2013-02-11 18:16:59 +01:00
|
|
|
old_path = File.join(Gitlab.config.gitlab_shell.repos_path, path_was)
|
|
|
|
new_path = File.join(Gitlab.config.gitlab_shell.repos_path, path)
|
2012-11-29 05:29:11 +01:00
|
|
|
if File.exists?(new_path)
|
|
|
|
raise "Already exists"
|
|
|
|
end
|
2013-01-17 11:21:52 +01:00
|
|
|
|
|
|
|
|
|
|
|
begin
|
|
|
|
# Remove satellite when moving repo
|
|
|
|
if path_was.present?
|
|
|
|
satellites_path = File.join(Gitlab.config.satellites.path, path_was)
|
|
|
|
FileUtils.rm_r( satellites_path, force: true )
|
|
|
|
end
|
|
|
|
|
2012-12-07 01:51:49 +01:00
|
|
|
FileUtils.mv( old_path, new_path )
|
2012-12-20 21:16:51 +01:00
|
|
|
send_update_instructions
|
2012-12-07 01:51:49 +01:00
|
|
|
rescue Exception => e
|
2012-12-24 19:01:49 +01:00
|
|
|
raise "Namespace move error #{old_path} #{new_path}"
|
2012-12-20 21:16:51 +01:00
|
|
|
end
|
2012-11-27 07:31:15 +01:00
|
|
|
end
|
2012-11-24 21:11:46 +01:00
|
|
|
end
|
2012-11-21 06:54:05 +01:00
|
|
|
|
|
|
|
def rm_dir
|
2013-02-11 18:16:59 +01:00
|
|
|
dir_path = File.join(Gitlab.config.gitlab_shell.repos_path, path)
|
2012-12-07 01:51:49 +01:00
|
|
|
FileUtils.rm_r( dir_path, force: true )
|
2012-11-21 06:54:05 +01:00
|
|
|
end
|
2012-12-20 21:16:51 +01:00
|
|
|
|
|
|
|
def send_update_instructions
|
|
|
|
projects.each(&:send_move_instructions)
|
|
|
|
end
|
2012-11-22 19:34:16 +01:00
|
|
|
end
|