Class: Tml::Config
- Inherits:
-
Object
- Object
- Tml::Config
- Defined in:
- lib/tml/config.rb
Overview
Acts as a global singleton that holds all Tml configuration The class can be extended with a different implementation, as long as the interface is supported
Instance Attribute Summary collapse
-
#agent ⇒ Object
Returns the value of attribute agent.
-
#api_client_class ⇒ Object
Returns the value of attribute api_client_class.
-
#application ⇒ Object
Configuration Attributes.
-
#auto_init ⇒ Object
Returns the value of attribute auto_init.
-
#cache ⇒ Object
Configuration Attributes.
-
#context_rules ⇒ Object
Configuration Attributes.
-
#current_locale_method ⇒ Object
Used by Rails and Sinatra extensions.
-
#current_user_method ⇒ Object
Used by Rails and Sinatra extensions.
-
#default_level ⇒ Object
Configuration Attributes.
-
#default_tokens ⇒ Object
Configuration Attributes.
-
#enabled ⇒ Object
Configuration Attributes.
-
#format ⇒ Object
Configuration Attributes.
-
#i18n_backend ⇒ Object
Used by Rails and Sinatra extensions.
-
#invalidator ⇒ Object
Returns the value of attribute invalidator.
-
#locale ⇒ Object
Configuration Attributes.
-
#localization ⇒ Object
Configuration Attributes.
-
#logger ⇒ Object
Configuration Attributes.
-
#source_separator ⇒ Object
Returns the value of attribute source_separator.
-
#submit_missing_keys_realtime ⇒ Object
Used for IRB only.
-
#translator_options ⇒ Object
Used by Rails and Sinatra extensions.
Instance Method Summary collapse
- #access_token ⇒ Object
- #cache_enabled? ⇒ Boolean
-
#decorator_class ⇒ Object
Decorations.
- #default_abbr_day_name(index) ⇒ Object
- #default_abbr_day_names ⇒ Object
- #default_abbr_month_name(index) ⇒ Object
- #default_abbr_month_names ⇒ Object
- #default_application ⇒ Object
- #default_date_formats ⇒ Object
- #default_day_name(index) ⇒ Object
- #default_day_names ⇒ Object
- #default_language ⇒ Object
-
#default_locale ⇒ Object
def default_level return Tml.session.application.default_level if Tml.session.application @default_level end.
- #default_month_name(index) ⇒ Object
- #default_month_names ⇒ Object
- #default_token_value(token_name, type = :data, format = :html) ⇒ Object
- #disabled? ⇒ Boolean
- #enabled? ⇒ Boolean
-
#initialize ⇒ Config
constructor
A new instance of Config.
- #nested_value(hash, key, default_value = nil) ⇒ Object
- #set_default_token(token_name, value, type = :data, format = :html) ⇒ Object
-
#strftime_symbol_to_token(symbol) ⇒ Object
Localization.
- #translator_option(key) ⇒ Object
Constructor Details
#initialize ⇒ Config
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 |
# File 'lib/tml/config.rb', line 88 def initialize @enabled = true @api_client_class = Tml::Api::Client @default_level = 0 @format = :html @subdomains = false @auto_init = true @source_separator = '@:@' @locale = { default: 'en', method: 'current_locale', subdomain: false, extension: false } @agent = { enabled: true, type: 'agent', cache: 86400 # timeout every 24 hours } # if running from IRB, make it default to TRUE @submit_missing_keys_realtime = (%w(irb pry).include?($0 || '')) @current_locale_method = :current_locale @current_user_method = :current_user @application = nil = { debug: false, debug_format_html: "<span style='font-size:20px;color:red;'>{</span> {$0} <span style='font-size:20px;color:red;'>}</span>", debug_format: '{{{{$0}}}}', split_sentences: false, nodes: { ignored: %w(), scripts: %w(style script code pre), inline: %w(a span i b img strong s em u sub sup), short: %w(i b), splitters: %w(br hr) }, attributes: { labels: %w(title alt) }, name_mapping: { b: 'bold', i: 'italic', a: 'link', img: 'picture' }, data_tokens: { special: { enabled: true, regex: /(&[^;]*;)/ }, date: { enabled: true, formats: [ [/((Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s+\d+,\s+\d+)/, "{month} {day}, {year}"], [/((January|February|March|April|May|June|July|August|September|October|November|December)\s+\d+,\s+\d+)/, "{month} {day}, {year}"], [/(\d+\s+(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec),\s+\d+)/, "{day} {month}, {year}"], [/(\d+\s+(January|February|March|April|May|June|July|August|September|October|November|December),\s+\d+)/, "{day} {month}, {year}"] ], name: 'date' }, rules: [ {enabled: true, name: 'time', regex: /(\d{1,2}:\d{1,2}\s+([A-Z]{2,3}|am|pm|AM|PM)?)/}, {enabled: true, name: 'phone', regex: /((\d{1}-)?\d{3}-\d{3}-\d{4}|\d?\(\d{3}\)\s*\d{3}-\d{4}|(\d.)?\d{3}.\d{3}.\d{4})/}, {enabled: true, name: 'email', regex: /([-a-z0-9~!$%^&*_=+}{\'?]+(\.[-a-z0-9~!$%^&*_=+}{\'?]+)*@([a-z0-9_][-a-z0-9_]*(\.[-a-z0-9_]+)*\.(aero|arpa|biz|com|coop|edu|gov|info|int|mil|museum|name|net|org|pro|travel|io|mobi|[a-z][a-z])|([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}))(:[0-9]{1,5})?)/}, {enabled: true, name: 'price', regex: /(\$\d*(,\d*)*(\.\d*)?)/}, {enabled: true, name: 'fraction', regex: /(\d+\/\d+)/}, {enabled: true, name: 'num', regex: /(\b\d*(,\d*)*(\.\d*)?%?\b)/} ] } } @context_rules = { :number => { :variables => { } }, :gender => { :variables => { '@gender' => 'gender', } }, :genders => { :variables => { '@genders' => lambda{|list| list.collect do |u| u.is_a?(Hash) ? (u['gender'] || u[:gender]) : u.gender end }, '@size' => lambda{ |list| list.size } } }, :date => { :variables => { } }, :time => { :variables => { } }, :list => { :variables => { '@count' => lambda{|list| list.size} } }, } @logger = { :enabled => false, :path => './log/tml.log', :level => 'debug' } @cache = { :enabled => false } @default_tokens = { :html => { :data => { :ndash => '–', # – :mdash => '—', # — :iexcl => '¡', # ¡ :iquest => '¿', # ¿ :quot => '"', # ' :ldquo => '“', # “ :rdquo => '”', # ” :lsquo => '‘', # ‘ :rsquo => '’', # ’ :laquo => '«', # « :raquo => '»', # » :nbsp => ' ', # space :lsaquo => '‹', # ‹ :rsaquo => '›', # › :br => '<br/>', # line break :lbrace => '{', :rbrace => '}', :trade => '™', # TM }, :decoration => { :strong => '<strong>{$0}</strong>', :bold => '<strong>{$0}</strong>', :b => '<strong>{$0}</strong>', :em => '<em>{$0}</em>', :italic => '<i>{$0}</i>', :i => '<i>{$0}</i>', :link => "<a href='{$href}'>{$0}</a>", :br => '<br>{$0}', :strike => '<strike>{$0}</strike>', :div => "<div id='{$id}' class='{$class}' style='{$style}'>{$0}</div>", :span => "<span id='{$id}' class='{$class}' style='{$style}'>{$0}</span>", :h1 => '<h1>{$0}</h1>', :h2 => '<h2>{$0}</h2>', :h3 => '<h3>{$0}</h3>', } }, :text => { :data => { :ndash => '–', :mdash => '-', :iexcl => '¡', :iquest => '¿', :quot => "'", :ldquo => '“', :rdquo => '”', :lsquo => '‘', :rsquo => '’', :laquo => '«', :raquo => '»', :nbsp => ' ', :lsaquo => '‹', :rsaquo => '›', :br => '\n', :lbrace => '{', :rbrace => '}', :trade => '™', }, :decoration => { :strong => '{$0}', :bold => '{$0}', :b => '{$0}', :em => '{$0}', :italic => '{$0}', :i => '{$0}', :link => '{$0}:{$1}', :br => '\n{$0}', :strike => '{$0}', :div => '{$0}', :span => '{$0}', :h1 => '{$0}', :h2 => '{$0}', :h3 => '{$0}', } } } @invalidator ||= { enabled: true, path: '/tml/upgrade', auth: lambda do |request| request.params[:access_token] == application[:token] end } @localization = { :default_day_names => ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], :default_abbr_day_names => ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], :default_month_names => ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], :default_abbr_month_names => ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], :custom_date_formats => { :default => '%m/%d/%Y', # 07/4/2008 :short_numeric => '%m/%d', # 07/4 :short_numeric_year => '%m/%d/%y', # 07/4/08 :long_numeric => '%m/%d/%Y', # 07/4/2008 :verbose => '%A, %B %d, %Y', # Friday, July 4, 2008 :monthname => '%B %d', # July 4 :monthname_year => '%B %d, %Y', # July 4, 2008 :monthname_abbr => '%b %d', # Jul 4 :monthname_abbr_year => '%b %d, %Y', # Jul 4, 2008 :date_time => '%m/%d/%Y at %H:%M', # 01/03/1010 at 5:30 }, :token_mapping => { '%a' => '{short_week_day_name}', '%A' => '{week_day_name}', '%b' => '{short_month_name}', '%B' => '{month_name}', '%p' => '{am_pm}', '%d' => '{days}', '%e' => '{day_of_month}', '%j' => '{year_days}', '%m' => '{months}', '%W' => '{week_num}', '%w' => '{week_days}', '%y' => '{short_years}', '%Y' => '{years}', '%l' => '{trimed_hour}', '%H' => '{full_hours}', '%I' => '{short_hours}', '%M' => '{minutes}', '%S' => '{seconds}', '%s' => '{since_epoch}' } } end |
Instance Attribute Details
#agent ⇒ Object
Returns the value of attribute agent.
83 84 85 |
# File 'lib/tml/config.rb', line 83 def agent @agent end |
#api_client_class ⇒ Object
Returns the value of attribute api_client_class.
83 84 85 |
# File 'lib/tml/config.rb', line 83 def api_client_class @api_client_class end |
#application ⇒ Object
Configuration Attributes
78 79 80 |
# File 'lib/tml/config.rb', line 78 def application @application end |
#auto_init ⇒ Object
Returns the value of attribute auto_init.
79 80 81 |
# File 'lib/tml/config.rb', line 79 def auto_init @auto_init end |
#cache ⇒ Object
Configuration Attributes
78 79 80 |
# File 'lib/tml/config.rb', line 78 def cache @cache end |
#context_rules ⇒ Object
Configuration Attributes
78 79 80 |
# File 'lib/tml/config.rb', line 78 def context_rules @context_rules end |
#current_locale_method ⇒ Object
Used by Rails and Sinatra extensions
82 83 84 |
# File 'lib/tml/config.rb', line 82 def current_locale_method @current_locale_method end |
#current_user_method ⇒ Object
Used by Rails and Sinatra extensions
82 83 84 |
# File 'lib/tml/config.rb', line 82 def current_user_method @current_user_method end |
#default_level ⇒ Object
Configuration Attributes
78 79 80 |
# File 'lib/tml/config.rb', line 78 def default_level @default_level end |
#default_tokens ⇒ Object
Configuration Attributes
78 79 80 |
# File 'lib/tml/config.rb', line 78 def default_tokens @default_tokens end |
#enabled ⇒ Object
Configuration Attributes
78 79 80 |
# File 'lib/tml/config.rb', line 78 def enabled @enabled end |
#format ⇒ Object
Configuration Attributes
78 79 80 |
# File 'lib/tml/config.rb', line 78 def format @format end |
#i18n_backend ⇒ Object
Used by Rails and Sinatra extensions
82 83 84 |
# File 'lib/tml/config.rb', line 82 def i18n_backend @i18n_backend end |
#invalidator ⇒ Object
Returns the value of attribute invalidator.
83 84 85 |
# File 'lib/tml/config.rb', line 83 def invalidator @invalidator end |
#locale ⇒ Object
Configuration Attributes
78 79 80 |
# File 'lib/tml/config.rb', line 78 def locale @locale end |
#localization ⇒ Object
Configuration Attributes
78 79 80 |
# File 'lib/tml/config.rb', line 78 def localization @localization end |
#logger ⇒ Object
Configuration Attributes
78 79 80 |
# File 'lib/tml/config.rb', line 78 def logger @logger end |
#source_separator ⇒ Object
Returns the value of attribute source_separator.
79 80 81 |
# File 'lib/tml/config.rb', line 79 def source_separator @source_separator end |
#submit_missing_keys_realtime ⇒ Object
Used for IRB only
86 87 88 |
# File 'lib/tml/config.rb', line 86 def submit_missing_keys_realtime @submit_missing_keys_realtime end |
#translator_options ⇒ Object
Used by Rails and Sinatra extensions
82 83 84 |
# File 'lib/tml/config.rb', line 82 def end |
Instance Method Details
#access_token ⇒ Object
387 388 389 |
# File 'lib/tml/config.rb', line 387 def access_token @application[:token] || @application[:access_token] || '' end |
#cache_enabled? ⇒ Boolean
358 359 360 |
# File 'lib/tml/config.rb', line 358 def cache_enabled? cache[:enabled].nil? || Tml.config.cache[:enabled] end |
#decorator_class ⇒ Object
Decorations
395 396 397 398 |
# File 'lib/tml/config.rb', line 395 def decorator_class return Tml::Decorators::Html if @format == :html Tml::Decorators::Default end |
#default_abbr_day_name(index) ⇒ Object
430 431 432 |
# File 'lib/tml/config.rb', line 430 def default_abbr_day_name(index) '' + default_abbr_day_names[index] end |
#default_abbr_day_names ⇒ Object
426 427 428 |
# File 'lib/tml/config.rb', line 426 def default_abbr_day_names localization[:default_abbr_day_names] end |
#default_abbr_month_name(index) ⇒ Object
446 447 448 |
# File 'lib/tml/config.rb', line 446 def default_abbr_month_name(index) '' + default_abbr_month_names[index] end |
#default_abbr_month_names ⇒ Object
442 443 444 |
# File 'lib/tml/config.rb', line 442 def default_abbr_month_names localization[:default_abbr_month_names] end |
#default_application ⇒ Object
383 384 385 |
# File 'lib/tml/config.rb', line 383 def default_application @default_application ||= Tml::Application.new(:host => Tml::Api::Client::API_HOST) end |
#default_date_formats ⇒ Object
450 451 452 |
# File 'lib/tml/config.rb', line 450 def default_date_formats localization[:custom_date_formats] end |
#default_day_name(index) ⇒ Object
422 423 424 |
# File 'lib/tml/config.rb', line 422 def default_day_name(index) '' + default_day_names[index] end |
#default_day_names ⇒ Object
418 419 420 |
# File 'lib/tml/config.rb', line 418 def default_day_names localization[:default_day_names] end |
#default_language ⇒ Object
376 377 378 379 380 381 |
# File 'lib/tml/config.rb', line 376 def default_language @default_language ||= begin file = File.(File.join(File.dirname(__FILE__), '..', 'tml', 'languages', "#{Tml.config.default_locale}.json")) Tml::Language.new(JSON.parse(File.read(file))) end end |
#default_locale ⇒ Object
def default_level
return Tml.session.application.default_level if Tml.session.application
@default_level
end
372 373 374 |
# File 'lib/tml/config.rb', line 372 def default_locale @locale[:default] end |
#default_month_name(index) ⇒ Object
438 439 440 |
# File 'lib/tml/config.rb', line 438 def default_month_name(index) '' + default_month_names[index] end |
#default_month_names ⇒ Object
434 435 436 |
# File 'lib/tml/config.rb', line 434 def default_month_names localization[:default_month_names] end |
#default_token_value(token_name, type = :data, format = :html) ⇒ Object
400 401 402 |
# File 'lib/tml/config.rb', line 400 def default_token_value(token_name, type = :data, format = :html) default_tokens[format.to_sym][type.to_sym][token_name.to_sym] end |
#disabled? ⇒ Boolean
341 342 343 |
# File 'lib/tml/config.rb', line 341 def disabled? not enabled? end |
#enabled? ⇒ Boolean
337 338 339 |
# File 'lib/tml/config.rb', line 337 def enabled? enabled end |
#nested_value(hash, key, default_value = nil) ⇒ Object
345 346 347 348 349 350 351 352 |
# File 'lib/tml/config.rb', line 345 def nested_value(hash, key, default_value = nil) parts = key.split('.') parts.each do |part| return default_value unless hash[part.to_sym] hash = hash[part.to_sym] end hash end |
#set_default_token(token_name, value, type = :data, format = :html) ⇒ Object
404 405 406 407 408 |
# File 'lib/tml/config.rb', line 404 def set_default_token(token_name, value, type = :data, format = :html) default_tokens[format.to_sym] ||= {} default_tokens[format.to_sym][type.to_sym] ||= {} default_tokens[format.to_sym][type.to_sym][token_name.to_sym] = value end |
#strftime_symbol_to_token(symbol) ⇒ Object
Localization
414 415 416 |
# File 'lib/tml/config.rb', line 414 def strftime_symbol_to_token(symbol) localization[:token_mapping][symbol] end |
#translator_option(key) ⇒ Object
354 355 356 |
# File 'lib/tml/config.rb', line 354 def translator_option(key) nested_value(self., key) end |