#-- 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 Mails::MemberJob < ApplicationJob queue_with_priority :notification def perform(current_user:, member:, message: nil) if member.project.nil? send_updated_global(current_user, member, message) elsif member.principal.is_a?(Group) every_group_user_member(member) do |user_member| send_for_group_user(current_user, user_member, member, message) end elsif member.principal.is_a?(User) send_for_project_user(current_user, member, message) end end private def send_for_group_user(_current_user, _member, _group, _message) raise NotImplementedError, "subclass responsibility" end def send_for_project_user(_current_user, _member, _message) raise NotImplementedError, "subclass responsibility" end def send_updated_global(current_user, member, member_message) return if sending_disabled?(:updated, member_message) MemberMailer .updated_global(current_user, member, member_message) .deliver_now end def send_added_project(current_user, member, member_message) return if sending_disabled?(:added, member_message) MemberMailer .added_project(current_user, member, member_message) .deliver_now end def send_updated_project(current_user, member, member_message) return if sending_disabled?(:updated, member_message) MemberMailer .updated_project(current_user, member, member_message) .deliver_now end def every_group_user_member(member, &block) Member .of(member.project) .where(principal: member.principal.users) .includes(:project, :principal, :roles, :member_roles) .each(&block) end def sending_disabled?(setting, message) message.blank? && !Setting.notified_events.include?("membership_#{setting}") end end