2013-12-09 18:03:22 +00:00
|
|
|
module Asciinema
|
|
|
|
class Configuration
|
2014-03-21 15:43:32 +00:00
|
|
|
include Virtus.model
|
|
|
|
|
|
|
|
attribute :add_this_profile_id, String
|
2014-08-08 21:11:18 +00:00
|
|
|
attribute :bugsnag_api_key, String
|
2014-03-21 15:43:32 +00:00
|
|
|
attribute :aws_access_key_id, String
|
|
|
|
attribute :aws_bucket, String
|
|
|
|
attribute :aws_region, String
|
|
|
|
attribute :aws_secret_access_key, String
|
|
|
|
attribute :carrierwave_storage, String, default: 'file'
|
|
|
|
attribute :carrierwave_storage_dir_prefix, String, default: 'uploads/'
|
|
|
|
attribute :google_analytics_id, String
|
|
|
|
attribute :home_asciicast_id, Integer
|
|
|
|
attribute :scheme, String, default: 'http'
|
2014-10-07 18:28:49 +00:00
|
|
|
attribute :host, String, default: 'localhost:3000'
|
2014-03-21 15:43:32 +00:00
|
|
|
attribute :secret_token, String, default: '21deaa1a1228e119434aa783ecb4af21be7513ff1f5b8c1d8894241e5fc70ad395db72c8c1b0508a0ebb994ed88a8d73f6c84e44f7a4bc554a40d77f9844d2f4'
|
2014-07-05 12:59:42 +00:00
|
|
|
attribute :admin_ids, Array[Integer]
|
2014-10-06 19:45:58 +00:00
|
|
|
attribute :smtp_settings, Hash
|
2015-03-30 16:22:38 +00:00
|
|
|
attribute :from_email, String, default: "asciinema <hello@asciinema.org>"
|
2014-03-21 15:43:32 +00:00
|
|
|
|
2014-01-17 13:52:37 +00:00
|
|
|
def home_asciicast
|
2015-06-22 18:38:32 +00:00
|
|
|
if home_asciicast_id
|
2014-03-21 15:43:32 +00:00
|
|
|
Asciicast.find(home_asciicast_id)
|
2014-01-17 13:52:37 +00:00
|
|
|
else
|
|
|
|
Asciicast.last
|
|
|
|
end
|
2013-12-09 18:03:22 +00:00
|
|
|
end
|
|
|
|
|
2014-01-29 15:00:50 +00:00
|
|
|
def ssl?
|
|
|
|
scheme == 'https'
|
|
|
|
end
|
|
|
|
|
2013-12-09 18:03:22 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-03-21 15:43:32 +00:00
|
|
|
cfg_file = File.expand_path(File.dirname(__FILE__) + '/asciinema.yml')
|
|
|
|
cfg = YAML.load_file(cfg_file) || {} rescue {}
|
|
|
|
env = Hash[ENV.to_h.map { |k, v| [k.downcase, v] }]
|
|
|
|
cfg.merge!(env)
|
|
|
|
|
2013-12-09 18:03:22 +00:00
|
|
|
::CFG = Asciinema::Configuration.new(cfg)
|