2012-05-04 02:56:01 +08:00
|
|
|
# Set encoding to utf-8
|
|
|
|
# encoding: UTF-8
|
2012-09-05 05:42:13 +08:00
|
|
|
#
|
|
|
|
# BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
|
|
|
|
#
|
2017-10-31 03:04:30 +08:00
|
|
|
# Copyright (c) 2017 BigBlueButton Inc. and by respective authors (see below).
|
2012-09-05 05:42:13 +08:00
|
|
|
#
|
2017-10-31 03:04:30 +08:00
|
|
|
# This program 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.0 of the License, or (at your option)
|
|
|
|
# any later version.
|
2012-09-05 05:42:13 +08:00
|
|
|
#
|
2017-10-31 03:04:30 +08:00
|
|
|
# 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.
|
2012-09-05 05:42:13 +08:00
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
# with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
2012-05-04 02:56:01 +08:00
|
|
|
|
2011-04-26 05:04:10 +08:00
|
|
|
require '../lib/recordandplayback'
|
2011-05-10 05:24:41 +08:00
|
|
|
require 'logger'
|
2011-04-26 05:04:10 +08:00
|
|
|
require 'trollop'
|
|
|
|
require 'yaml'
|
|
|
|
|
|
|
|
|
2011-05-12 05:45:45 +08:00
|
|
|
def archive_events(meeting_id, redis_host, redis_port, raw_archive_dir)
|
2017-11-02 00:31:07 +08:00
|
|
|
BigBlueButton.logger.info("Archiving events for #{meeting_id}")
|
2011-05-10 05:24:41 +08:00
|
|
|
begin
|
|
|
|
redis = BigBlueButton::RedisWrapper.new(redis_host, redis_port)
|
|
|
|
events_archiver = BigBlueButton::RedisEventsArchiver.new redis
|
2011-05-12 01:52:39 +08:00
|
|
|
events = events_archiver.store_events(meeting_id)
|
2011-05-12 05:45:45 +08:00
|
|
|
events_archiver.save_events_to_file("#{raw_archive_dir}/#{meeting_id}", events )
|
2011-05-10 05:24:41 +08:00
|
|
|
rescue => e
|
|
|
|
BigBlueButton.logger.warn("Failed to archive events for #{meeting_id}. " + e.to_s)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-31 03:04:30 +08:00
|
|
|
def archive_audio(meeting_id, audio_dir, raw_archive_dir)
|
|
|
|
BigBlueButton.logger.info("Archiving audio #{audio_dir}/#{meeting_id}-*.wav")
|
|
|
|
audio_dest_dir = "#{raw_archive_dir}/#{meeting_id}/audio"
|
|
|
|
ret = BigBlueButton.exec_ret('rsync', '-rstv',
|
|
|
|
*Dir.glob("#{audio_dir}/#{meeting_id}-*.wav"),
|
|
|
|
"#{raw_archive_dir}/#{meeting_id}/audio/")
|
|
|
|
if ret != 0
|
|
|
|
BigBlueButton.logger.warn("Failed to archive audio for #{meeting_id}")
|
2016-02-26 01:59:29 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-31 03:04:30 +08:00
|
|
|
def archive_directory(source, dest)
|
|
|
|
BigBlueButton.logger.info("Archiving contents of #{source}")
|
|
|
|
ret = BigBlueButton.exec_ret('resync', '-rstv',
|
|
|
|
"#{source}/", "#{dest}/")
|
|
|
|
if ret != 0
|
|
|
|
BigBlueButton.logger.warn("Failed to archive contents of #{source}")
|
2011-05-10 05:24:41 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-04 03:17:04 +08:00
|
|
|
def archive_has_recording_marks?(meeting_id, raw_archive_dir, break_timestamp)
|
|
|
|
doc = Nokogiri::XML(File.open("#{raw_archive_dir}/#{meeting_id}/events.xml"))
|
2017-11-04 04:12:05 +08:00
|
|
|
|
|
|
|
# Find the start and stop timestamps for the current recording segment
|
|
|
|
start_timestamp = BigBlueButton::Events.get_segment_start_timestamp(
|
|
|
|
doc, break_timestamp)
|
|
|
|
end_timestamp = BigBlueButton::Events.get_segment_end_timestamp(
|
|
|
|
doc, break_timestamp)
|
|
|
|
BigBlueButton.logger.info("Segment start: #{start_timestamp}, end: #{end_timestamp}")
|
|
|
|
|
|
|
|
BigBlueButton.logger.info("Checking for recording marks for #{meeting_id} segment #{break_timestamp}")
|
|
|
|
rec_events = BigBlueButton::Events.match_start_and_stop_rec_events(
|
|
|
|
BigBlueButton::Events.get_start_and_stop_rec_events(doc))
|
|
|
|
has_recording_marks = false
|
|
|
|
# Scan for a set of recording start/stop events which fits any of these cases:
|
|
|
|
# - Recording started during segment
|
|
|
|
# - Recording stopped during segment
|
|
|
|
# - Recording started before segment and stopped after segment
|
|
|
|
rec_events.each do |rec_event|
|
|
|
|
if (rec_event[:start_timestamp] > start_timestamp
|
|
|
|
and rec_event[:start_timestamp] < end_timestamp)
|
|
|
|
or (rec_event[:end_timestamp] > start_timestamp
|
|
|
|
and rec_event[:end_timestamp] < end_timestamp)
|
|
|
|
or (rec_event[:start_timestamp] <= start_timestamp
|
|
|
|
and rec_event[:end_timestamp] >= end_timestamp)
|
|
|
|
has_recording_marks = true
|
|
|
|
end
|
2013-10-03 01:18:26 +08:00
|
|
|
end
|
2017-11-04 04:12:05 +08:00
|
|
|
BigBlueButton.logger.info("Recording marks found: #{has_recording_marks}")
|
2013-10-03 01:18:26 +08:00
|
|
|
has_recording_marks
|
|
|
|
end
|
|
|
|
|
2011-06-04 00:17:51 +08:00
|
|
|
|
|
|
|
################## START ################################
|
|
|
|
|
2011-12-07 04:22:35 +08:00
|
|
|
opts = Trollop::options do
|
2017-10-31 03:04:30 +08:00
|
|
|
opt :meeting_id, "Meeting id to archive", type: :string
|
2017-11-04 04:12:05 +08:00
|
|
|
opt :break_timestamp, "Chapter break end timestamp", type: :integer
|
2011-12-07 04:22:35 +08:00
|
|
|
end
|
2017-10-31 03:04:30 +08:00
|
|
|
Trollop::die :meeting_id, "must be provided" if opts[:meeting_id].nil?
|
2011-12-07 04:22:35 +08:00
|
|
|
|
|
|
|
meeting_id = opts[:meeting_id]
|
2017-10-31 03:04:30 +08:00
|
|
|
break_timestamp = opts[:break_timestamp]
|
2013-04-30 05:03:21 +08:00
|
|
|
|
2017-11-04 00:02:36 +08:00
|
|
|
# Determine the filenames for the done and fail files
|
|
|
|
if !break_timestamp.nil?
|
|
|
|
done_base = "#{meeting_id}-#{break_timestamp}"
|
|
|
|
else
|
|
|
|
done_base = meeting_id
|
|
|
|
end
|
|
|
|
archive_done_file = "#{recording_dir}/status/archived/#{done_base}.done"
|
|
|
|
archive_norecord_file = "#{recording_dir}/status/archived/#{done_base}.norecord"
|
|
|
|
|
2011-06-04 00:17:51 +08:00
|
|
|
# This script lives in scripts/archive/steps while bigbluebutton.yml lives in scripts/
|
|
|
|
props = YAML::load(File.open('bigbluebutton.yml'))
|
|
|
|
|
|
|
|
audio_dir = props['raw_audio_src']
|
|
|
|
recording_dir = props['recording_dir']
|
|
|
|
raw_archive_dir = "#{recording_dir}/raw"
|
|
|
|
deskshare_dir = props['raw_deskshare_src']
|
2016-02-26 01:59:29 +08:00
|
|
|
screenshare_dir = props['raw_screenshare_src']
|
2011-06-04 00:17:51 +08:00
|
|
|
redis_host = props['redis_host']
|
|
|
|
redis_port = props['redis_port']
|
|
|
|
presentation_dir = props['raw_presentation_src']
|
|
|
|
video_dir = props['raw_video_src']
|
2014-04-04 04:23:49 +08:00
|
|
|
log_dir = props['log_dir']
|
2011-06-04 00:17:51 +08:00
|
|
|
|
2014-04-04 04:23:49 +08:00
|
|
|
BigBlueButton.logger = Logger.new("#{log_dir}/archive-#{meeting_id}.log", 'daily' )
|
2011-06-04 00:17:51 +08:00
|
|
|
|
2011-12-07 04:22:35 +08:00
|
|
|
target_dir = "#{raw_archive_dir}/#{meeting_id}"
|
|
|
|
if not FileTest.directory?(target_dir)
|
|
|
|
FileUtils.mkdir_p target_dir
|
|
|
|
archive_events(meeting_id, redis_host, redis_port, raw_archive_dir)
|
2015-03-11 23:12:03 +08:00
|
|
|
archive_audio(meeting_id, audio_dir, raw_archive_dir)
|
2017-10-31 03:04:30 +08:00
|
|
|
archive_directory("#{presentation_dir}/#{meeting_id}/#{meeting_id}",
|
|
|
|
"#{target_dir}/presentation")
|
|
|
|
archive_directory("#{screenshare_dir}/#{meeting_id}",
|
|
|
|
"#{target_dir}/deskshare")
|
|
|
|
archive_directory("#{video_dir}/#{meeting_id}",
|
|
|
|
"#{target_dir}/video/#{meeting_id}")
|
2015-03-11 23:12:03 +08:00
|
|
|
|
2017-11-04 03:17:04 +08:00
|
|
|
if not archive_has_recording_marks?(meeting_id, raw_archive_dir, break_timestamp)
|
2015-03-11 23:12:03 +08:00
|
|
|
BigBlueButton.logger.info("There's no recording marks for #{meeting_id}, not processing recording.")
|
2014-11-26 22:06:15 +08:00
|
|
|
|
2017-11-04 00:02:36 +08:00
|
|
|
if break_timestamp.nil?
|
|
|
|
# we need to delete the keys here because the sanity phase might not
|
|
|
|
# automatically happen for this recording
|
|
|
|
BigBlueButton.logger.info("Deleting redis keys")
|
|
|
|
redis = BigBlueButton::RedisWrapper.new(redis_host, redis_port)
|
2017-11-04 04:12:05 +08:00
|
|
|
events_archiver = BigBlueButton::RedisEventsArchiver.new(redis)
|
2017-11-04 00:02:36 +08:00
|
|
|
events_archiver.delete_events(meeting_id)
|
|
|
|
end
|
2014-11-26 22:06:15 +08:00
|
|
|
|
2017-11-04 00:02:36 +08:00
|
|
|
File.open(archive_norecord_file, "w") do |archive_norecord|
|
2015-03-11 23:12:03 +08:00
|
|
|
archive_norecord.write("Archived #{meeting_id} (no recording marks")
|
|
|
|
end
|
|
|
|
|
2013-10-03 01:18:26 +08:00
|
|
|
else
|
2017-11-04 00:02:36 +08:00
|
|
|
File.open(archive_done_file, "w") do |archive_done|
|
2015-03-11 23:12:03 +08:00
|
|
|
archive_done.write("Archived #{meeting_id}")
|
|
|
|
end
|
2013-10-03 01:18:26 +08:00
|
|
|
end
|
2011-05-12 01:52:39 +08:00
|
|
|
end
|