kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.8 KiB
58 lines
1.8 KiB
11 years ago
|
#-- encoding: UTF-8
|
||
|
#-- copyright
|
||
|
# OpenProject is a project management system.
|
||
|
# Copyright (C) 2011-2013 the OpenProject Foundation (OPF)
|
||
|
#
|
||
|
# This program is free software; you can redistribute it and/or
|
||
|
# modify it under the terms of the GNU General Public License version 3.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# along with this program; if not, write to the Free Software
|
||
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
#
|
||
|
# See doc/COPYRIGHT.md for more details.
|
||
|
#++
|
||
|
#
|
||
|
|
||
|
require_relative 'migration_utils/legacy_journal_migrator'
|
||
|
|
||
|
class LegacyMeetingAgendaJournalData < ActiveRecord::Migration
|
||
|
class UnsupportedMeetingAgendaJournalCompressionError < ::StandardError
|
||
|
end
|
||
|
|
||
|
def up
|
||
|
migrator.run
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
migrator.remove_journals_derived_from_legacy_journals 'meeting_content_journals'
|
||
|
end
|
||
|
|
||
|
def migrator
|
||
|
@migrator ||= Migration::LegacyJournalMigrator.new "MeetingAgendaJournal", "meeting_content_journals" do
|
||
|
|
||
|
self.journable_class = "MeetingContent"
|
||
|
|
||
|
def migrate_key_value_pairs!(to_insert, legacy_journal, journal_id)
|
||
|
if to_insert.has_key?("data")
|
||
|
|
||
|
# Why is that checked but than the compression is not used in any way to read the data
|
||
|
if !to_insert.has_key?("compression")
|
||
|
|
||
|
raise UnsupportedMeetingAgendaJournalCompressionError, <<-MESSAGE.split("\n").map(&:strip!).join(" ") + "\n"
|
||
|
There is a MeetingAgenda journal that contains data in an
|
||
|
unsupported compression: #{compression}
|
||
|
MESSAGE
|
||
|
|
||
|
end
|
||
|
|
||
|
# as the old journals used the format [old_value, new_value] we have to fake it here
|
||
|
to_insert["text"] = [nil, to_insert.delete("data")]
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|