opf/openproject

View on GitHub
modules/ldap_groups/app/components/ldap_groups/synchronized_filters/row_component.rb

Summary

Maintainability
A
30 mins
Test Coverage
# frozen_string_literal: true

#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) 2012-2024 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 COPYRIGHT and LICENSE files for more details.
#++

module LdapGroups
  module SynchronizedFilters
    class RowComponent < ::RowComponent
      property :base_dn

      def synchronized_filter
        model
      end

      def name
        link_to synchronized_filter.name, ldap_groups_synchronized_filter_path(synchronized_filter)
      end

      def auth_source
        link_to synchronized_filter.ldap_auth_source.name, edit_ldap_auth_source_path(synchronized_filter.ldap_auth_source)
      end

      def groups
        synchronized_filter.groups.count
      end

      def sync_users
        helpers.checked_image synchronized_filter.sync_users
      end

      def button_links
        [
          edit_link,
          delete_link
        ].compact
      end

      def edit_link
        return if model.seeded_from_env?

        link_to I18n.t(:button_edit),
                { controller: table.target_controller, ldap_filter_id: model.id, action: :edit },
                class: "icon icon-edit",
                title: t(:button_edit)
      end

      def delete_link
        return if model.seeded_from_env?

        link_to I18n.t(:button_delete),
                { controller: table.target_controller, ldap_filter_id: model.id, action: :destroy_info },
                class: "icon icon-delete",
                title: t(:button_delete)
      end
    end
  end
end