2012-11-24 15:16:51 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: namespaces
|
|
|
|
#
|
2013-02-08 06:42:14 -05:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# name :string(255) not null
|
|
|
|
# path :string(255) not null
|
2013-10-01 08:15:28 -04:00
|
|
|
# owner_id :integer
|
2013-02-08 06:42:14 -05:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# type :string(255)
|
2013-03-15 09:16:02 -04:00
|
|
|
# description :string(255) default(""), not null
|
2012-11-24 15:16:51 -05:00
|
|
|
#
|
|
|
|
|
2012-11-22 13:34:16 -05:00
|
|
|
class Namespace < ActiveRecord::Base
|
2013-03-21 16:11:08 -04:00
|
|
|
include Gitlab::ShellAdapter
|
|
|
|
|
2013-02-07 05:42:52 -05:00
|
|
|
attr_accessible :name, :description, :path
|
2012-11-22 13:34:16 -05:00
|
|
|
|
2012-11-23 13:11:09 -05:00
|
|
|
has_many :projects, dependent: :destroy
|
2012-11-22 13:34:16 -05:00
|
|
|
belongs_to :owner, class_name: "User"
|
|
|
|
|
2013-09-26 07:49:22 -04:00
|
|
|
validates :owner, presence: true, unless: ->(n) { n.type == "Group" }
|
2013-02-18 02:28:18 -05:00
|
|
|
validates :name, presence: true, uniqueness: true,
|
|
|
|
length: { within: 0..255 },
|
|
|
|
format: { with: Gitlab::Regex.name_regex,
|
|
|
|
message: "only letters, digits, spaces & '_' '-' '.' allowed." }
|
2013-02-07 05:42:52 -05:00
|
|
|
validates :description, length: { within: 0..255 }
|
2012-11-23 13:11:09 -05:00
|
|
|
validates :path, uniqueness: true, presence: true, length: { within: 1..255 },
|
2013-06-12 15:11:35 -04:00
|
|
|
exclusion: { in: Gitlab::Blacklist.path },
|
2012-11-27 22:14:05 -05:00
|
|
|
format: { with: Gitlab::Regex.path_regex,
|
2012-11-23 13:11:09 -05:00
|
|
|
message: "only letters, digits & '_' '-' '.' allowed. Letter should be first" }
|
2012-11-22 13:34:16 -05:00
|
|
|
|
|
|
|
delegate :name, to: :owner, allow_nil: true, prefix: true
|
|
|
|
|
2012-11-24 15:11:46 -05:00
|
|
|
after_create :ensure_dir_exist
|
2013-03-21 16:11:08 -04:00
|
|
|
after_update :move_dir, if: :path_changed?
|
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
|
|
|
|
2012-11-22 13:34:16 -05:00
|
|
|
def self.search query
|
2012-11-23 13:11:09 -05:00
|
|
|
where("name LIKE :query OR path LIKE :query", query: "%#{query}%")
|
2012-11-22 13:34:16 -05:00
|
|
|
end
|
|
|
|
|
2012-11-27 01:31:15 -05:00
|
|
|
def self.global_id
|
|
|
|
'GLN'
|
|
|
|
end
|
|
|
|
|
2012-11-22 13:34:16 -05:00
|
|
|
def to_param
|
2012-11-23 13:11:09 -05:00
|
|
|
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
|
|
|
|
|
|
|
def ensure_dir_exist
|
2013-03-21 16:11:08 -04:00
|
|
|
gitlab_shell.add_namespace(path)
|
2012-12-27 22:24:05 -05:00
|
|
|
end
|
|
|
|
|
2013-03-21 16:11:08 -04:00
|
|
|
def rm_dir
|
|
|
|
gitlab_shell.rm_namespace(path)
|
2012-11-23 01:11:09 -05:00
|
|
|
end
|
2012-11-24 15:11:46 -05:00
|
|
|
|
|
|
|
def move_dir
|
2013-03-21 16:11:08 -04:00
|
|
|
if gitlab_shell.mv_namespace(path_was, path)
|
|
|
|
# If repositories moved successfully we need to remove old satellites
|
|
|
|
# and send update instructions to users.
|
|
|
|
# However we cannot allow rollback since we moved namespace dir
|
|
|
|
# So we basically we mute exceptions in next actions
|
2013-01-17 05:21:52 -05:00
|
|
|
begin
|
2013-03-21 16:11:08 -04:00
|
|
|
gitlab_shell.rm_satellites(path_was)
|
2012-12-20 15:16:51 -05:00
|
|
|
send_update_instructions
|
2013-03-21 16:11:08 -04:00
|
|
|
rescue
|
2013-07-29 06:46:00 -04:00
|
|
|
# Returning false does not rollback after_* transaction but gives
|
2013-03-21 16:11:08 -04:00
|
|
|
# us information about failing some of tasks
|
|
|
|
false
|
2012-12-20 15:16:51 -05:00
|
|
|
end
|
2013-03-21 16:11:08 -04:00
|
|
|
else
|
|
|
|
# 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')
|
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
|
|
|
|
2012-12-20 15:16:51 -05:00
|
|
|
def send_update_instructions
|
|
|
|
projects.each(&:send_move_instructions)
|
|
|
|
end
|
2012-11-22 13:34:16 -05:00
|
|
|
end
|