retrospring/app/models/theme.rb

40 lines
1 KiB
Ruby
Raw Normal View History

class Theme < ActiveRecord::Base
include ThemeHelper
belongs_to :user
validates_numericality_of :primary_color, :primary_text,
:danger_color, :danger_text,
:success_color, :success_text,
:warning_color, :warning_text,
:info_color, :info_text,
:default_color, :default_text,
:panel_color, :panel_text,
:link_color, :background_color,
:background_text, :background_muted,
greater_than_or_equal_to: 0, less_than_or_equal_to: 0xFFFFFF,
allow_nil: true, only_integer: true
2015-08-25 21:34:40 +02:00
has_attached_file :css, use_timestamp: false, s3_headers: {
2015-08-25 21:36:51 +02:00
'Content-Type' => 'text/css'
2015-08-25 21:33:57 +02:00
}, fog_file: {
2015-08-25 21:35:56 +02:00
content_type: 'text/css'
2015-08-25 21:33:57 +02:00
}
2015-08-25 21:44:36 +02:00
validates_attachment_content_type :css, content_type: /^Atext/
before_save do
self.css = nil
style = StringIO.new(render_theme_with_context(self))
style.class.class_eval {
attr_accessor :original_filename, :content_type
}
2015-08-25 21:35:56 +02:00
style.content_type = 'text/css'
style.original_filename = 'theme.css'
self.css = style
end
end