2013-06-19 08:40:33 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: keys
|
|
|
|
#
|
2013-08-21 05:34:02 -04:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer
|
2014-04-09 08:05:03 -04:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2013-08-21 05:34:02 -04:00
|
|
|
# key :text
|
|
|
|
# title :string(255)
|
|
|
|
# type :string(255)
|
|
|
|
# fingerprint :string(255)
|
2015-05-03 12:05:38 -04:00
|
|
|
# public :boolean default(FALSE), not null
|
2013-06-19 08:40:33 -04:00
|
|
|
#
|
|
|
|
|
2013-05-06 05:26:36 -04:00
|
|
|
class DeployKey < Key
|
|
|
|
has_many :deploy_keys_projects, dependent: :destroy
|
|
|
|
has_many :projects, through: :deploy_keys_projects
|
2013-05-06 08:10:55 -04:00
|
|
|
|
|
|
|
scope :in_projects, ->(projects) { joins(:deploy_keys_projects).where('deploy_keys_projects.project_id in (?)', projects) }
|
2015-03-27 09:43:48 -04:00
|
|
|
scope :are_public, -> { where(public: true) }
|
|
|
|
|
|
|
|
def private?
|
|
|
|
!public?
|
|
|
|
end
|
2015-04-03 06:22:44 -04:00
|
|
|
|
|
|
|
def orphaned?
|
|
|
|
self.deploy_keys_projects.length == 0
|
|
|
|
end
|
|
|
|
|
|
|
|
def almost_orphaned?
|
|
|
|
self.deploy_keys_projects.length == 1
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroyed_when_orphaned?
|
|
|
|
self.private?
|
|
|
|
end
|
2013-05-06 05:26:36 -04:00
|
|
|
end
|