Class: Tr8n::TranslationDomain

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/tr8n/translation_domain.rb

Overview

– Copyright © 2010-2012 Michael Berkovich, tr8n.net

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ++

– Tr8n::TranslationDomain Schema Information

Table name: tr8n_translation_domains

id              INTEGER         not null, primary key
name            varchar(255)    
description     varchar(255)    
source_count    integer         default = 0
created_at      datetime        
updated_at      datetime

Indexes

index_tr8n_translation_domains_on_name    (name) UNIQUE

++

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.cache_key(domain_name) ⇒ Object



57
58
59
# File 'app/models/tr8n/translation_domain.rb', line 57

def self.cache_key(domain_name)
  "translation_domain_#{domain_name}"
end

.find_or_create(url = nil) ⇒ Object



65
66
67
68
69
70
# File 'app/models/tr8n/translation_domain.rb', line 65

def self.find_or_create(url = nil)
  domain_name = URI.parse(url || 'localhost').host || 'localhost'
  Tr8n::Cache.fetch(cache_key(domain_name)) do 
    find_by_name(domain_name) || create(:name => domain_name)
  end  
end

Instance Method Details

#cache_keyObject



61
62
63
# File 'app/models/tr8n/translation_domain.rb', line 61

def cache_key
  self.class.cache_key(name)
end

#clear_cacheObject



72
73
74
# File 'app/models/tr8n/translation_domain.rb', line 72

def clear_cache
  Tr8n::Cache.delete(cache_key)
end