2017-03-23 04:27:05 +08:00
|
|
|
#!/usr/bin/ruby
|
|
|
|
# encoding: UTF-8
|
|
|
|
|
|
|
|
# Copyright ⓒ 2017 BigBlueButton Inc. and by respective authors.
|
|
|
|
#
|
|
|
|
# This file is part of BigBlueButton open source conferencing system.
|
|
|
|
#
|
|
|
|
# BigBlueButton is free software: you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU Lesser General Public License as published by the
|
|
|
|
# Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
# option) any later version.
|
|
|
|
#
|
|
|
|
# BigBlueButton is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
|
|
|
# details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# along with BigBlueButton. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
require '../lib/recordandplayback'
|
|
|
|
require 'rubygems'
|
|
|
|
require 'yaml'
|
|
|
|
require 'fileutils'
|
|
|
|
|
|
|
|
def process_archived_meetings(recording_dir)
|
|
|
|
sanity_done_files = Dir.glob("#{recording_dir}/status/sanity/*.done")
|
|
|
|
|
|
|
|
FileUtils.mkdir_p("#{recording_dir}/status/processed")
|
2017-11-08 00:50:28 +08:00
|
|
|
# TODO sort by timestamp(s)
|
|
|
|
sanity_done_files.each do |sanity_done|
|
|
|
|
done_base = File.basename(sanity_done, '.done')
|
|
|
|
meeting_id = nil
|
|
|
|
break_timestamp = nil
|
|
|
|
|
|
|
|
if match = /^([0-9a-f]+-[0-9]+)$/.match(done_base)
|
|
|
|
meeting_id = match[1]
|
|
|
|
elsif match = /^([0-9a-f]+-[0-9]+)-([0-9]+)$/.match(done_base)
|
|
|
|
meeting_id = match[1]
|
|
|
|
break_timestamp = match[2]
|
|
|
|
else
|
|
|
|
BigBlueButton.logger.warn("Sanity done file for #{done_base} has invalid format")
|
|
|
|
next
|
|
|
|
end
|
2017-03-23 04:27:05 +08:00
|
|
|
|
|
|
|
step_succeeded = true
|
|
|
|
|
2019-05-10 23:56:29 +08:00
|
|
|
# Generate captions
|
2019-05-14 04:38:51 +08:00
|
|
|
ret = BigBlueButton.exec_ret('ruby', 'utils/captions.rb', '-m', meeting_id)
|
2019-05-10 23:56:29 +08:00
|
|
|
if ret != 0
|
|
|
|
BigBlueButton.logger.warn("Failed to generate caption files #{ret}")
|
|
|
|
end
|
|
|
|
|
2017-11-08 00:50:28 +08:00
|
|
|
# Iterate over the list of recording processing scripts to find available
|
|
|
|
# types. For now, we look for the ".rb" extension - TODO other scripting
|
|
|
|
# languages?
|
2017-03-23 04:27:05 +08:00
|
|
|
Dir.glob("process/*.rb").sort.each do |process_script|
|
|
|
|
match2 = /([^\/]*).rb$/.match(process_script)
|
|
|
|
process_type = match2[1]
|
|
|
|
|
2017-11-08 00:50:28 +08:00
|
|
|
processed_done = "#{recording_dir}/status/processed/#{done_base}-#{process_type}.done"
|
2017-03-23 04:27:05 +08:00
|
|
|
next if File.exists?(processed_done)
|
|
|
|
|
2017-11-08 00:50:28 +08:00
|
|
|
processed_fail = "#{recording_dir}/status/processed/#{done_base}-#{process_type}.fail"
|
2017-03-23 04:27:05 +08:00
|
|
|
if File.exists?(processed_fail)
|
|
|
|
step_succeeded = false
|
|
|
|
next
|
|
|
|
end
|
|
|
|
|
|
|
|
BigBlueButton.redis_publisher.put_process_started(process_type, meeting_id)
|
|
|
|
|
|
|
|
# If the process directory exists, the script does nothing
|
2017-11-08 00:50:28 +08:00
|
|
|
process_dir = "#{recording_dir}/process/#{process_type}/#{done_base}"
|
|
|
|
FileUtils.rm_rf(process_dir)
|
2017-03-23 04:27:05 +08:00
|
|
|
|
|
|
|
step_start_time = BigBlueButton.monotonic_clock
|
2017-11-08 00:50:28 +08:00
|
|
|
if !break_timestamp.nil?
|
|
|
|
ret = BigBlueButton.exec_ret('ruby', process_script,
|
|
|
|
'-m', meeting_id, '-b', break_timestamp)
|
|
|
|
else
|
|
|
|
ret = BigBlueButton.exec_ret('ruby', process_script, '-m', meeting_id)
|
|
|
|
end
|
2017-03-23 04:27:05 +08:00
|
|
|
step_stop_time = BigBlueButton.monotonic_clock
|
|
|
|
step_time = step_stop_time - step_start_time
|
|
|
|
|
2017-11-08 00:50:28 +08:00
|
|
|
if File.directory?(process_dir)
|
|
|
|
IO.write("#{process_dir}/processing_time", step_time)
|
2017-04-05 02:23:17 +08:00
|
|
|
end
|
2017-03-23 04:27:05 +08:00
|
|
|
|
|
|
|
step_succeeded = (ret == 0 and File.exists?(processed_done))
|
|
|
|
|
|
|
|
BigBlueButton.redis_publisher.put_process_ended(process_type, meeting_id, {
|
|
|
|
"success" => step_succeeded,
|
|
|
|
"step_time" => step_time
|
|
|
|
})
|
|
|
|
|
|
|
|
if step_succeeded
|
2017-11-08 00:50:28 +08:00
|
|
|
BigBlueButton.logger.info("Process format #{process_type} succeeded for #{meeting_id} break #{break_timestamp}")
|
2017-03-23 04:27:05 +08:00
|
|
|
BigBlueButton.logger.info("Process took #{step_time}ms")
|
|
|
|
else
|
2017-11-08 00:50:28 +08:00
|
|
|
BigBlueButton.logger.info("Process format #{process_type} failed for #{meeting_id} break #{break_timestamp}")
|
2017-03-23 04:27:05 +08:00
|
|
|
BigBlueButton.logger.info("Process took #{step_time}ms")
|
|
|
|
FileUtils.touch(processed_fail)
|
|
|
|
step_succeeded = false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if step_succeeded
|
|
|
|
post_process(meeting_id)
|
|
|
|
FileUtils.rm_f(sanity_done)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def post_process(meeting_id)
|
|
|
|
Dir.glob("post_process/*.rb").sort.each do |post_process_script|
|
|
|
|
match = /([^\/]*).rb$/.match(post_process_script)
|
|
|
|
post_type = match[1]
|
|
|
|
BigBlueButton.logger.info("Running post process script #{post_type}")
|
|
|
|
|
|
|
|
BigBlueButton.redis_publisher.put_post_process_started post_type, meeting_id
|
|
|
|
|
|
|
|
step_start_time = BigBlueButton.monotonic_clock
|
|
|
|
ret = BigBlueButton.exec_ret("ruby", post_process_script, "-m", meeting_id)
|
|
|
|
step_stop_time = BigBlueButton.monotonic_clock
|
|
|
|
step_time = step_stop_time - step_start_time
|
|
|
|
step_succeeded = (ret == 0)
|
|
|
|
|
|
|
|
BigBlueButton.redis_publisher.put_post_process_ended post_type, meeting_id, {
|
|
|
|
"success" => step_succeeded,
|
|
|
|
"step_time" => step_time
|
|
|
|
}
|
|
|
|
|
|
|
|
if not step_succeeded
|
|
|
|
BigBlueButton.logger.warn("Post process script #{post_process_script} failed")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
begin
|
|
|
|
props = YAML::load(File.open('bigbluebutton.yml'))
|
|
|
|
redis_host = props['redis_host']
|
|
|
|
redis_port = props['redis_port']
|
2018-12-15 06:16:12 +08:00
|
|
|
redis_password = props['redis_password']
|
|
|
|
BigBlueButton.redis_publisher = BigBlueButton::RedisWrapper.new(redis_host, redis_port, redis_password)
|
2017-03-23 04:27:05 +08:00
|
|
|
|
|
|
|
log_dir = props['log_dir']
|
|
|
|
recording_dir = props['recording_dir']
|
|
|
|
|
|
|
|
logger = Logger.new("#{log_dir}/bbb-rap-worker.log")
|
|
|
|
logger.level = Logger::INFO
|
|
|
|
BigBlueButton.logger = logger
|
|
|
|
|
|
|
|
BigBlueButton.logger.debug("Running rap-process-worker...")
|
|
|
|
|
|
|
|
process_archived_meetings(recording_dir)
|
|
|
|
|
|
|
|
BigBlueButton.logger.debug("rap-process-worker done")
|
|
|
|
|
|
|
|
rescue Exception => e
|
|
|
|
BigBlueButton.logger.error(e.message)
|
|
|
|
e.backtrace.each do |traceline|
|
|
|
|
BigBlueButton.logger.error(traceline)
|
|
|
|
end
|
|
|
|
end
|