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

org.jclouds.digitalocean2.DigitalOcean2ApiMetadata Maven / Gradle / Ivy

The newest version!
/*
 * 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.jclouds.digitalocean2;

import static org.jclouds.Constants.PROPERTY_SESSION_INTERVAL;
import static org.jclouds.compute.config.ComputeServiceProperties.POLL_INITIAL_PERIOD;
import static org.jclouds.compute.config.ComputeServiceProperties.POLL_MAX_PERIOD;
import static org.jclouds.compute.config.ComputeServiceProperties.TEMPLATE;
import static org.jclouds.compute.config.ComputeServiceProperties.TIMEOUT_NODE_RUNNING;
import static org.jclouds.compute.config.ComputeServiceProperties.TIMEOUT_NODE_SUSPENDED;
import static org.jclouds.compute.config.ComputeServiceProperties.TIMEOUT_NODE_TERMINATED;
import static org.jclouds.oauth.v2.config.CredentialType.BEARER_TOKEN_CREDENTIALS;
import static org.jclouds.oauth.v2.config.OAuthProperties.AUDIENCE;
import static org.jclouds.oauth.v2.config.OAuthProperties.CREDENTIAL_TYPE;
import static org.jclouds.oauth.v2.config.OAuthProperties.JWS_ALG;
import static org.jclouds.reflect.Reflection2.typeToken;

import java.net.URI;
import java.util.Properties;

import org.jclouds.apis.ApiMetadata;
import org.jclouds.compute.ComputeServiceContext;
import org.jclouds.digitalocean2.compute.config.DigitalOcean2ComputeServiceContextModule;
import org.jclouds.digitalocean2.config.DigitalOcean2HttpApiModule;
import org.jclouds.digitalocean2.config.DigitalOceanParserModule;
import org.jclouds.oauth.v2.config.OAuthModule;
import org.jclouds.rest.internal.BaseHttpApiMetadata;

import com.google.common.collect.ImmutableSet;
import com.google.inject.Module;

/**
 * Implementation of {@link ApiMetadata} for DigitalOcean v2 API
 */
public class DigitalOcean2ApiMetadata extends BaseHttpApiMetadata {

   @Override
   public Builder toBuilder() {
      return new Builder().fromApiMetadata(this);
   }

   public DigitalOcean2ApiMetadata() {
      this(new Builder());
   }

   protected DigitalOcean2ApiMetadata(Builder builder) {
      super(builder);
   }

   public static Properties defaultProperties() {
      Properties properties = BaseHttpApiMetadata.defaultProperties();
      properties.put("oauth.endpoint", "https://cloud.digitalocean.com/v1/oauth/token");
      properties.put(JWS_ALG, "RS256");
      properties.put(AUDIENCE, "https://cloud.digitalocean.com/v1/oauth/token");
      properties.put(CREDENTIAL_TYPE, BEARER_TOKEN_CREDENTIALS.toString());
      properties.put(PROPERTY_SESSION_INTERVAL, 3600);
      properties.put(TEMPLATE, "osFamily=UBUNTU,os64Bit=true,osVersionMatches=16.*");
      properties.put(POLL_INITIAL_PERIOD, 5000);
      properties.put(POLL_MAX_PERIOD, 20000);
      // Node operations in DigitalOcean can be quite slow. Use a 5 minutes
      // timeout by default
      properties.put(TIMEOUT_NODE_RUNNING, 300000);
      properties.put(TIMEOUT_NODE_SUSPENDED, 300000);
      properties.put(TIMEOUT_NODE_TERMINATED, 300000);
      return properties;
   }

   public static class Builder extends BaseHttpApiMetadata.Builder {

      protected Builder() {
         id("digitalocean2")
                 .name("Digital Ocean v2 API")
                 .identityName("Not used for OAuth")
                 .credentialName("Must be oauth2 Bearer Token")
                 .documentation(URI.create("https://developers.digitalocean.com/v2/"))
                 .defaultEndpoint("https://api.digitalocean.com/v2")
                 .defaultProperties(DigitalOcean2ApiMetadata.defaultProperties())
                 .view(typeToken(ComputeServiceContext.class))
                 .defaultModules(ImmutableSet.>builder()
                       .add(DigitalOcean2HttpApiModule.class)
                       .add(OAuthModule.class)
                       .add(DigitalOceanParserModule.class)
                       .add(DigitalOcean2ComputeServiceContextModule.class)
                       .build());
      }

      @Override
      public DigitalOcean2ApiMetadata build() {
         return new DigitalOcean2ApiMetadata(this);
      }

      @Override
      protected Builder self() {
         return this;
      }
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy