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

org.jclouds.vcloud.binders.OrgNameAndCatalogNameToEndpoint Maven / Gradle / Ivy

The newest version!
/**
 * Licensed to jclouds, Inc. (jclouds) under one or more
 * contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  jclouds 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.jclouds.vcloud.binders;

import static com.google.common.base.Preconditions.checkNotNull;

import java.net.URI;
import java.util.Map;
import java.util.NoSuchElementException;

import javax.inject.Inject;
import javax.inject.Singleton;

import org.jclouds.http.HttpRequest;
import org.jclouds.rest.MapBinder;
import org.jclouds.vcloud.domain.Org;
import org.jclouds.vcloud.domain.ReferenceType;
import org.jclouds.vcloud.endpoints.Catalog;

import com.google.common.base.Supplier;
import com.google.common.collect.Iterables;

/**
 * 
 * @author Adrian Cole
 */
@Singleton
public class OrgNameAndCatalogNameToEndpoint implements MapBinder {
   private final Supplier> orgMap;
   private final Supplier defaultOrg;
   private final Supplier defaultCatalog;

   @Inject
   public OrgNameAndCatalogNameToEndpoint(Supplier> orgMap,
         @org.jclouds.vcloud.endpoints.Org Supplier defaultOrg,
         @Catalog Supplier defaultCatalog) {
      this.orgMap = orgMap;
      this.defaultOrg = defaultOrg;
      this.defaultCatalog = defaultCatalog;
   }

   @SuppressWarnings("unchecked")
   @Override
   public  R bindToRequest(R request, Map postParams) {
      Object org = postParams.get("orgName");
      Object catalog = postParams.get("catalogName");
      if (org == null && catalog == null)
         return (R) request.toBuilder().endpoint(defaultCatalog.get().getHref()).build();
      else if (org == null)
         org = defaultOrg.get().getName();

      try {
         Map catalogs = checkNotNull(orgMap.get().get(org)).getCatalogs();
         URI endpoint = catalog == null ? Iterables.getLast(catalogs.values()).getHref() : catalogs.get(catalog).getHref();
         return (R) request.toBuilder().endpoint(endpoint).build();
      } catch (NullPointerException e) {
         throw new NoSuchElementException(org + "/" + catalog + " not found in " + orgMap.get());
      }
   }
   
   @Override
   public  R bindToRequest(R request, Object input) {
      throw new IllegalStateException(getClass() + " needs parameters");
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy