Sha256: b17a5d5f5e76be732c663567b2d6707260251d234fc1835089373732c5749db4

Contents?: true

Size: 2 KB

Versions: 2

Compression:

Stored size: 2 KB

Contents

# 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.

module Deltacloud::Collections
  class Keys < Base
    check_capability :for => lambda { |m| driver.respond_to? m }
    check_features :for => lambda { |c, f| driver.class.has_feature?(c, f) }

    get route_for('/keys/new') do
      respond_to do |format|
        format.html { haml :"keys/new" }
      end
    end

    collection :keys do

      standard_show_operation
      standard_index_operation

      operation :create, :with_capability => :create_key do
        param :name,  :string,  :required
        control do
          @key = driver.create_key(credentials, { :key_name => params[:name] })
          status 201
          response['Location'] = key_url(@key.id)
          respond_to do |format|
            format.xml  { haml :"keys/show", :ugly => true }
            format.html { haml :"keys/show" }
            format.json { convert_to_json(:key, @key)}
          end
        end
      end

      operation :destroy, :with_capability => :destroy_key do
        control do
          driver.destroy_key(credentials, { :id => params[:id]})
          status 204
          respond_to do |format|
            format.xml
            format.json
            format.html { redirect(keys_url) }
          end
        end
      end

    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
deltacloud-core-1.0.1 lib/deltacloud/collections/keys.rb
deltacloud-core-1.0.0 lib/deltacloud/collections/keys.rb