Search in sources :

Example 16 with SiteInfo

use of org.alfresco.service.cmr.site.SiteInfo in project alfresco-remote-api by Alfresco.

the class SiteMembershipRequestsImpl method approveSiteMembershipRequest.

@Override
public void approveSiteMembershipRequest(String siteId, String inviteeId, SiteMembershipApproval siteMembershipApproval) {
    SiteInfo siteInfo = sites.validateSite(siteId);
    if (siteInfo == null) {
        throw new EntityNotFoundException(siteId);
    }
    // Set the site id to the short name (to deal with case sensitivity issues with
    // using the siteId from the url)
    siteId = siteInfo.getShortName();
    // Validate invitation.
    Invitation invitation = getSiteInvitation(inviteeId, siteId);
    if (invitation == null || !(invitation instanceof ModeratedInvitation)) {
        throw new RelationshipResourceNotFoundException(siteId, inviteeId);
    }
    ModeratedInvitation moderatedInvitation = (ModeratedInvitation) invitation;
    ResourceType resourceType = moderatedInvitation.getResourceType();
    if (!resourceType.equals(ResourceType.WEB_SITE) || !SiteVisibility.MODERATED.equals(siteInfo.getVisibility())) {
        // note: security, no indication that this has a different visibility
        throw new RelationshipResourceNotFoundException(siteId, inviteeId);
    }
    try {
        invitationService.approve(invitation.getInviteId(), "");
    } catch (InvitationExceptionForbidden ex) {
        throw new PermissionDeniedException();
    }
    // approval role differs from default one.
    if (siteMembershipApproval != null && !(siteMembershipApproval.getRole() == null || siteMembershipApproval.getRole().isEmpty())) {
        String role = siteMembershipApproval.getRole();
        // Check if role chosen by moderator differs from the invite role.
        if (!moderatedInvitation.getRoleName().equals(role)) {
            String currentUserId = AuthenticationUtil.getFullyAuthenticatedUser();
            // Update invitation with new role.
            try {
                addSiteMembership(invitation.getInviteeUserName(), siteId, role, currentUserId);
            } catch (UnknownAuthorityException e) {
                logger.debug("addSiteMember:  UnknownAuthorityException " + siteId + " person " + invitation.getInviteId() + " role " + role);
                throw new InvalidArgumentException("Unknown role '" + role + "'");
            }
        }
    }
}
Also used : RelationshipResourceNotFoundException(org.alfresco.rest.framework.core.exceptions.RelationshipResourceNotFoundException) SiteInfo(org.alfresco.service.cmr.site.SiteInfo) InvalidArgumentException(org.alfresco.rest.framework.core.exceptions.InvalidArgumentException) ModeratedInvitation(org.alfresco.service.cmr.invitation.ModeratedInvitation) Invitation(org.alfresco.service.cmr.invitation.Invitation) ModeratedInvitation(org.alfresco.service.cmr.invitation.ModeratedInvitation) InvitationExceptionForbidden(org.alfresco.service.cmr.invitation.InvitationExceptionForbidden) ResourceType(org.alfresco.service.cmr.invitation.Invitation.ResourceType) PermissionDeniedException(org.alfresco.rest.framework.core.exceptions.PermissionDeniedException) EntityNotFoundException(org.alfresco.rest.framework.core.exceptions.EntityNotFoundException) UnknownAuthorityException(org.alfresco.repo.security.authority.UnknownAuthorityException)

Example 17 with SiteInfo

use of org.alfresco.service.cmr.site.SiteInfo in project alfresco-remote-api by Alfresco.

the class SiteMembershipRequestsImpl method cancelSiteMembershipRequest.

@Override
public void cancelSiteMembershipRequest(String inviteeId, String siteId) {
    inviteeId = people.validatePerson(inviteeId);
    SiteInfo siteInfo = sites.validateSite(siteId);
    if (siteInfo == null) {
        // site does not exist
        throw new RelationshipResourceNotFoundException(inviteeId, siteId);
    }
    // set the site id to the short name (to deal with case sensitivity issues with using the siteId from the url)
    siteId = siteInfo.getShortName();
    Invitation invitation = getSiteInvitation(inviteeId, siteId);
    if (invitation == null) {
        // no such invitation
        throw new RelationshipResourceNotFoundException(inviteeId, siteId);
    }
    invitationService.cancel(invitation.getInviteId());
}
Also used : RelationshipResourceNotFoundException(org.alfresco.rest.framework.core.exceptions.RelationshipResourceNotFoundException) SiteInfo(org.alfresco.service.cmr.site.SiteInfo) ModeratedInvitation(org.alfresco.service.cmr.invitation.ModeratedInvitation) Invitation(org.alfresco.service.cmr.invitation.Invitation)

Example 18 with SiteInfo

use of org.alfresco.service.cmr.site.SiteInfo in project alfresco-remote-api by Alfresco.

