bigbluebutton-Github/record-and-playback/core/scripts/archive/archive.rb

146 lines
5.5 KiB
Ruby
Raw Normal View History

# 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/
#
# Copyright (c) 2017 BigBlueButton Inc. and by respective authors (see below).
2012-09-05 05:42:13 +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
#
# 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/>.
#
2011-04-26 05:04:10 +08:00
require '../lib/recordandplayback'
require 'logger'
2011-04-26 05:04:10 +08:00
require 'trollop'
require 'yaml'
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}")
begin
redis = BigBlueButton::RedisWrapper.new(redis_host, redis_port)
events_archiver = BigBlueButton::RedisEventsArchiver.new redis
events = events_archiver.store_events(meeting_id)
events_archiver.save_events_to_file("#{raw_archive_dir}/#{meeting_id}", events )
rescue => e
BigBlueButton.logger.warn("Failed to archive events for #{meeting_id}. " + e.to_s)
end
end
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
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}")
end
end
def archive_has_recording_marks?(meeting_id, raw_archive_dir)
BigBlueButton.logger.info("Fetching the recording marks for #{meeting_id}.")
has_recording_marks = true
begin
record_events = BigBlueButton::Events.get_record_status_events("#{raw_archive_dir}/#{meeting_id}/events.xml")
BigBlueButton.logger.info("record_events:\n#{BigBlueButton.hash_to_str(record_events)}")
has_recording_marks = (not record_events.empty?)
rescue => e
BigBlueButton.logger.warn("Failed to fetch the recording marks for #{meeting_id}. " + e.to_s)
end
has_recording_marks
end
################## START ################################
2011-12-07 04:22:35 +08:00
opts = Trollop::options do
opt :meeting_id, "Meeting id to archive", type: :string
opt :break_timestamp, "Chapter break end timestamp", type: :string
2011-12-07 04:22:35 +08:00
end
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]
break_timestamp = opts[:break_timestamp]
2013-04-30 05:03:21 +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"
# 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']
redis_host = props['redis_host']
redis_port = props['redis_port']
presentation_dir = props['raw_presentation_src']
video_dir = props['raw_video_src']
log_dir = props['log_dir']
BigBlueButton.logger = Logger.new("#{log_dir}/archive-#{meeting_id}.log", 'daily' )
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)
archive_audio(meeting_id, audio_dir, raw_archive_dir)
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}")
# TODO we need to check for recording marks in the segment being archived
if not archive_has_recording_marks?(meeting_id, raw_archive_dir)
BigBlueButton.logger.info("There's no recording marks for #{meeting_id}, not processing recording.")
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)
events_archiver = BigBlueButton::RedisEventsArchiver.new redis
events_archiver.delete_events(meeting_id)
end
File.open(archive_norecord_file, "w") do |archive_norecord|
archive_norecord.write("Archived #{meeting_id} (no recording marks")
end
else
File.open(archive_done_file, "w") do |archive_done|
archive_done.write("Archived #{meeting_id}")
end
end
end