Github user aledsage commented on a diff in the pull request:

    https://github.com/apache/brooklyn-server/pull/821#discussion_r142123134
  
    --- Diff: 
rest/rest-resources/src/main/java/org/apache/brooklyn/rest/resources/AdjunctResource.java
 ---
    @@ -0,0 +1,264 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one
    + * or more contributor license agreements.  See the NOTICE file
    + * distributed with this work for additional information
    + * regarding copyright ownership.  The ASF licenses this file
    + * to you under the Apache License, Version 2.0 (the
    + * "License"); you may not use this file except in compliance
    + * with the License.  You may obtain a copy of the License at
    + *
    + *     http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing,
    + * software distributed under the License is distributed on an
    + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    + * KIND, either express or implied.  See the License for the
    + * specific language governing permissions and limitations
    + * under the License.
    + */
    +package org.apache.brooklyn.rest.resources;
    +
    +import java.util.Collections;
    +import java.util.List;
    +import java.util.Map;
    +import java.util.Set;
    +
    +import javax.ws.rs.core.Context;
    +import javax.ws.rs.core.Response;
    +import javax.ws.rs.core.UriInfo;
    +
    +import org.apache.brooklyn.api.entity.Entity;
    +import org.apache.brooklyn.api.internal.AbstractBrooklynObjectSpec;
    +import org.apache.brooklyn.api.objs.BrooklynObjectType;
    +import org.apache.brooklyn.api.objs.EntityAdjunct;
    +import org.apache.brooklyn.api.policy.Policy;
    +import org.apache.brooklyn.api.policy.PolicySpec;
    +import org.apache.brooklyn.api.sensor.Enricher;
    +import org.apache.brooklyn.api.sensor.EnricherSpec;
    +import org.apache.brooklyn.api.sensor.Feed;
    +import org.apache.brooklyn.api.typereg.RegisteredType;
    +import org.apache.brooklyn.config.ConfigKey;
    +import org.apache.brooklyn.core.config.ConfigPredicates;
    +import org.apache.brooklyn.core.entity.EntityInternal;
    +import org.apache.brooklyn.core.mgmt.entitlement.Entitlements;
    +import org.apache.brooklyn.rest.api.AdjunctApi;
    +import org.apache.brooklyn.rest.domain.AdjunctDetail;
    +import org.apache.brooklyn.rest.domain.AdjunctSummary;
    +import org.apache.brooklyn.rest.domain.ConfigSummary;
    +import org.apache.brooklyn.rest.domain.Status;
    +import org.apache.brooklyn.rest.domain.SummaryComparators;
    +import org.apache.brooklyn.rest.filter.HaHotStateRequired;
    +import org.apache.brooklyn.rest.transform.AdjunctTransformer;
    +import org.apache.brooklyn.rest.transform.ConfigTransformer;
    +import org.apache.brooklyn.rest.transform.EntityTransformer;
    +import org.apache.brooklyn.rest.util.BrooklynRestResourceUtils;
    +import org.apache.brooklyn.rest.util.WebResourceUtils;
    +import org.apache.brooklyn.util.core.ClassLoaderUtils;
    +import org.apache.brooklyn.util.core.flags.TypeCoercions;
    +import org.apache.brooklyn.util.exceptions.Exceptions;
    +import org.apache.brooklyn.util.text.Strings;
    +import org.slf4j.Logger;
    +import org.slf4j.LoggerFactory;
    +
    +import com.google.common.base.Function;
    +import com.google.common.base.Predicates;
    +import com.google.common.collect.FluentIterable;
    +import com.google.common.collect.Iterables;
    +import com.google.common.collect.Lists;
    +
    +@HaHotStateRequired
    +public class AdjunctResource extends AbstractBrooklynRestResource 
implements AdjunctApi {
    +
    +    private static final Logger log = 
LoggerFactory.getLogger(AdjunctResource.class);
    +
    +    private @Context UriInfo ui;
    +
    +    @Override
    +    public List<AdjunctSummary> list(String application, String 
entityToken, String adjunctType) {
    +        final Entity entity = brooklyn().getEntity(application, 
entityToken);
    +        Iterable<? extends EntityAdjunct> source = Collections.emptyList();
    +        boolean all = Strings.isBlank(adjunctType);
    +        boolean any = false;
    +        if (all || 
adjunctType.equalsIgnoreCase(BrooklynObjectType.POLICY.name())) {
    +            any = true;
    +            source = Iterables.concat(source, entity.policies());
    +        }
    +        if (all || 
adjunctType.equalsIgnoreCase(BrooklynObjectType.ENRICHER.name())) {
    +            any = true;
    +            source = Iterables.concat(source, entity.enrichers());
    +        }
    +        if (all || 
adjunctType.equalsIgnoreCase(BrooklynObjectType.FEED.name())) {
    +            any = true;
    +            source = Iterables.concat(source, 
((EntityInternal)entity).feeds());
    +        }
    +        if (!any) {
    +            throw WebResourceUtils.badRequest("Unknown adjunct type '%s'; 
use 'policy', 'enricher', or 'feed'", adjunctType);
    +        }
    +        return FluentIterable.from(source)
    +            .transform(new Function<EntityAdjunct, AdjunctSummary>() {
    +                @Override
    +                public AdjunctSummary apply(EntityAdjunct adjunct) {
    +                    return AdjunctTransformer.adjunctSummary(entity, 
adjunct, ui.getBaseUriBuilder());
    +                }
    +            })
    +            .toSortedList(SummaryComparators.nameComparator());
    +    }
    +
    +    // TODO would like to make 'config' arg optional but jersey complains 
if we do
    +    @SuppressWarnings({ "rawtypes", "unchecked" })
    +    @Override
    +    public AdjunctSummary addAdjunct(String application, String 
entityToken, String adjunctTypeName, Map<String, String> config) {
    +        Entity entity = brooklyn().getEntity(application, entityToken);
    +        if (!Entitlements.isEntitled(mgmt().getEntitlementManager(), 
Entitlements.MODIFY_ENTITY, entity)) {
    +            throw WebResourceUtils.forbidden("User '%s' is not authorized 
to modify entity '%s'",
    +                    Entitlements.getEntitlementContext().user(), entity);
    +        }
    +        
    +        RegisteredType rt = 
brooklyn().getTypeRegistry().get(adjunctTypeName);
    +        AbstractBrooklynObjectSpec<?, ?> spec;
    +        if (rt!=null) {
    +            spec = brooklyn().getTypeRegistry().createSpec(rt, null, null);
    +        } else {
    --- End diff --
    
    (I see this code is taken from `PolicyResource.addPolicy`, and has been 
approved - therefore no strong feelings for this PR.)
    
    Do we really need the fallback to java, or can we assume that it must be in 
the catalog? (we don't even support feeds, which aren't in the catalog yet).
    
    Ideally I'd like us to not have to support this code path, or to have a 
deprecation warning logged in that else branch (telling people to add it to the 
catalog).


---

Reply via email to