2017-04-12 10:52:52 -04:00
|
|
|
require 'listen'
|
|
|
|
|
|
|
|
module Stylesheet
|
|
|
|
class Watcher
|
|
|
|
|
2018-05-16 03:25:49 -04:00
|
|
|
def self.theme_key=(v)
|
|
|
|
@theme_key = v
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.theme_key
|
|
|
|
@theme_key || SiteSetting.default_theme_key
|
|
|
|
end
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def self.watch(paths = nil)
|
2017-04-12 10:52:52 -04:00
|
|
|
watcher = new(paths)
|
|
|
|
watcher.start
|
|
|
|
watcher
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(paths)
|
2017-08-09 11:06:27 -04:00
|
|
|
@paths = paths || Watcher.default_paths
|
2017-04-12 10:52:52 -04:00
|
|
|
@queue = Queue.new
|
|
|
|
end
|
|
|
|
|
2017-08-09 11:06:27 -04:00
|
|
|
def self.default_paths
|
|
|
|
return @default_paths if @default_paths
|
|
|
|
|
|
|
|
@default_paths = ["app/assets/stylesheets"]
|
|
|
|
Discourse.plugins.each do |p|
|
|
|
|
@default_paths << File.dirname(p.path).sub(Rails.root.to_s, '').sub(/^\//, '')
|
|
|
|
end
|
|
|
|
@default_paths
|
|
|
|
end
|
|
|
|
|
2017-04-12 10:52:52 -04:00
|
|
|
def start
|
|
|
|
|
|
|
|
Thread.new do
|
|
|
|
begin
|
|
|
|
while true
|
|
|
|
worker_loop
|
|
|
|
end
|
|
|
|
rescue => e
|
|
|
|
STDERR.puts "CSS change notifier crashed #{e}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
root = Rails.root.to_s
|
2017-08-16 12:59:21 -04:00
|
|
|
|
|
|
|
listener_opts = { ignore: /xxxx/ }
|
|
|
|
listener_opts[:force_polling] = true if ENV['FORCE_POLLING']
|
|
|
|
|
2017-04-12 10:52:52 -04:00
|
|
|
@paths.each do |watch|
|
|
|
|
Thread.new do
|
|
|
|
begin
|
2017-08-16 12:59:21 -04:00
|
|
|
listener = Listen.to("#{root}/#{watch}", listener_opts) do |modified, added, _|
|
2017-04-12 10:52:52 -04:00
|
|
|
paths = [modified, added].flatten
|
|
|
|
paths.compact!
|
2017-07-27 21:20:09 -04:00
|
|
|
paths.map! { |long| long[(root.length + 1)..-1] }
|
2017-04-12 10:52:52 -04:00
|
|
|
process_change(paths)
|
|
|
|
end
|
|
|
|
rescue => e
|
|
|
|
STDERR.puts "Failed to listen for CSS changes at: #{watch}\n#{e}"
|
|
|
|
end
|
2017-04-13 10:26:07 -04:00
|
|
|
listener.start
|
|
|
|
sleep
|
2017-04-12 10:52:52 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def worker_loop
|
|
|
|
@queue.pop
|
|
|
|
while @queue.length > 0
|
|
|
|
@queue.pop
|
|
|
|
end
|
|
|
|
|
2017-04-18 16:48:15 -04:00
|
|
|
Stylesheet::Manager.cache.clear
|
|
|
|
|
2017-04-12 10:52:52 -04:00
|
|
|
message = ["desktop", "mobile", "admin"].map do |name|
|
2018-03-09 01:47:57 -05:00
|
|
|
{
|
|
|
|
target: name,
|
|
|
|
new_href: Stylesheet::Manager.stylesheet_href(name.to_sym),
|
2018-05-16 03:25:49 -04:00
|
|
|
theme_key: Stylesheet::Watcher.theme_key
|
2018-03-09 01:47:57 -05:00
|
|
|
}
|
2017-04-12 10:52:52 -04:00
|
|
|
end
|
|
|
|
MessageBus.publish '/file-change', message
|
|
|
|
end
|
|
|
|
|
|
|
|
def process_change(paths)
|
|
|
|
paths.each do |path|
|
|
|
|
if path =~ /\.(css|scss)$/
|
|
|
|
@queue.push path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|