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

com.profitbricks.sdk.Commands.groovy Maven / Gradle / Ivy

The newest version!
/*
   Copyright 2018 Profitbricks GmbH

   Licensed 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 com.profitbricks.sdk

import com.profitbricks.sdk.model.*
import org.apache.http.client.HttpResponseException

import static com.profitbricks.sdk.Common.*
import static groovyx.net.http.ContentType.URLENC


/**
 * provides commands for provisioned resources
 *
 * @author fudge 
 */
class Commands {

    // --------------------------------- S T O R A G E   A T T A C H E M E N T   C O M M A N D S ---------------------------------

    /**
     * attaches a given volume or image to a given server
     * @see attach a volume
     * @see attach a cd-rom
     *
     * @param server an existing {@link Server}
     * @param thing an existing attached {@link Volume} or {@link Image}
     * @return true if attaching worked, false otherwise
     * @throws IllegalArgumentException in case the given thing is neither volume or image
     */
    final static boolean attach(final Server server, final ModelBase thing, final Map options = [:]) {
        waitFor(
            API.post(requestFor("${server.resource}/${server.id}/${pathFor(thing.class)}", options) + [body: [id: thing.id]]),
            options
        )?.status == 202
    }

    /**
     * lists the ids of all attached volumes or images for a given server
     * @see list attached volumes
     * @see list attached cd-roms
     *
     * @param server a valid {@link Server} instance
     * @param type one of {@link Volume} (default) or {@link Image}
     * @return a list of {@link Volume} or {@link Image} ids
     * @throws IllegalArgumentException in case the given thing is neither {@link Volume} or {@link Image}
     */
    static final List attached(final Server server, final Class attachedType = Volume, final Map options = [:]) {
        API.get(requestFor("${server.resource}/${server.id}/${pathFor(attachedType)}", options))?.data?.items?.collect {it.id}
    }
    
    /**
     * detaches a given attached volume from a given server
     * @see detach a volume
     * @see detach a cd-rom
     *
     * @param server an existing {@link Server}
     * @param thing an existing attached {@link Volume} or {@link Image}
     * @return true if detaching worked, false otherwise
     */
    static final boolean detach(final Server server, final ModelBase thing, final Map options = [:]) {
        waitFor(API.delete(requestFor("${server.resource}/${server.id}/${pathFor(thing.class)}/${thing.id}", options)), options)?.status == 202
    }

    private final static String pathFor(final Class clz) {
        switch (clz) {
            case Volume: return 'volumes'
            case Image: return 'cdroms'
            default:
                throw new IllegalArgumentException("unable to access attached resources of class ${clz?.simpleName}")
        }
    }


    // --------------------------------- S E R V E R   C O M M A N D S ---------------------------------

    /**
     * starts a given server
     * @see start a server
     *
     * @param server an existing {@link Server}
     * @return true if the start worked, false otherwise
     */
    static final boolean start(final Server server, final Map options = [:]) {
        waitFor(API.post(requestFor("${server.resource}/${server.id}/start", options)), options)?.status == 202
    }

    /**
     * stops a given server
     * @see stop a server
     *
     * @param server an existing {@link Server}
     * @return true if the stop worked, false otherwise
     */
    static final boolean stop(final Server server, final Map options = [:]) {
        waitFor(API.post(requestFor("${server.resource}/${server.id}/stop", options)), options)?.status == 202
    }

    /**
     * reboots a given server
     * @see reboot a server
     *
     * @param server an existing {@link Server}
     * @return true if the reboot worked, false otherwise
     */
    static final boolean reboot(final Server server, final Map options = [:]) {
        waitFor(API.post(requestFor("${server.resource}/${server.id}/reboot", options)), options)?.status == 202
    }


    // --------------------------------- S N A P S H O T   C O M M A N D S ---------------------------------

