Bug 31378: Rename Auth Provider to Identity Provider and add Client.t tests
authorAgustin Moyano <agustinmoyano@theke.io>
Wed, 26 Oct 2022 12:00:09 +0000 (09:00 -0300)
committerTomas Cohen Arazi <tomascohen@theke.io>
Tue, 8 Nov 2022 17:39:51 +0000 (14:39 -0300)
commit016105cf8c6af85e5140b9c4f10bc5986a53f4b1
treea5cd61d494d752d45ea56451ded63e9630d58a5f
parentc98d2f30091194540fec4d3069a8923fa112216a
Bug 31378: Rename Auth Provider to Identity Provider and add Client.t tests

Signed-off-by: Lukasz Koszyk <lukasz.koszyk@kit.edu>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
54 files changed:
Koha/Auth/Client.pm
Koha/Auth/Client/OAuth.pm
Koha/Auth/Identity/Provider.pm [new file with mode: 0644]
Koha/Auth/Identity/Provider/Domain.pm [new file with mode: 0644]
Koha/Auth/Identity/Provider/Domains.pm [new file with mode: 0644]
Koha/Auth/Identity/Provider/OAuth.pm [new file with mode: 0644]
Koha/Auth/Identity/Provider/OIDC.pm [new file with mode: 0644]
Koha/Auth/Identity/Providers.pm [new file with mode: 0644]
Koha/Auth/Provider.pm [deleted file]
Koha/Auth/Provider/Domain.pm [deleted file]
Koha/Auth/Provider/Domains.pm [deleted file]
Koha/Auth/Provider/OAuth.pm [deleted file]
Koha/Auth/Provider/OIDC.pm [deleted file]
Koha/Auth/Providers.pm [deleted file]
Koha/REST/Plugin/Auth.pm [deleted file]
Koha/REST/Plugin/Auth/IdP.pm [new file with mode: 0644]
Koha/REST/V1.pm
Koha/REST/V1/Auth/Identity/Provider/Domains.pm [new file with mode: 0644]
Koha/REST/V1/Auth/Identity/Providers.pm [new file with mode: 0644]
Koha/REST/V1/Auth/Provider/Domains.pm [deleted file]
Koha/REST/V1/Auth/Providers.pm [deleted file]
Koha/Schema/Result/AuthProvider.pm [deleted file]
Koha/Schema/Result/AuthProviderDomain.pm [deleted file]
Koha/Schema/Result/IdentityProvider.pm [new file with mode: 0644]
Koha/Schema/Result/IdentityProviderDomain.pm [new file with mode: 0644]
Koha/Template/Plugin/AuthClient.pm
admin/authentication_providers.pl [deleted file]
admin/identity_providers.pl [new file with mode: 0644]
api/v1/swagger/definitions/auth_provider.yaml [deleted file]
api/v1/swagger/definitions/auth_provider_domain.yaml [deleted file]
api/v1/swagger/definitions/identity_provider.yaml [new file with mode: 0644]
api/v1/swagger/definitions/identity_provider_domain.yaml [new file with mode: 0644]
api/v1/swagger/paths/auth.yaml
api/v1/swagger/swagger.yaml
installer/data/mysql/atomicupdate/bug_31378.pl
installer/data/mysql/kohastructure.sql
installer/data/mysql/mandatory/userpermissions.sql
koha-tmpl/intranet-tmpl/prog/en/includes/admin-menu.inc
koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc
koha-tmpl/intranet-tmpl/prog/en/modules/admin/admin-home.tt
koha-tmpl/intranet-tmpl/prog/en/modules/admin/authentication_provider_domains.tt [deleted file]
koha-tmpl/intranet-tmpl/prog/en/modules/admin/authentication_providers.tt [deleted file]
koha-tmpl/intranet-tmpl/prog/en/modules/admin/identity_provider_domains.tt [new file with mode: 0644]
koha-tmpl/intranet-tmpl/prog/en/modules/admin/identity_providers.tt [new file with mode: 0644]
koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt
koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc
koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-auth.tt
koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt
t/db_dependent/Koha/Auth/Client.t [new file with mode: 0644]
t/db_dependent/Koha/Auth/Identity/Provider.t [new file with mode: 0755]
t/db_dependent/Koha/Auth/Provider.t [deleted file]
t/db_dependent/Koha/REST/Plugin/Auth/IdP.t [new file with mode: 0644]
t/db_dependent/api/v1/idp.t [new file with mode: 0644]
t/lib/IdP/ExternalIdP.pm [new file with mode: 0644]