|
1
|
|
|
# frozen_string_literal: true |
|
2
|
|
|
|
|
3
|
|
|
# BigBlueButton open source conferencing system - http://www.bigbluebutton.org/. |
|
4
|
|
|
# |
|
5
|
|
|
# Copyright (c) 2018 BigBlueButton Inc. and by respective authors (see below). |
|
6
|
|
|
# |
|
7
|
|
|
# This program is free software; you can redistribute it and/or modify it under the |
|
8
|
|
|
# terms of the GNU Lesser General Public License as published by the Free Software |
|
9
|
|
|
# Foundation; either version 3.0 of the License, or (at your option) any later |
|
10
|
|
|
# version. |
|
11
|
|
|
# |
|
12
|
|
|
# BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY |
|
13
|
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
|
14
|
|
|
# PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
|
15
|
|
|
# |
|
16
|
|
|
# You should have received a copy of the GNU Lesser General Public License along |
|
17
|
|
|
# with BigBlueButton; if not, see <http://www.gnu.org/licenses/>. |
|
18
|
|
|
|
|
19
|
|
|
class ThemesController < ApplicationController |
|
20
|
|
|
before_action :provider_settings |
|
21
|
|
|
|
|
22
|
|
|
# GET /primary |
|
23
|
|
|
def index |
|
24
|
|
|
color = @settings.get_value("Primary Color") || Rails.configuration.primary_color_default |
|
25
|
|
|
file_name = Rails.root.join('app', 'assets', 'stylesheets', 'utilities', '_primary_themes.scss') |
|
26
|
|
|
@file_contents = File.read(file_name) |
|
27
|
|
|
|
|
28
|
|
|
# Include the variables and covert scss file to css |
|
29
|
|
|
@compiled = Sass::Engine.new("$primary-color:#{color};" \ |
|
30
|
|
|
"$primary-color-lighten:lighten(#{color}, 40%);" \ |
|
31
|
|
|
"$primary-color-darken:darken(#{color}, 10%);" + |
|
32
|
|
|
@file_contents, syntax: :scss).render |
|
33
|
|
|
|
|
34
|
|
|
respond_to do |format| |
|
35
|
|
|
format.css { render body: @compiled } |
|
36
|
|
|
end |
|
37
|
|
|
end |
|
38
|
|
|
|
|
39
|
|
|
private |
|
40
|
|
|
|
|
41
|
|
|
def provider_settings |
|
42
|
|
|
@settings = Setting.find_or_create_by(provider: user_settings_provider) |
|
43
|
|
|
end |
|
44
|
|
|
end |
|
45
|
|
|
|