Class: Tr8n::Component
Overview
– Copyright © 2014 Michael Berkovich, TranslationExchange.com
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. ++
Instance Attribute Summary
Attributes inherited from Base
Class Method Summary collapse
- .cache_key(key) ⇒ Object
-
.cache_prefix ⇒ Object
Cache Methods.
Instance Method Summary collapse
- #languages ⇒ Object
- #live? ⇒ Boolean
- #register_source(source) ⇒ Object
- #restricted? ⇒ Boolean
- #sources ⇒ Object
- #translator_authorized?(translator) ⇒ Boolean
- #translators ⇒ Object
Methods inherited from Base
attributes, belongs_to, has_many, #hash_value, hash_value, #initialize, #method_missing, #to_hash, #update_attributes
Constructor Details
This class inherits a constructor from Tr8n::Base
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Tr8n::Base
Class Method Details
.cache_key(key) ⇒ Object
66 67 68 |
# File 'lib/tr8n/component.rb', line 66 def self.cache_key(key) "#{cache_prefix}_[#{key}]" end |
.cache_prefix ⇒ Object
Cache Methods
62 63 64 |
# File 'lib/tr8n/component.rb', line 62 def self.cache_prefix 'c@' end |
Instance Method Details
#languages ⇒ Object
37 38 39 |
# File 'lib/tr8n/component.rb', line 37 def languages application.get("component/languages", {:key => key}, {:class => Tr8n::Language, :application => application}) end |
#live? ⇒ Boolean
49 50 51 |
# File 'lib/tr8n/component.rb', line 49 def live? state == 'live' end |
#register_source(source) ⇒ Object
41 42 43 |
# File 'lib/tr8n/component.rb', line 41 def register_source(source) application.post("component/register_source", {:key => key, :source => source.source}) end |
#restricted? ⇒ Boolean
45 46 47 |
# File 'lib/tr8n/component.rb', line 45 def restricted? state == 'restricted' end |
#sources ⇒ Object
29 30 31 |
# File 'lib/tr8n/component.rb', line 29 def sources application.get("component/sources", {:key => key}, {:class => Tr8n::Source, :application => application}) end |
#translator_authorized?(translator) ⇒ Boolean
53 54 55 56 |
# File 'lib/tr8n/component.rb', line 53 def (translator) return true unless restricted? translators.include?(translator) end |
#translators ⇒ Object
33 34 35 |
# File 'lib/tr8n/component.rb', line 33 def translators application.get("component/translators", {:key => key}, {:class => Tr8n::Translator, :application => application}) end |