the class SiteMembershipRequestsImpl method createSiteMembershipRequest.

@Override
public SiteMembershipRequest createSiteMembershipRequest(String inviteeId, final SiteMembershipRequest siteInvite) {
    SiteMembershipRequest request = null;
    inviteeId = people.validatePerson(inviteeId, true);
    // Note that the order of error checking is important. The server first needs to check for the status 404
    // conditions before checking for status 400 conditions. Otherwise the server is open to a probing attack.
    String siteId = siteInvite.getId();
    final SiteInfo siteInfo = sites.validateSite(siteId);
    if (siteInfo == null) {
        // site does not exist
        throw new RelationshipResourceNotFoundException(inviteeId, siteId);
    }
    // set the site id to the short name (to deal with case sensitivity issues with using the siteId from the url)
    siteId = siteInfo.getShortName();
    final SiteVisibility siteVisibility = siteInfo.getVisibility();
    if (siteVisibility.equals(SiteVisibility.PRIVATE)) {
        // note: security, no indication that this is a private site
        throw new RelationshipResourceNotFoundException(inviteeId, siteId);
    }
    // Is the invitee already a member of the site?
    boolean isMember = siteService.isMember(siteId, inviteeId);
    if (isMember) {
        // yes
        throw new InvalidArgumentException(inviteeId + " is already a member of site " + siteId);
    }
    // Is there an outstanding site invite request for the (invitee, site)?
    Invitation invitation = getSiteInvitation(inviteeId, siteId);
    if (invitation != null) {
        // yes
        throw new InvalidArgumentException(inviteeId + " is already invited to site " + siteId);
    }
    final String inviteeRole = DEFAULT_ROLE;
    String message = siteInvite.getMessage();
    if (message == null) {
        // the invitation service ignores null messages so convert to an empty message.
        message = "";
    }
    if (siteVisibility.equals(SiteVisibility.MODERATED)) {
        request = inviteToModeratedSite(message, inviteeId, siteId, inviteeRole);
    } else if (siteVisibility.equals(SiteVisibility.PUBLIC)) {
        request = inviteToPublicSite(siteInfo, message, inviteeId, inviteeRole);
    } else {
        // note: security, no indication that this is a private site
        throw new RelationshipResourceNotFoundException(inviteeId, siteId);
    }
    return request;
}
Also used : RelationshipResourceNotFoundException(org.alfresco.rest.framework.core.exceptions.RelationshipResourceNotFoundException) SiteInfo(org.alfresco.service.cmr.site.SiteInfo) InvalidArgumentException(org.alfresco.rest.framework.core.exceptions.InvalidArgumentException) ModeratedInvitation(org.alfresco.service.cmr.invitation.ModeratedInvitation) Invitation(org.alfresco.service.cmr.invitation.Invitation) SiteMembershipRequest(org.alfresco.rest.api.model.SiteMembershipRequest) SiteVisibility(org.alfresco.service.cmr.site.SiteVisibility)

Example 19 with SiteInfo

use of org.alfresco.service.cmr.site.SiteInfo in project alfresco-remote-api by Alfresco.

the class SiteMembershipRequestsImpl method getSiteMembershipRequest.

public SiteMembershipRequest getSiteMembershipRequest(String inviteeId, final String siteId) {
    inviteeId = people.validatePerson(inviteeId);
    SiteInfo siteInfo = AuthenticationUtil.runAsSystem(new RunAsWork<SiteInfo>() {

        @Override
        public SiteInfo doWork() throws Exception {
            SiteInfo siteInfo = sites.validateSite(siteId);
            return siteInfo;
        }
    });
    if (siteInfo == null) {
        // site does not exist
        throw new RelationshipResourceNotFoundException(inviteeId, siteId);
    }
    if (siteInfo.getVisibility().equals(SiteVisibility.MODERATED)) {
        // set the site id to the short name (to deal with case sensitivity issues with using the siteId from the url)
        String normalizedSiteId = siteInfo.getShortName();
        Invitation invitation = getSiteInvitation(inviteeId, normalizedSiteId);
        if (invitation == null) {
            // no such invitation
            throw new RelationshipResourceNotFoundException(inviteeId, normalizedSiteId);
        }
        if (invitation instanceof ModeratedInvitation) {
            ModeratedInvitation moderatedInvitation = (ModeratedInvitation) invitation;
            SiteMembershipRequest siteInvite = getSiteMembershipRequest(moderatedInvitation);
            return siteInvite;
        } else {
            throw new InvalidArgumentException("Expected moderated invitation");
        }
    } else {
        // non-moderated sites cannot appear in a site membership request, so throw an exception
        throw new RelationshipResourceNotFoundException(inviteeId, siteId);
    }
}
Also used : RelationshipResourceNotFoundException(org.alfresco.rest.framework.core.exceptions.RelationshipResourceNotFoundException) SiteInfo(org.alfresco.service.cmr.site.SiteInfo) InvalidArgumentException(org.alfresco.rest.framework.core.exceptions.InvalidArgumentException) ModeratedInvitation(org.alfresco.service.cmr.invitation.ModeratedInvitation) Invitation(org.alfresco.service.cmr.invitation.Invitation) ModeratedInvitation(org.alfresco.service.cmr.invitation.ModeratedInvitation) SiteMembershipRequest(org.alfresco.rest.api.model.SiteMembershipRequest) PermissionDeniedException(org.alfresco.rest.framework.core.exceptions.PermissionDeniedException) EntityNotFoundException(org.alfresco.rest.framework.core.exceptions.EntityNotFoundException) UnknownAuthorityException(org.alfresco.repo.security.authority.UnknownAuthorityException) AlfrescoRuntimeException(org.alfresco.error.AlfrescoRuntimeException) RelationshipResourceNotFoundException(org.alfresco.rest.framework.core.exceptions.RelationshipResourceNotFoundException) InvalidArgumentException(org.alfresco.rest.framework.core.exceptions.InvalidArgumentException)