    /**
     * creates a snapshot of a given volume
     * @see create volume snapshot
     *
     * @param volume an existing {@link Volume|
     * @param name (optional) a name for the newly created {@link Snapshot}
     * @param description (optional) the description for the newly created {@link Snapshot}
     * @return the newly created {@link Snapshot}
     */
    static final Snapshot snapshot(final Volume volume, final String name = null, final String description = null, final Map options = [:]) {
        def req = requestFor("${volume.resource}/${volume.id}/create-snapshot", options) + [body: [
            name: name ?: "snapshot_of_${volume.name}",
            description: description ?: "source volume: ${volume.name} (${volume.id}), created: ${new Date().format('dd.MM.yyyy HH:mm')}"
        ]]
        req.requestContentType = URLENC
        def resp = waitFor(API.post(req), options)
        if (resp?.status == 202) {
            return new Snapshot().from(resp?.data) as Snapshot
        }
        throw new HttpResponseException(resp?.status as int, "snapshot not created")
    }

    /**
     * restores a given volume from a given snapshot
     * @see restore volume snapshot
     *
     * @param volume an existing volume
     * @param snapshot an existing snapshot
     * @return true if the restore worked, false otherwise
     */
    static final boolean restore(final Volume volume, final Snapshot snapshot, final Map options = [:]) {
        final req = requestFor("${volume.resource}/${volume.id}/restore-snapshot", options) + [body: [snapshotId: snapshot.id]]
        req.requestContentType = URLENC
        waitFor(API.post(req), options)?.status == 202
    }


    // --------------------------------- L O A D   B A L A N C E R   C O M M A N D S ---------------------------------

    /**
     * associates a given NIC with a given load balancer
     * @see associate nic to load balancer
     *
     * @param an existing load balancer
     * @param nic an existing NIC
     * @return the given (updated) NIC
     */
    static final NIC associate(final LoadBalancer loadBalancer, final NIC nic, final Map options = [:]) {
        def resp = waitFor(API.post(requestFor("${loadBalancer.resource}/${loadBalancer.id}/balancednics", options) + [body: [id: nic.id]]), options)
        if (resp?.status == 202) {
            return new NIC(server: nic.server, lan: nic.lan).from(resp?.data) as NIC
        }
        throw new HttpResponseException(resp?.status as int, "NIC not associated")
    }
    
    /**
     * fetches the ids of the associated NICs of a given load balancer
     * @see list load balanced nics
     *
     * @param loadBalancer a valid load balancer instance
     * @return a list of NIC ids
     */
    static final List associatedNICs(final LoadBalancer loadBalancer, final Map options = [:]) {
        API.get(requestFor("${loadBalancer.resource}/${loadBalancer.id}/balancednics", options))?.data?.items?.collect {it.id}
    }
    
    /**
     * removes the association of a given NIC and a given load balancer
     * @see remove a NIC association
     *
     * @param an existing load balancer
     * @param nic an existing NIC
     * @return true if the association was successfully removed, false otherwise
     */
    static final boolean dissociate(final LoadBalancer loadBalancer, final NIC nic, final Map options = [:]) {
        waitFor(API.delete(requestFor("${loadBalancer.resource}/${loadBalancer.id}/balancednics/${nic.id}", options)), options)?.status == 202
    }
    

    // --------------------------------- U S E R   G R O U P   C O M M A N D S ---------------------------------

    /**
     * lists the ids of all users that are assigned to the given group
     * @see list users in a group
     *
     * @param group the group with the associated users
     * @return a list of user IDs
     */
    static final List userIDs(final UserGroup group, final Map options = [:]) {
        API.get(requestFor("${group.resource}/${group.id}/users", options))?.data?.items?.collect{it.id}
    }

    /**
     * assigns a user to a group
     * @see add user to group
     *
     * @param group the group to assign to
     * @param user the user to be assigned
     * @return true if the user was successfully assigned, false otherwise
     */
    final static boolean assign(final UserGroup group, final User user, final Map options = [:]) {
        waitFor(API.post(requestFor("${group.resource}/${group.id}/users", options) + [body: [id: user.id]]), options)?.status == 202
    }

    /**
     * unassigns a user from a group
     * @see remove user from a group
     *
     * @param group the group to unassign from
     * @param user the user to be unassigned
     * @return true if the user was successfully unassigned, false otherwise
     */
    final static boolean unassign(final UserGroup group, final User user, final Map options = [:]) {
        waitFor(API.delete(requestFor("${group.resource}/${group.id}/users/${user.id}", options)), options)?.status == 202
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy