All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.enonic.xp.service.ServiceDescriptor Maven / Gradle / Ivy

There is a newer version: 7.14.4
Show newest version
package com.enonic.xp.service;

import java.util.Collection;

import com.enonic.xp.page.DescriptorKey;
import com.enonic.xp.resource.ResourceKey;
import com.enonic.xp.security.PrincipalKey;
import com.enonic.xp.security.PrincipalKeys;
import com.enonic.xp.security.RoleKeys;

public final class ServiceDescriptor
{
    private static final String ROOT_SERVICE_PREFIX = "services/";

    private final DescriptorKey key;

    private final PrincipalKeys allowedPrincipals;

    private ServiceDescriptor( final Builder builder )
    {
        key = builder.key;
        allowedPrincipals = builder.allowedPrincipals == null ? null : PrincipalKeys.from( builder.allowedPrincipals );
    }

    public DescriptorKey getKey()
    {
        return key;
    }

    public PrincipalKeys getAllowedPrincipals()
    {
        return allowedPrincipals;
    }

    public boolean isAccessAllowed( final PrincipalKeys principalKeys )
    {
        return allowedPrincipals == null || principalKeys.contains( RoleKeys.ADMIN ) ||
            allowedPrincipals.stream().anyMatch( principalKeys::contains );
    }

    public static ResourceKey toRootResourceKey( final DescriptorKey key )
    {
        return ResourceKey.from( key.getApplicationKey(), ROOT_SERVICE_PREFIX + key.getName() + "/" + key.getName() + ".xml" );
    }

    public static Builder create()
    {
        return new Builder();
    }

    public static final class Builder
    {
        private DescriptorKey key;

        private Collection allowedPrincipals;

        private Builder()
        {
        }

        public Builder key( final DescriptorKey key )
        {
            this.key = key;
            return this;
        }

        public Builder setAllowedPrincipals( final Collection allowedPrincipals )
        {
            this.allowedPrincipals = allowedPrincipals;
            return this;
        }

        public ServiceDescriptor build()
        {
            return new ServiceDescriptor( this );
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy