From 63fcdc14181c4872d72ad1107cab70f7ec7d607a Mon Sep 17 00:00:00 2001 From: Addison Beck Date: Tue, 12 Jan 2021 11:02:39 -0500 Subject: [PATCH] Implemented Custom role and permissions (#1057) * Implemented Custom role and permissions * Converted permissions columns to a json blob * Code review fixes for Permissions * sql build fix * Update Permissions.cs * formatting * Update IOrganizationService.cs * reworked a conditional * built out tests for relevant organization service methods * removed unused usings * fixed a broken test and a bad empty string init * removed 'Attribute' from some attribute instances --- .../Portal/Controllers/PoliciesController.cs | 6 +- .../src/Portal/Controllers/SsoController.cs | 4 +- .../Portal/EnterprisePortalCurrentContext.cs | 9 + .../src/Portal/Views/Home/Index.cshtml | 6 +- .../src/Portal/Views/Shared/_Layout.cshtml | 4 +- src/Api/Controllers/CiphersController.cs | 28 +- src/Api/Controllers/CollectionsController.cs | 17 +- src/Api/Controllers/EventsController.cs | 6 +- src/Api/Controllers/GroupsController.cs | 22 +- .../OrganizationUsersController.cs | 25 +- src/Api/Controllers/PoliciesController.cs | 6 +- src/Api/Controllers/TwoFactorController.cs | 6 +- .../Public/Controllers/MembersController.cs | 14 +- src/Core/CurrentContext.cs | 93 +++++ src/Core/Enums/OrganizationUserType.cs | 1 + src/Core/IdentityServer/ApiResources.cs | 3 +- .../OrganizationUpdateRequestModel.cs | 5 +- .../OrganizationUserRequestModels.cs | 11 +- .../Response/OrganizationUserResponseModel.cs | 5 +- .../ProfileOrganizationResponseModel.cs | 4 +- .../Models/Business/OrganizationUserInvite.cs | 27 ++ .../OrganizationUserOrganizationDetails.cs | 1 + .../Data/OrganizationUserUserDetails.cs | 1 + src/Core/Models/Data/Permissions.cs | 16 + src/Core/Models/Table/OrganizationUser.cs | 1 + src/Core/Services/IOrganizationService.cs | 8 +- .../Implementations/OrganizationService.cs | 138 +++++--- src/Core/Utilities/CoreHelpers.cs | 72 ++++ .../OrganizationUser_Create.sql | 11 +- ...OrganizationUser_CreateWithCollections.sql | 5 +- .../OrganizationUser_Update.sql | 8 +- ...OrganizationUser_UpdateWithCollections.sql | 6 +- src/Sql/dbo/Tables/OrganizationUser.sql | 23 +- ...rganizationUserOrganizationDetailsView.sql | 3 +- .../Views/OrganizationUserUserDetailsView.sql | 5 +- test/Core.Test/AutoFixture/CipherFixtures.cs | 2 +- .../AutoFixture/OrganizationFixtures.cs | 114 ++++++ .../Services/OrganizationServiceTests.cs | 218 ++++++++++++ .../DbScripts/2020-12-14_00_Permissions.sql | 331 ++++++++++++++++++ 39 files changed, 1116 insertions(+), 149 deletions(-) create mode 100644 src/Core/Models/Business/OrganizationUserInvite.cs create mode 100644 src/Core/Models/Data/Permissions.cs create mode 100644 test/Core.Test/AutoFixture/OrganizationFixtures.cs create mode 100644 util/Migrator/DbScripts/2020-12-14_00_Permissions.sql diff --git a/bitwarden_license/src/Portal/Controllers/PoliciesController.cs b/bitwarden_license/src/Portal/Controllers/PoliciesController.cs index 875246a606..ab3e5efd32 100644 --- a/bitwarden_license/src/Portal/Controllers/PoliciesController.cs +++ b/bitwarden_license/src/Portal/Controllers/PoliciesController.cs @@ -45,7 +45,7 @@ namespace Bit.Portal.Controllers } if (!_enterprisePortalCurrentContext.SelectedOrganizationDetails.UsePolicies || - !_enterprisePortalCurrentContext.AdminForSelectedOrganization) + !_enterprisePortalCurrentContext.CanManagePoliciesForSelectedOrganization) { return Redirect("~/"); } @@ -65,7 +65,7 @@ namespace Bit.Portal.Controllers } if (!_enterprisePortalCurrentContext.SelectedOrganizationDetails.UsePolicies || - !_enterprisePortalCurrentContext.AdminForSelectedOrganization) + !_enterprisePortalCurrentContext.CanManagePoliciesForSelectedOrganization) { return Redirect("~/"); } @@ -85,7 +85,7 @@ namespace Bit.Portal.Controllers } if (!_enterprisePortalCurrentContext.SelectedOrganizationDetails.UsePolicies || - !_enterprisePortalCurrentContext.AdminForSelectedOrganization) + !_enterprisePortalCurrentContext.CanManagePoliciesForSelectedOrganization) { return Redirect("~/"); } diff --git a/bitwarden_license/src/Portal/Controllers/SsoController.cs b/bitwarden_license/src/Portal/Controllers/SsoController.cs index f5e05f7f82..7757a11abd 100644 --- a/bitwarden_license/src/Portal/Controllers/SsoController.cs +++ b/bitwarden_license/src/Portal/Controllers/SsoController.cs @@ -41,7 +41,7 @@ namespace Bit.Portal.Controllers } if (!_enterprisePortalCurrentContext.SelectedOrganizationDetails.UseSso || - !_enterprisePortalCurrentContext.AdminForSelectedOrganization) + !_enterprisePortalCurrentContext.CanManageSsoForSelectedOrganization) { return Redirect("~/"); } @@ -63,7 +63,7 @@ namespace Bit.Portal.Controllers } if (!_enterprisePortalCurrentContext.SelectedOrganizationDetails.UseSso || - !_enterprisePortalCurrentContext.AdminForSelectedOrganization) + !_enterprisePortalCurrentContext.CanManageSsoForSelectedOrganization) { return Redirect("~/"); } diff --git a/bitwarden_license/src/Portal/EnterprisePortalCurrentContext.cs b/bitwarden_license/src/Portal/EnterprisePortalCurrentContext.cs index c38937337f..8d43e5aebd 100644 --- a/bitwarden_license/src/Portal/EnterprisePortalCurrentContext.cs +++ b/bitwarden_license/src/Portal/EnterprisePortalCurrentContext.cs @@ -7,6 +7,7 @@ using Bit.Core.Repositories; using System.Linq; using System.Collections.Generic; using Bit.Core.Models.Data; +using Bit.Core.Utilities; namespace Bit.Portal { @@ -37,6 +38,14 @@ namespace Bit.Portal public bool OwnerForSelectedOrganization => SelectedOrganizationDetails?.Type == Core.Enums.OrganizationUserType.Owner; + public bool CanManagePoliciesForSelectedOrganization => + AdminForSelectedOrganization || SelectedOrganizationDetailsPermissions.ManagePolicies == true; + + public bool CanManageSsoForSelectedOrganization => + AdminForSelectedOrganization || SelectedOrganizationDetailsPermissions.ManageSso == true; + + public Permissions SelectedOrganizationDetailsPermissions => CoreHelpers.LoadClassFromJsonData(SelectedOrganizationDetails?.Permissions); + public async override Task SetContextAsync(ClaimsPrincipal user) { var nameId = user.FindFirstValue(ClaimTypes.NameIdentifier); diff --git a/bitwarden_license/src/Portal/Views/Home/Index.cshtml b/bitwarden_license/src/Portal/Views/Home/Index.cshtml index 5324f15f18..2d021f3556 100644 --- a/bitwarden_license/src/Portal/Views/Home/Index.cshtml +++ b/bitwarden_license/src/Portal/Views/Home/Index.cshtml @@ -10,7 +10,7 @@
@if (EnterprisePortalCurrentContext.SelectedOrganizationDetails.UseSso && - EnterprisePortalCurrentContext.AdminForSelectedOrganization) + EnterprisePortalCurrentContext.CanManageSsoForSelectedOrganization) { \ No newline at end of file +
diff --git a/bitwarden_license/src/Portal/Views/Shared/_Layout.cshtml b/bitwarden_license/src/Portal/Views/Shared/_Layout.cshtml index c7151ea302..63a3959f5f 100644 --- a/bitwarden_license/src/Portal/Views/Shared/_Layout.cshtml +++ b/bitwarden_license/src/Portal/Views/Shared/_Layout.cshtml @@ -32,7 +32,7 @@