ontology.rb revision 13afaf97a3dc4419d05bde698d8f6ba2465b55fb
5f5870385cff47efd2f58e7892f251cf13761528Timo Sirainenclass Ontology < ActiveRecord::Base
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen # Ontohub Library Includes
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen include Commentable
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen include Metadatable
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen # Ontology Model Includes
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen include Ontology::Import
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen include Ontology::Scopes
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen include Ontology::States
9522aa5f33cc37fe8ccd0d647cc51dd3ba6a9b55Timo Sirainen include Ontology::Versions
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen include Ontology::Entities
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen include Ontology::Sentences
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen include Ontology::Links
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen include Ontology::Distributed
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen include Ontology::Categories
4fda77c9e9fc68feb292c4dacae1fac49dd08165Timo Sirainen include Ontology::Oops
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen include Ontology::OntologyTypes
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen include Ontology::Projects
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen include Ontology::Tools
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen include Ontology::Tasks
f158d9a303bb15a6848ca276c9391c7ca52e452bTimo Sirainen include Ontology::LicenseModels
f158d9a303bb15a6848ca276c9391c7ca52e452bTimo Sirainen include Ontology::FormalityLevels
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen include Ontology::FileExtensions
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen # Multiple Class Features
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen include Aggregatable
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen belongs_to :repository
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen belongs_to :language
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen belongs_to :logic, counter_cache: true
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen has_many :source_links, class_name: 'Link', foreign_key: 'source_id', dependent: :destroy
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen has_many :target_links, class_name: 'Link', foreign_key: 'target_id', dependent: :destroy
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen attr_accessible :iri, :name, :description, :logic_id, :category_ids, :documentation, :acronym, :file_extension, :projects
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen validates_uniqueness_of :iri, :if => :iri_changed?
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen validates_format_of :iri, :with => URI::regexp(Settings.allowed_iri_schemes)
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen validates :documentation,
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen allow_blank: true,
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen format: { with: URI::regexp(Settings.allowed_iri_schemes) }
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen validates_presence_of :basepath
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen delegate :permission?, to: :repository
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen strip_attributes :only => [:name, :iri]
cf9d67e4a9bfee31cf3be05244555d51a3d1b9feTimo Sirainen
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen scope :search, ->(query) { where "ontologies.iri #{connection.ilike_operator} :term OR name #{connection.ilike_operator} :term", :term => "%" << query << "%" }
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen scope :list, includes(:logic).order('ontologies.state asc, ontologies.entities_count desc')
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen def to_s
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen name? ? name : iri
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen end
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen
2670cd577aa57eb9f915a4f4220ae48c9b4fc5fbTimo Sirainen # title for links
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen def title
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen name? ? iri : nil
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen end
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen def symbols
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen entities
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen end
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen def symbols_count
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen entities_count
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen end
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen def path
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen "#{basepath}#{file_extension}"
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen end
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen def is?(logic_name)
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen self.logic ? (self.logic.name == logic_name) : false
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen end
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainenend
8b16d3b00f051401c97568697ccdbba48663759aTimo Sirainen