2021-11-21 02:52:37 +00:00
|
|
|
require File.expand_path('../boot', __FILE__)
|
|
|
|
|
|
|
|
# Pick the frameworks you want:
|
|
|
|
# require "active_record/railtie"
|
|
|
|
require "action_controller/railtie"
|
|
|
|
require "action_mailer/railtie"
|
|
|
|
require "sprockets/railtie"
|
|
|
|
require "rails/test_unit/railtie"
|
|
|
|
require "mongoid"
|
|
|
|
require "mongoid/railtie"
|
|
|
|
require "bson"
|
2022-05-29 04:59:54 +00:00
|
|
|
require 'rails'
|
|
|
|
if Rails.version.to_i>4
|
|
|
|
module AbstractController
|
|
|
|
module Callbacks
|
|
|
|
module ClassMethods
|
|
|
|
alias_method :prepend_before_filter, :prepend_before_action
|
|
|
|
alias_method :before_filter, :before_action
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2022-08-04 09:02:03 +00:00
|
|
|
|
2022-05-29 04:59:54 +00:00
|
|
|
if RUBY_VERSION.to_f > 2.1
|
2022-08-04 09:02:03 +00:00
|
|
|
if RUBY_VERSION.to_f>2.4
|
|
|
|
module Psych
|
|
|
|
def self.load(yaml, permitted_classes: [Symbol], permitted_symbols: [], aliases: false, filename: nil, fallback: nil, symbolize_names: false, freeze: false, strict_integer: false)
|
|
|
|
return self.unsafe_load(yaml, filename: filename, fallback: fallback, symbolize_names: symbolize_names, freeze: freeze, strict_integer: strict_integer)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2022-05-29 04:59:54 +00:00
|
|
|
class Time
|
|
|
|
def new_offset(offset)
|
|
|
|
DateTime.new(self.to_i).new_offset(offset)
|
|
|
|
end
|
|
|
|
end
|
2022-08-04 09:02:03 +00:00
|
|
|
class ActionController::Parameters
|
|
|
|
def any?(&block)
|
|
|
|
self.permit!.to_h.any?(&block)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
module URI
|
|
|
|
def self.escape(uri)
|
|
|
|
self::DEFAULT_PARSER.escape(uri)
|
|
|
|
end
|
|
|
|
def self.unescape(uri)
|
|
|
|
self::DEFAULT_PARSER.unescape(uri)
|
|
|
|
end
|
|
|
|
def self.parse(uri)
|
|
|
|
uri = uri.strip
|
|
|
|
scheme, userinfo, host, port,
|
|
|
|
registry, path, opaque, query, fragment = self.split(uri)
|
|
|
|
|
|
|
|
if scheme && self.scheme_list.include?(scheme.upcase)
|
|
|
|
self.scheme_list[scheme.upcase].new(scheme, userinfo, host, port,
|
|
|
|
registry, path, opaque, query,
|
|
|
|
fragment, self)
|
|
|
|
else
|
|
|
|
Generic.new(scheme, userinfo, host, port,
|
|
|
|
registry, path, opaque, query,
|
|
|
|
fragment, self)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
class <<self
|
|
|
|
alias_method :encode, :escape
|
|
|
|
alias_method :decode, :unescape
|
|
|
|
end
|
|
|
|
end
|
2022-05-29 04:59:54 +00:00
|
|
|
end
|
|
|
|
|
2021-11-21 02:52:37 +00:00
|
|
|
if Mongoid::VERSION.to_i < 5
|
|
|
|
require "moped"
|
|
|
|
Moped::BSON = BSON
|
|
|
|
else
|
|
|
|
Mongoid::Sessions = Mongoid::Clients
|
|
|
|
Mongoid::Clients::StorageOptions::ClassMethods.module_eval do
|
|
|
|
def store_in(options)
|
|
|
|
options[:client] = options.delete(:session) if options && options[:session]
|
|
|
|
|
|
|
|
Mongoid::Clients::Validators::Storage.validate(self, options)
|
|
|
|
storage_options.merge!(options)
|
|
|
|
end
|
|
|
|
end
|
2021-11-27 05:37:57 +00:00
|
|
|
#monkey the behavier as before(mongoid 4)
|
2022-05-29 04:59:54 +00:00
|
|
|
if Mongoid::VERSION.to_i==5
|
|
|
|
module Mongoid
|
|
|
|
module Contextual
|
|
|
|
class Mongo
|
|
|
|
def add_default_sort_options
|
|
|
|
if !criteria.options.key?(:sort)
|
|
|
|
criteria.options[:sort] = {:_id => 1}
|
|
|
|
apply_option(:sort)
|
2021-11-27 05:37:57 +00:00
|
|
|
end
|
|
|
|
end
|
2022-05-29 04:59:54 +00:00
|
|
|
def first
|
|
|
|
add_default_sort_options
|
|
|
|
return documents.first if cached? && cache_loaded?
|
|
|
|
try_cache(:first) do
|
2021-11-27 05:37:57 +00:00
|
|
|
if raw_doc = view.limit(-1).first
|
|
|
|
doc = Factory.from_db(klass, raw_doc, criteria.options[:fields])
|
|
|
|
eager_load([doc]).first
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2022-05-29 04:59:54 +00:00
|
|
|
def last
|
|
|
|
add_default_sort_options
|
|
|
|
try_cache(:last) do
|
|
|
|
with_inverse_sorting do
|
|
|
|
if raw_doc = view.limit(-1).first
|
|
|
|
doc = Factory.from_db(klass, raw_doc, criteria.options[:fields])
|
|
|
|
eager_load([doc]).first
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
def documents_for_iteration
|
|
|
|
add_default_sort_options
|
|
|
|
return documents if cached? && !documents.empty?
|
|
|
|
return view unless eager_loadable?
|
|
|
|
docs = view.map{ |doc| Factory.from_db(klass, doc, criteria.options[:fields]) }
|
|
|
|
eager_load(docs)
|
|
|
|
end
|
2021-11-27 05:37:57 +00:00
|
|
|
end
|
2022-05-29 04:59:54 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
Boolean = Mongoid::Boolean
|
|
|
|
class Mongoid::Criteria::Queryable::Key
|
|
|
|
def to_bson_key(validating_keys = Config.validating_keys?)
|
|
|
|
self.to_s
|
2021-11-27 05:37:57 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
BSON::Int64.class_eval do
|
|
|
|
def bson_int64?
|
|
|
|
self.to_bson_key.bson_int64?
|
|
|
|
end
|
|
|
|
end
|
2021-11-21 02:52:37 +00:00
|
|
|
end
|
|
|
|
module Mongoid
|
|
|
|
module Findable
|
|
|
|
def and_any_of(conditions)
|
|
|
|
self.or(conditions)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
module Mongoid
|
|
|
|
class Criteria
|
|
|
|
def and_any_of(conditions)
|
|
|
|
if self.selector.count==0
|
|
|
|
tmp = self.or(conditions)
|
|
|
|
else
|
|
|
|
all_selector = self.selector
|
|
|
|
self.selector = {}
|
|
|
|
tmp = self.and([all_selector,{"$or"=>conditions}])
|
|
|
|
end
|
|
|
|
tmp
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2022-08-04 09:02:03 +00:00
|
|
|
|
2021-11-21 02:52:37 +00:00
|
|
|
module ActionView::Helpers::AssetTagHelper
|
|
|
|
self.included do
|
|
|
|
def stylesheet_link_tag(*sources)
|
|
|
|
options = sources.extract_options!.stringify_keys
|
|
|
|
super(*sources,{media: :all}.merge(options))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
|
|
# you've limited to :test, :development, or :production.
|
2022-05-29 04:59:54 +00:00
|
|
|
already_required = Bundler.require.map{|b| b.name}
|
|
|
|
if Thread.current[:dependency_gems].nil?
|
|
|
|
require File.expand_path('../set_global_variable.rb', __FILE__)
|
|
|
|
end
|
|
|
|
Thread.current[:dependency_gems].each{|gem_name| Bundler.require.push(Bundler::Dependency.new(gem_name,:runtime)) unless already_required.include?(gem_name)}
|
|
|
|
Thread.current[:dependency_gems] = nil
|
2021-11-21 02:52:37 +00:00
|
|
|
Bundler.require(:default, Rails.env)
|
2022-05-29 04:59:54 +00:00
|
|
|
class CssPostProcessor
|
|
|
|
def call(input)
|
|
|
|
d = input[:data]
|
|
|
|
[[':hover','.hover-class'],[':hover',':focus-within'],['\.ad-overlay','.banner-overlay']].each do |s,t|
|
|
|
|
d = d.gsub(/((?:(?!{|}).)*#{s}(?:(?!{|}).)*){/) do |v|
|
|
|
|
v1 = $1
|
|
|
|
v1 = v1.gsub(/((?:(?!,|\t).)*#{s}(?:(?!,|\t).)*)/) do |c|
|
|
|
|
c1 = c.gsub(/#{s}/,t)
|
|
|
|
"#{c}, #{c1}"
|
|
|
|
end
|
|
|
|
"#{v1}{"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return {data: d}
|
|
|
|
end
|
|
|
|
end
|
2021-11-21 02:52:37 +00:00
|
|
|
|
|
|
|
module Orbit
|
|
|
|
class Application < Rails::Application
|
|
|
|
# Settings in config/environments/* take precedence over those specified here.
|
|
|
|
# Application configuration should go into files in config/initializers
|
|
|
|
# -- all .rb files in that directory are automatically loaded.
|
|
|
|
|
|
|
|
# tell the I18n library where to find your translations
|
2022-05-29 04:59:54 +00:00
|
|
|
if Rails.version.to_i>=6
|
|
|
|
config.hosts.clear
|
|
|
|
end
|
2021-11-21 02:52:37 +00:00
|
|
|
I18n.load_path += Dir[Rails.root.join('lib', 'locale', '*.{rb,yml}')]
|
|
|
|
I18n.load_path += Dir[Rails.root.join('config', 'locales', '*.{rb,yml}')]
|
|
|
|
I18n.load_path += Gem::Specification.select{|v| v.source.class!=Bundler::Source::Rubygems}.map{|v| Dir[File.expand_path('../config/locales/*.yml',v.loaded_from)]}.flatten
|
|
|
|
# set default locale to something other than :en
|
|
|
|
config.i18n.enforce_available_locales = true
|
|
|
|
config.i18n.default_locale = :en
|
|
|
|
extra_lang = File.read('config/extra_lang.txt').scan(/.*extra_.*/).select{|v| v.exclude? '#'}[0].to_s.split(/extra_language.*:|,| /).select{|v| !v.empty?}.map{|v| v.to_sym} rescue []
|
|
|
|
all_locales = [:en, :zh_tw] + extra_lang
|
|
|
|
I18n.available_locales = config.i18n.available_locales = all_locales
|
|
|
|
require "i18n/backend/fallbacks"
|
|
|
|
I18n::Backend::Simple.send(:include, I18n::Backend::Fallbacks)
|
|
|
|
fallbacks = {}
|
|
|
|
all_locales.each do |locale|
|
|
|
|
fallbacks[locale] = [locale,:en].uniq #all_locales.sort_by{|v| v == locale ? 0 : 1}
|
|
|
|
end
|
|
|
|
I18n.fallbacks = fallbacks
|
|
|
|
config.autoload_paths += %W(#{config.root}/lib)
|
|
|
|
|
|
|
|
#reload_gems = %w(impressionist) # names of gems which should autoreload
|
|
|
|
#config.autoload_paths += Gem.loaded_specs.values.inject([]){ |a,gem| a += gem.load_paths if reload_gems.include? gem.name; a }
|
|
|
|
#require 'active_support/dependencies'
|
|
|
|
#ActiveSupport::Dependencies.explicitly_unloadable_constants += reload_gems.map { |gem| gem.classify }
|
|
|
|
# config.paths["app/views"].unshift("#{Rails.root}/app/templates")
|
|
|
|
|
|
|
|
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
|
|
|
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
|
|
|
config.time_zone = 'Asia/Taipei'
|
|
|
|
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
|
|
|
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
|
|
|
# config.i18n.default_locale = :de
|
2022-05-29 04:59:54 +00:00
|
|
|
if Rails.version.to_i>=5
|
|
|
|
config.eager_load_paths << Rails.root.join('lib')
|
|
|
|
config.mongoid.belongs_to_required_by_default = false
|
|
|
|
end
|
2021-11-21 02:52:37 +00:00
|
|
|
# config.mongoid.observers = :orbit_observer
|
2022-05-29 04:59:54 +00:00
|
|
|
config.assets.configure do |env|
|
|
|
|
env.cache = ActiveSupport::Cache.lookup_store(:memory_store,{ size: 128.megabytes })
|
|
|
|
env.register_postprocessor 'text/css', CssPostProcessor.new
|
|
|
|
end
|
2021-11-21 02:52:37 +00:00
|
|
|
end
|
|
|
|
end
|