Files
openproject/app/views/ldap_auth_sources/_form.html.erb
T
Alexander Brandon Coles e8767481e9 [#70166] Fix accessibility errors found by ERB Lint (#21503)
* Fix GitHub/NoTitleAttribute, LinkHasHref errors

- Replaces `title` attribute with `aria-label` for interactive elements.
- Removes `title` from non-interactive elements.
- Converts `<a>` tags without proper `href` to `<button>` elements,
  using Primer `Button`/`IconButton` where possible.

# Conflicts:
#	app/views/custom_fields/_custom_options.html.erb
#	spec/features/admin/custom_fields/shared_custom_field_expectations.rb
#	spec/features/admin/custom_fields/work_packages/list_spec.rb

* Fix Autocomplete missing errors

* Fix GitHub/NoPositiveTabIndex errors

Removes all positive `tabindex` values.

* Fix Rails/LinkToBlank errors

* Replace toast with Primer Banner on LDAP form

* Add frozen_string_literal

* Ignore erb lint for deprecated files

* Fix linting errors in repository module

* Fix linting errors in budgets and custom actions

* Fix linting errors in member form and 2fa

* Fix linting errors in mcost types and wiki help and storages

* Fix linting errors in multi select filters, ifc viewer, and unsupported browser banner

* Fix failing spec

* Use Primer banner instead of op-toast where ever it is possible

* Use octicon instead of op_icon

* Fix failing tests

* Use no-decoration-on-hover for button links and change the button with only an icon to primer icon button

* Keep webhook response modal activation selector class-based

* use icon button for edit of hourly rate

---------

Co-authored-by: Behrokh Satarnejad <b.satarnejad@openproject.com>
2026-05-07 10:31:10 +02:00

229 lines
9.3 KiB
Plaintext

<%# -- copyright
OpenProject is an open source project management software.
Copyright (C) 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.
++# %>
<%#
needs locals:
f: labelled form builder
%>
<%= error_messages_for :ldap_auth_source %>
<% if @ldap_auth_source.new_record? %>
<%=
render(Primer::Alpha::Banner.new(scheme: :warning, mb: 2, dismiss_scheme: :hide)) do
link_translate(
"ldap_auth_sources.technical_warning",
links: {
docs_url: %i[sysadmin_docs ldap]
}
)
end
%>
<% end %>
<% if @ldap_auth_source.seeded_from_env? %>
<%= render(Primer::Alpha::Banner.new(scheme: :warning, icon: :alert, mb: 2)) do %>
<%= t(:label_seeded_from_env_warning) %>
<br>
<%= link_to t("ldap_auth_sources.back_to_index"), { action: :index } %>
<% end %>
<% end %>
<%= content_tag :fieldset, class: "form--fieldset", disabled: @ldap_auth_source.seeded_from_env? do %>
<div class="form--field -required">
<%= f.text_field "name", required: true, container_class: "-middle" %>
<span class="form--field-instructions">
<%= t("ldap_auth_sources.attribute_texts.name") %>
</span>
</div>
<div class="form--field -required">
<%= f.text_field "host", required: true, container_class: "-middle" %>
<span class="form--field-instructions">
<%= t("ldap_auth_sources.attribute_texts.host") %>
</span>
</div>
<div class="form--field -required"><%= f.text_field "port", required: true, size: 6, container_class: "-xslim" %></div>
<% end %>
<%= content_tag :fieldset, class: "form--fieldset", disabled: @ldap_auth_source.seeded_from_env? do %>
<legend class="form--fieldset-legend"><%= t("ldap_auth_sources.connection_encryption") %></legend>
<p>
<%= t "ldap_auth_sources.tls_mode.section_more_info_link_html",
link: OpenProject::Static::Links.url_for(:ldap_encryption_documentation) %>
</p>
<div class="form--field">
<%= f.radio_button :tls_mode,
"start_tls",
label: t("ldap_auth_sources.tls_mode.start_tls"),
container_class: "-wide" %>
<p class="form--field-instructions">
<%= t("ldap_auth_sources.tls_mode.start_tls_description") %>
</p>
</div>
<div class="form--field">
<%= f.radio_button :tls_mode,
"simple_tls",
label: t("ldap_auth_sources.tls_mode.simple_tls"),
container_class: "-wide" %>
<p class="form--field-instructions">
<%= t("ldap_auth_sources.tls_mode.simple_tls_description") %>
</p>
</div>
<div class="form--field">
<%= f.radio_button :tls_mode,
"plain_ldap",
label: t("ldap_auth_sources.tls_mode.plain"),
container_class: "-wide" %>
<p class="form--field-instructions">
<%= t("ldap_auth_sources.tls_mode.plain_description") %>
</p>
</div>
<% end %>
<%= content_tag :fieldset, class: "form--fieldset", disabled: @ldap_auth_source.seeded_from_env? do %>
<legend class="form--fieldset-legend"><%= t("ldap_auth_sources.connection_encryption") %></legend>
<div class="form--field">
<%= f.check_box :verify_peer,
label: t("ldap_auth_sources.tls_options.verify_peer"),
container_class: "-wide" %>
<p class="form--field-instructions">
<%= t("ldap_auth_sources.tls_options.verify_peer_description_html") %>
</p>
</div>
<div class="form--field">
<%= f.text_area :tls_certificate_string,
label: LdapAuthSource.human_attribute_name(:tls_certificate_string),
placeholder: "-----BEGIN CERTIFICATE-----\n ..... \n-----END CERTIFICATE-----",
rows: 10,
container_class: "-wide" %>
<div class="form--field-instructions">
<p><%= t("ldap_auth_sources.tls_options.tls_certificate_description") %></p>
</div>
</div>
<% end %>
<%= content_tag :fieldset, class: "form--fieldset", disabled: @ldap_auth_source.seeded_from_env? do %>
<legend class="form--fieldset-legend"><%= t("ldap_auth_sources.system_account") %></legend>
<p><%= t "ldap_auth_sources.system_account_legend" %></p>
<div class="form--field">
<%= f.text_field "account", container_class: "-middle" %>
<span class="form--field-instructions">
<%= t("ldap_auth_sources.attribute_texts.system_user_dn_html") %>
</span>
</div>
<div class="form--field">
<%= f.password_field "account_password",
label: LdapAuthSource.human_attribute_name(:password),
placeholder: (@ldap_auth_source.new_record? || @ldap_auth_source.account_password.blank? ? "" : ("●" * 15)),
autocomplete: "off",
container_class: "-middle" %>
<span class="form--field-instructions">
<%= t("ldap_auth_sources.attribute_texts.system_user_password") %>
</span>
</div>
<% end %>
<%= content_tag :fieldset, class: "form--fieldset", disabled: @ldap_auth_source.seeded_from_env? do %>
<legend class="form--fieldset-legend"><%= t("ldap_auth_sources.ldap_details") %></legend>
<div class="form--field">
<%= f.text_field :base_dn, size: 60, container_class: "-wide" %>
<span class="form--field-instructions">
<%= t("ldap_auth_sources.attribute_texts.base_dn") %>
</span>
</div>
<div class="form--field">
<%= f.text_area :filter_string,
rows: 10,
placeholder: "#{t(:label_default)}: (objectClass=*)",
container_class: "-wide" %>
<div class="form--field-instructions">
<p><%= t("ldap_auth_sources.attribute_texts.filter_string") %></p>
<p><%= t("ldap_auth_sources.attribute_texts.filter_string_concat") %></p>
</div>
</div>
<div class="form--field">
<%= f.check_box "onthefly_register", label: LdapAuthSource.human_attribute_name(:onthefly) %>
<div class="form--field-instructions">
<p><%= t("ldap_auth_sources.attribute_texts.onthefly_register") %></p>
</div>
</div>
<% end %>
<%= content_tag :fieldset, class: "form--fieldset", disabled: @ldap_auth_source.seeded_from_env? do %>
<legend class="form--fieldset-legend"><%= t("ldap_auth_sources.user_settings") %></legend>
<p><%= t "ldap_auth_sources.user_settings_legend" %></p>
<div class="form--field -required">
<%= f.text_field "attr_login",
label: LdapAuthSource.human_attribute_name(:login),
required: true,
size: 20,
placeholder: "uid",
container_class: "-middle" %>
<span class="form--field-instructions">
<%= t("ldap_auth_sources.attribute_texts.login_map") %>
</span>
</div>
<div class="form--field">
<%= f.text_field "attr_firstname",
label: LdapAuthSource.human_attribute_name(:firstname),
size: 20,
placeholder: "givenName",
container_class: "-middle" %>
<span class="form--field-instructions">
<%= t("ldap_auth_sources.attribute_texts.generic_map", attribute: LdapAuthSource.human_attribute_name(:firstname)) %>
</span>
</div>
<div class="form--field">
<%= f.text_field "attr_lastname",
label: LdapAuthSource.human_attribute_name(:lastname),
size: 20,
placeholder: "sn",
container_class: "-middle" %>
<span class="form--field-instructions">
<%= t("ldap_auth_sources.attribute_texts.generic_map", attribute: LdapAuthSource.human_attribute_name(:lastname)) %>
</span>
</div>
<div class="form--field">
<%= f.text_field "attr_mail",
label: LdapAuthSource.human_attribute_name(:mail),
size: 20,
placeholder: "mail",
container_class: "-middle" %>
<span class="form--field-instructions">
<%= t("ldap_auth_sources.attribute_texts.generic_map", attribute: LdapAuthSource.human_attribute_name(:mail)) %>
</span>
</div>
<div class="form--field">
<%= f.text_field "attr_admin", label: LdapAuthSource.human_attribute_name(:admin), size: 20, container_class: "-middle" %>
<span class="form--field-instructions">
<%= t("ldap_auth_sources.attribute_texts.admin_map_html") %>
</span>
</div>
<% end %>