Example 20 with SiteInfo

use of org.alfresco.service.cmr.site.SiteInfo in project alfresco-remote-api by Alfresco.

the class SiteMembershipRequestsImpl method updateSiteMembershipRequest.

@Override
public SiteMembershipRequest updateSiteMembershipRequest(String inviteeId, final SiteMembershipRequest siteInvite) {
    SiteMembershipRequest updatedSiteInvite = null;
    inviteeId = people.validatePerson(inviteeId, true);
    String siteId = siteInvite.getId();
    SiteInfo siteInfo = sites.validateSite(siteId);
    if (siteInfo == null) {
        // site does not exist
        throw new RelationshipResourceNotFoundException(inviteeId, siteId);
    }
    // set the site id to the short name (to deal with case sensitivity issues with using the siteId from the url)
    siteId = siteInfo.getShortName();
    String message = siteInvite.getMessage();
    if (message == null) {
        // the invitation service ignores null messages so convert to an empty message.
        message = "";
    }
    try {
        ModeratedInvitation updatedInvitation = invitationService.updateModeratedInvitation(inviteeId, siteId, message);
        if (updatedInvitation == null) {
            throw new RelationshipResourceNotFoundException(inviteeId, siteId);
        }
        updatedSiteInvite = getSiteMembershipRequest(updatedInvitation);
    } catch (InvitationExceptionNotFound e) {
        throw new RelationshipResourceNotFoundException(inviteeId, siteId);
    }
    if (updatedSiteInvite == null) {
        throw new RelationshipResourceNotFoundException(inviteeId, siteId);
    }
    return updatedSiteInvite;
}
Also used : RelationshipResourceNotFoundException(org.alfresco.rest.framework.core.exceptions.RelationshipResourceNotFoundException) SiteInfo(org.alfresco.service.cmr.site.SiteInfo) ModeratedInvitation(org.alfresco.service.cmr.invitation.ModeratedInvitation) InvitationExceptionNotFound(org.alfresco.service.cmr.invitation.InvitationExceptionNotFound) SiteMembershipRequest(org.alfresco.rest.api.model.SiteMembershipRequest)

Aggregations

SiteInfo (org.alfresco.service.cmr.site.SiteInfo)103 NodeRef (org.alfresco.service.cmr.repository.NodeRef)42 ArrayList (java.util.ArrayList)22 Test (org.junit.Test)18 BaseUnitTest (org.alfresco.module.org_alfresco_module_rm.test.util.BaseUnitTest)15 FilterPropString (org.alfresco.repo.node.getchildren.FilterPropString)15 EntityNotFoundException (org.alfresco.rest.framework.core.exceptions.EntityNotFoundException)15 RelationshipResourceNotFoundException (org.alfresco.rest.framework.core.exceptions.RelationshipResourceNotFoundException)15 InvalidArgumentException (org.alfresco.rest.framework.core.exceptions.InvalidArgumentException)13 QName (org.alfresco.service.namespace.QName)13 HashMap (java.util.HashMap)12 AlfrescoRuntimeException (org.alfresco.error.AlfrescoRuntimeException)12 ChildAssociationRef (org.alfresco.service.cmr.repository.ChildAssociationRef)12 WebScriptException (org.springframework.extensions.webscripts.WebScriptException)12 IOException (java.io.IOException)8 Serializable (java.io.Serializable)8 JSONObject (org.json.simple.JSONObject)8 RMSite (org.alfresco.rm.rest.api.model.RMSite)7 UnknownAuthorityException (org.alfresco.repo.security.authority.UnknownAuthorityException)5 AccessDeniedException (org.alfresco.repo.security.permissions.AccessDeniedException)5