You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by is...@apache.org on 2020/06/22 13:47:35 UTC

[airavata-custos] branch develop updated (bbe040f -> e01a575)

This is an automated email from the ASF dual-hosted git repository.

isjarana pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata-custos.git.


    from bbe040f  Merge pull request #74 from isururanawaka/credential_store
     new 477b3b3  Hireachical group membership support
     new df1dbd5  Add memebership change, access validation
     new e01a575  Merge pull request #77 from isururanawaka/sharing_service

The 240 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../user/profile/client/UserProfileClient.java     |  36 +-
 custos-core-services/pom.xml                       |   1 +
 .../Dockerfile                                     |   0
 .../pom.xml                                        |  12 +-
 .../src/main/helm/.helmignore                      |   0
 .../sharing-core-service}/src/main/helm/Chart.yaml |   2 +-
 .../src/main/helm/templates/NOTES.txt              |   0
 .../src/main/helm/templates/_helpers.tpl           |   0
 .../src/main/helm/templates/deployment.yaml        |   0
 .../src/main/helm/templates/ingress.yaml           |   0
 .../src/main/helm/templates/service.yaml           |   0
 .../src/main/helm/templates/serviceaccount.yaml    |   0
 .../main/helm/templates/tests/test-connection.yaml |   0
 .../src/main/helm/values.yaml                      |   0
 .../custos/sharing/SharingServiceInitializer.java} |  20 +-
 .../src/main/proto/SharingService.proto}           |   4 +-
 .../src/main/resources/application.properties      |  14 +-
 .../profile/UserProfileServiceInitializer.java     |   8 +
 .../custos/user/profile/mapper/GroupMapper.java    |  40 +-
 .../user/profile/mapper/UserProfileMapper.java     |  51 +-
 .../user/profile/persistance/model/Group.java      |  44 +-
 .../persistance/model/GroupToGroupMembership.java} | 104 ++--
 ...oupMembership.java => UserGroupMembership.java} |  41 +-
 .../model/UserGroupMembershipType.java}            | 100 +--
 .../profile/persistance/model/UserProfile.java     |  28 +-
 .../repository/GroupMembershipRepository.java      |  14 +-
 .../repository/GroupMembershipTypeRepository.java} |   7 +-
 .../GroupToGroupMembershipRepository.java}         |  12 +-
 .../user/profile/service/UserProfileService.java   | 690 ++++++++++++++++++++-
 .../user/profile/validators/InputValidator.java    | 126 +++-
 .../src/main/proto/UserProfileService.proto        |  47 +-
 .../services/clients/keycloak/KeycloakClient.java  |   6 +-
 .../src/main/resources/group-management-service.pb | Bin 108703 -> 116752 bytes
 .../management/interceptors/InputValidator.java    |   4 +
 .../interceptors/UserAuthInterceptorImpl.java      | 100 ++-
 .../management/service/GroupManagementService.java | 200 +++++-
 .../src/main/proto/GroupManagementService.proto    |  59 +-
 .../src/main/resources/user-management-service.pb  | Bin 119299 -> 122359 bytes
 38 files changed, 1526 insertions(+), 244 deletions(-)
 copy custos-core-services/{utility-services/custos-configuration-service => sharing-core-service}/Dockerfile (100%)
 copy custos-core-services/{resource-secret-core-service => sharing-core-service}/pom.xml (91%)
 copy {custos-integration-services/user-management-service-parent/user-management-service => custos-core-services/sharing-core-service}/src/main/helm/.helmignore (100%)
 copy {custos-integration-services/scim-service => custos-core-services/sharing-core-service}/src/main/helm/Chart.yaml (61%)
 copy {custos-integration-services/user-management-service-parent/user-management-service => custos-core-services/sharing-core-service}/src/main/helm/templates/NOTES.txt (100%)
 copy {custos-integration-services/user-management-service-parent/user-management-service => custos-core-services/sharing-core-service}/src/main/helm/templates/_helpers.tpl (100%)
 copy custos-core-services/{user-profile-core-service => sharing-core-service}/src/main/helm/templates/deployment.yaml (100%)
 copy custos-core-services/{utility-services/custos-configuration-service => sharing-core-service}/src/main/helm/templates/ingress.yaml (100%)
 copy custos-core-services/{user-profile-core-service => sharing-core-service}/src/main/helm/templates/service.yaml (100%)
 copy {custos-integration-services/user-management-service-parent/user-management-service => custos-core-services/sharing-core-service}/src/main/helm/templates/serviceaccount.yaml (100%)
 copy {custos-integration-services/user-management-service-parent/user-management-service => custos-core-services/sharing-core-service}/src/main/helm/templates/tests/test-connection.yaml (100%)
 copy custos-core-services/{user-profile-core-service => sharing-core-service}/src/main/helm/values.yaml (100%)
 copy custos-core-services/{resource-secret-core-service/src/main/java/org/apache/custos/resource/secret/ResourceSecretServiceInitializer.java => sharing-core-service/src/main/java/org/apache/custos/sharing/SharingServiceInitializer.java} (80%)
 copy custos-core-services/{resource-secret-core-service/src/main/proto/ResourceSecretService.proto => sharing-core-service/src/main/proto/SharingService.proto} (97%)
 copy custos-core-services/{tenant-profile-core-service => sharing-core-service}/src/main/resources/application.properties (74%)
 copy custos-core-services/{resource-secret-core-service/src/main/java/org/apache/custos/resource/secret/persistance/local/model/Secret.java => user-profile-core-service/src/main/java/org/apache/custos/user/profile/persistance/model/GroupToGroupMembership.java} (52%)
 rename custos-core-services/user-profile-core-service/src/main/java/org/apache/custos/user/profile/persistance/model/{GroupMembership.java => UserGroupMembership.java} (65%)
 copy custos-core-services/{resource-secret-core-service/src/main/java/org/apache/custos/resource/secret/persistance/local/model/Secret.java => user-profile-core-service/src/main/java/org/apache/custos/user/profile/persistance/model/UserGroupMembershipType.java} (51%)
 copy custos-core-services/{resource-secret-core-service/src/main/java/org/apache/custos/resource/secret/persistance/local/repository/SecretRepository.java => user-profile-core-service/src/main/java/org/apache/custos/user/profile/persistance/repository/GroupMembershipTypeRepository.java} (77%)
 copy custos-core-services/{resource-secret-core-service/src/main/java/org/apache/custos/resource/secret/persistance/local/repository/SecretRepository.java => user-profile-core-service/src/main/java/org/apache/custos/user/profile/persistance/repository/GroupToGroupMembershipRepository.java} (66%)