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"
|
|
|
|
|
|
|
|
validates :name, presence: true, uniqueness: true
|
2012-11-23 19:11:09 +01:00
|
|
|
validates :path, uniqueness: true, presence: true, length: { within: 1..255 },
|
|
|
|
format: { with: /\A[a-zA-Z][a-zA-Z0-9_\-\.]*\z/,
|
|
|
|
message: "only letters, digits & '_' '-' '.' allowed. Letter should be first" }
|
2012-11-22 19:34:16 +01:00
|
|
|
validates :owner, presence: true
|
|
|
|
|
|
|
|
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-23 07:11:09 +01:00
|
|
|
|
2012-11-23 05:24:09 +01:00
|
|
|
scope :root, where('type IS NULL')
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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-11-23 19:11:09 +01:00
|
|
|
namespace_dir_path = File.join(Gitlab.config.git_base_path, path)
|
2012-11-26 11:43:32 +01:00
|
|
|
Dir.mkdir(namespace_dir_path, 0770) unless File.exists?(namespace_dir_path)
|
2012-11-23 07:11:09 +01:00
|
|
|
end
|
2012-11-24 21:11:46 +01:00
|
|
|
|
|
|
|
def move_dir
|
|
|
|
old_path = File.join(Gitlab.config.git_base_path, path_was)
|
|
|
|
new_path = File.join(Gitlab.config.git_base_path, path)
|
|
|
|
system("mv #{old_path} #{new_path}")
|
|
|
|
end
|
2012-11-22 19:34:16 +01:00
|
|
|
end
|