Sha256: 92fab2f458b7d62fca883dd0410d2ab727bbb6fb6c810895356ab2b4a7c68d53

Contents?: true

Size: 1.27 KB

Versions: 9

Compression:

Stored size: 1.27 KB

Contents

class Mdm::Tag < ActiveRecord::Base
  #
  # Relations
  #

  # @!attribute hosts_tags
  #  Joins {#hosts} to this tag.
  #
  #  @return [ActiveRecord::Relation<Mdm::HostTag>]
  has_many :hosts_tags,
           class_name: 'Mdm::HostTag',
           dependent: :destroy,
           inverse_of: :tag

  belongs_to :user,
             class_name: 'Mdm::User',
             inverse_of: :tags

  #
  # Through :hosts_tags
  #

  # @!attribute [r] hosts
  #   Host that are tagged with this tag.
  #
  #   @return [ActiveRecord::Relation<Mdm::Host>]
  has_many :hosts, :through => :hosts_tags, :class_name => 'Mdm::Host'


  #
  # Validations
  #

  validates :desc,
            :length => {
                :maximum => ((8 * (2 ** 10)) - 1),
                :message => "desc must be less than 8k."
            }
  validates :name,
            :format => {
                :with => /^[A-Za-z0-9\x2e\x2d_]+$/, :message => "must be alphanumeric, dots, dashes, or underscores"
            },
            :presence => true

  #
  # Instance Methods
  #

  # Destroy this tag if it has no {#hosts_tags}
  #
  # @return [void]
  def destroy_if_orphaned
    self.class.transaction do
      if hosts_tags.empty?
        destroy
      end
    end
  end

  def to_s
    name
  end

  Metasploit::Concern.run(self)
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
metasploit_data_models-0.18.1-java app/models/mdm/tag.rb
metasploit_data_models-0.18.1 app/models/mdm/tag.rb
metasploit_data_models-0.18.0 app/models/mdm/tag.rb
metasploit_data_models-0.18.0-java app/models/mdm/tag.rb
metasploit_data_models-0.18.0.pre.compatibility app/models/mdm/tag.rb
metasploit_data_models-0.17.3-java app/models/mdm/tag.rb
metasploit_data_models-0.17.3 app/models/mdm/tag.rb
metasploit_data_models-0.17.3.pre.metasploit.pre.concern-java app/models/mdm/tag.rb
metasploit_data_models-0.17.3.pre.metasploit.pre.concern app/models/mdm/tag.rb