Created
February 9, 2010 13:05
-
-
Save cs3b/299178 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Globalize | |
module ActiveRecord | |
class Adapter | |
# The cache caches attributes that already were looked up for read access. | |
# The stash keeps track of new or changed values that need to be saved. | |
attr_reader :record, :cache, :stash | |
def initialize(record) | |
@record = record | |
@cache = Attributes.new | |
@stash = Attributes.new | |
end | |
def fetch(locale, attr_name) | |
real_fetch(locale, attr_name).blank? ? | |
real_fetch(I18n.default_locale, attr_name) : | |
real_fetch(locale, attr_name) | |
end | |
def write(locale, attr_name, value) | |
stash.write(locale, attr_name, value) | |
cache.write(locale, attr_name, value) | |
end | |
def save_translations! | |
stash.each do |locale, attrs| | |
translation = record.translations.find_or_initialize_by_locale(locale.to_s) | |
attrs.each { |attr_name, value| translation[attr_name] = value } | |
translation.save! | |
end | |
stash.clear | |
end | |
def reset | |
cache.clear | |
# stash.clear | |
end | |
protected | |
def real_fetch(locale, attr_name) | |
cache.contains?(locale, attr_name) ? | |
cache.read(locale, attr_name) : | |
cache.write(locale, attr_name, fetch_attribute(locale, attr_name)) | |
end | |
def fetch_translation(locale) | |
locale = locale.to_sym | |
record.translations.loaded? ? record.translations.detect { |t| t.locale == locale } : | |
record.translations.by_locale(locale) | |
end | |
def fetch_translations(locale) | |
# only query if not already included with :include => translations | |
record.translations.loaded? ? record.translations : | |
record.translations.by_locales(Globalize.fallbacks(locale)) | |
end | |
def fetch_attribute(locale, attr_name) | |
translations = fetch_translations(locale) | |
value, requested_locale = nil, locale | |
Globalize.fallbacks(locale).each do |fallback| | |
translation = translations.detect { |t| t.locale == fallback } | |
value = translation && translation.send(attr_name) | |
locale = fallback && break if value | |
end | |
set_metadata(value, :locale => locale, :requested_locale => requested_locale) | |
value | |
end | |
def set_metadata(object, metadata) | |
if object.respond_to?(:translation_metadata) | |
object.translation_metadata.merge!(meta_data) | |
end | |
end | |
def translation_metadata_accessor(object) | |
return if obj.respond_to?(:translation_metadata) | |
class << object; | |
attr_accessor :translation_metadata | |
end | |
object.translation_metadata ||= {} | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment