#-- copyright # OpenProject is an open source project management software. # Copyright (C) 2012-2021 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. # # OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: # Copyright (C) 2006-2013 Jean-Philippe Lang # Copyright (C) 2010-2013 the ChiliProject Team # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program 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 General Public License for more details. # # 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 docs/COPYRIGHT.rdoc for more details. #++ class OpenProject::JournalFormatter::CustomField < ::JournalFormatter::Base include CustomFieldsHelper private def format_details(key, values) custom_field = ::CustomField.find_by(id: key.to_s.sub('custom_fields_', '').to_i) if custom_field label = custom_field.name old_value, value = get_old_and_new_value custom_field, values else label = I18n.t(:label_deleted_custom_field) old_value = values.first value = values.last end [label, old_value, value] end def get_old_and_new_value(custom_field, values) if custom_field.list? format_list custom_field, values else format_single custom_field, values end end def format_list(custom_field, values) old_value, new_value = values old_option = find_list_value custom_field, old_value if old_value new_option = find_list_value custom_field, new_value if new_value [old_option || old_value, new_option || new_value] end def format_single(custom_field, values) old_value = format_value(values.first, custom_field) if values.first value = format_value(values.last, custom_field) if values.last [old_value, value] end def find_list_value(custom_field, id) ids = id.split(",").map(&:to_i) id_value = custom_field .custom_options .where(id: ids) .order(:position) .pluck(:id, :value) .to_h ids.map do |id| id_value[id] || I18n.t(:label_deleted_custom_option) end.join(', ') end end