cp_oraclecloud 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 654f08b3ec1c4f686a9a3e34b3bcdf3fc77ab7d9
4
+ data.tar.gz: 4893254a4c9c97501b94146944e981da54004167
5
+ SHA512:
6
+ metadata.gz: ac9cb0fac3c34c7ea3f3128270c3ad0d1986db6db405e886b669999543ccdb6b3b480bba2651a2fb044654a725902f11edc5b487ed2111366109d87cc02e31bc
7
+ data.tar.gz: 85475083b80c07fd16fbb86dd38d41a994f85be166796ce3d30e4ef52698e30631ad2df7857b5217ca31c941653f2cb72908c9cdfa0c0720cd41bbb598fa8a93
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2016 Joel Nation
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # CpOraclecloud
2
+ Short description and motivation.
3
+
4
+ ## Usage
5
+ How to use my plugin.
6
+
7
+ ## Installation
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'cp_oraclecloud'
12
+ ```
13
+
14
+ And then execute:
15
+ ```bash
16
+ $ bundle
17
+ ```
18
+
19
+ Or install it yourself as:
20
+ ```bash
21
+ $ gem install cp_oraclecloud
22
+ ```
23
+
24
+ ## Contributing
25
+ Contribution directions go here.
26
+
27
+ ## License
28
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,37 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'CpOraclecloud'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.md')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
18
+ load 'rails/tasks/engine.rake'
19
+
20
+
21
+ load 'rails/tasks/statistics.rake'
22
+
23
+
24
+
25
+ require 'bundler/gem_tasks'
26
+
27
+ require 'rake/testtask'
28
+
29
+ Rake::TestTask.new(:test) do |t|
30
+ t.libs << 'lib'
31
+ t.libs << 'test'
32
+ t.pattern = 'test/**/*_test.rb'
33
+ t.verbose = false
34
+ end
35
+
36
+
37
+ task default: :test
File without changes
@@ -0,0 +1,9 @@
1
+ module CpOraclecloud
2
+ class DatabaseComponentsController < CloudComponentsController
3
+
4
+ private
5
+ def component_params
6
+ params.require(:cp_oraclecloud_database_component).permit(:service_name, :version, :description, :ssh_key, :shape, :level, :subscription_type, :edition, :backup_destination, :admin_password)
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,11 @@
1
+ module CpOraclecloud
2
+ class DatabaseInstancesController < CloudInstancesController
3
+
4
+ def backup
5
+ instance = CloudInstance.find(params[:database_instance_id])
6
+ instance.fog.backup()
7
+ flash[:notice] = "Backup has been requested"
8
+ redirect_to request.referrer
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,50 @@
1
+ module CpOraclecloud
2
+ class DatabaseComponent < CloudComponent
3
+ store :config, accessors: [:service_name, :version, :description, :ssh_key, :shape, :level, :subscription_type, :edition, :backup_destination, :admin_password], coder: JSON
4
+
5
+ enum edition: [:SE, :EE, :EE_HP, :EE_EP]
6
+ enum shape: [:oc3, :oc4, :oc5, :oc6, :oc1m, :oc2m, :oc3m, :oc4m]
7
+ enum level: [:PAAS, :BASIC]
8
+ enum subscription_type: [:HOURLY, :MONTHLY]
9
+ enum backup_destination: [:NONE, :OSS, :BOTH]
10
+
11
+ validates :service_name, :presence => true
12
+ validates :edition, :presence => true
13
+ validates :ssh_key, :presence => true
14
+ validates :shape, :presence => true
15
+ validates :version, :presence => true
16
+ validates :level, :presence => true
17
+ validates :subscription_type, :presence => true
18
+ validates :admin_password, :presence => true
19
+ validates :backup_destination, :presence => true
20
+
21
+ def pretty_type
22
+ 'Oracle Database CS'
23
+ end
24
+
25
+ def pretty_size
26
+ if config && config.is_a?(Hash) && config.key?('shape')
27
+ config['shape']
28
+ end
29
+ end
30
+
31
+ # These should be constants, can't work out
32
+ # how to access them that way though
33
+ def self.provider
34
+ "OracleCloud"
35
+ end
36
+
37
+ def fog_type
38
+ "Database"
39
+ end
40
+
41
+ def instance_type
42
+ "CpOraclecloud::DatabaseInstance"
43
+ end
44
+
45
+ def instance_name
46
+ "service_name"
47
+ end
48
+
49
+ end
50
+ end
@@ -0,0 +1,63 @@
1
+ module CpOraclecloud
2
+ class DatabaseInstance < CloudInstance
3
+
4
+ def provision_instance
5
+ connection.instances.create(init_config)
6
+ end
7
+
8
+ def provider
9
+ "OracleCloud"
10
+ end
11
+
12
+ def cloud_type
13
+ "Database"
14
+ end
15
+
16
+ def status
17
+ begin
18
+ @instance ||= connection.instances.get(name)
19
+ @instance.status
20
+ rescue Fog::OracleCloud::Database::NotFound
21
+ "Error"
22
+ end
23
+ end
24
+
25
+ def fog
26
+ @instance ||= connection.instances.get(name)
27
+ @instance
28
+ end
29
+
30
+ def attr_get(attribute)
31
+ begin
32
+ @instance ||= connection.instances.get(name)
33
+ @instance.attributes[attribute.to_sym]
34
+ rescue Fog::OracleCloud::Database::NotFound
35
+ "Error"
36
+ end
37
+ end
38
+
39
+ def month_cost
40
+ cost = 0
41
+ if init_config['edition'] == 'EE_EP' then
42
+ rc = RateCard.where("provider = ? AND key = ?", provider, 'Database Cloud Service Enterprise Edition Extreme Performance').first
43
+ rc ? cost = rc.value : 0
44
+ end
45
+ cost
46
+ end
47
+
48
+ def calc_cost(start_date, end_date)
49
+ cost = 0
50
+ cost = (end_date - start_date) * (month_cost / 30)
51
+ cost
52
+ end
53
+
54
+ def connection
55
+ @connection ||= Fog::OracleCloud::Database.new(
56
+ :oracle_username => APP_CONFIG[:oracle_username],
57
+ :oracle_password => APP_CONFIG[:oracle_password],
58
+ :oracle_domain => APP_CONFIG[:oracle_domain],
59
+ )
60
+ end
61
+
62
+ end
63
+ end
@@ -0,0 +1,11 @@
1
+ <%= f.input :service_name %>
2
+ <%= f.input :description %>
3
+ <%= f.input :edition, :label_method=> lambda { |item| "#{item.first.upcase}" } %>
4
+ <%= f.input :shape %>
5
+ <%= f.input :version %>
6
+ <%= f.input :level, :label_method=> lambda { |item| "#{item.first.upcase}" } %>
7
+ <%= f.input :subscription_type, :label_method=> lambda { |item| "#{item.first.upcase}" } %>
8
+ <%= f.input :ssh_key %>
9
+ <%= f.input :backup_destination %>
10
+ <%= f.input :admin_password %>
11
+
@@ -0,0 +1,113 @@
1
+ <dl class="dl-horizontal">
2
+ <% ['description', 'status', 'shape', 'level', 'edition', 'sid', 'pdbName', 'em_url', 'service_uri'].each { |a| %>
3
+ <% if instance.attr_get(a).present? then %>
4
+ <dt><%= a.titleize() %></dt>
5
+ <dd><%= instance.attr_get(a) %></dd>
6
+ <% end %>
7
+ <% } %>
8
+ </dl>
9
+
10
+ <ul class="nav nav-tabs">
11
+ <li role="presentation" class="active"><a href="#servers" data-toggle="tab">Servers</a></li>
12
+ <li role="presentation"><a href="#backups" data-toggle="tab">Backups</a></li>
13
+ <li role="presentation"><a href="#patches" data-toggle="tab">Patches</a></li>
14
+ </ul>
15
+
16
+ <div class="tab-content ">
17
+ <div class="tab-pane active" id="servers">
18
+ <table class="table table-striped table-hover">
19
+ <thead>
20
+ <tr>
21
+ <th>Hostname</th>
22
+ <th>Status</th>
23
+ <th>Shape</th>
24
+ <th></th>
25
+ </tr>
26
+ </thead>
27
+ <tbody>
28
+ <% instance.fog.servers.each {|i| %>
29
+ <tr>
30
+ <td><%= i.hostname %></td>
31
+ <td><%= i.status %></td>
32
+ <td><%= i.shape %></td>
33
+ <td></td>
34
+ </tr>
35
+ <% } %>
36
+ </tbody>
37
+ </table>
38
+ </div>
39
+ <div class="tab-pane" id="backups">
40
+ <p></p>
41
+ <div class="btn-group" role="group">
42
+ <%= link_to "Backup", cp_oraclecloud_database_instance_backup_path(instance), method: :put, class: 'btn btn-default' %>
43
+
44
+ <button type="button" class="btn btn-default">Restore</button>
45
+ </div>
46
+ <h3>Backups</h3>
47
+ <table class="table table-striped table-hover">
48
+ <thead>
49
+ <tr>
50
+ <th>Tag</th>
51
+ <th>Status</th>
52
+ <th>Date</th>
53
+ <th></th>
54
+ </tr>
55
+ </thead>
56
+ <tbody>
57
+ <% instance.fog.backups.each {|i| %>
58
+ <tr>
59
+ <td><%= i.db_tag %></td>
60
+ <td><%= i.status %></td>
61
+ <td><%= i.backup_complete_date %></td>
62
+ <td></td>
63
+ </tr>
64
+ <% } %>
65
+ </tbody>
66
+ </table>
67
+ <h3>Restores</h3>
68
+ <table class="table table-striped table-hover">
69
+ <thead>
70
+ <tr>
71
+ <th>Tag</th>
72
+ <th>Status</th>
73
+ <th>Date</th>
74
+ <th></th>
75
+ </tr>
76
+ </thead>
77
+ <tbody>
78
+ <% instance.fog.recoveries.each {|i| %>
79
+ <tr>
80
+ <td><%= i.db_tag %></td>
81
+ <td><%= i.status %></td>
82
+ <td><%= i.recovery_complete_date %></td>
83
+ <td></td>
84
+ </tr>
85
+ <% } %>
86
+ </tbody>
87
+ </table>
88
+ </div>
89
+ <div class="tab-pane" id="patches">
90
+ <h3>Patches</h3>
91
+ <table class="table table-striped table-hover">
92
+ <thead>
93
+ <tr>
94
+ <th>Id</th>
95
+ <th>Category</th>
96
+ <th>URL</th>
97
+ <th></th>
98
+ </tr>
99
+ </thead>
100
+ <tbody>
101
+ <% instance.fog.patches.each {|i| %>
102
+ <tr>
103
+ <td><%= i.id %></td>
104
+ <td><%= i.category %></td>
105
+ <td><a href="<%= i.release_url %>"><%= i.release_url %></a></td>
106
+ <td></td>
107
+ </tr>
108
+ <% } %>
109
+ </tbody>
110
+ </table>
111
+ </div>
112
+
113
+ </div>
data/config/routes.rb ADDED
@@ -0,0 +1,13 @@
1
+ Rails.application.routes.draw do
2
+ resources :products do
3
+ namespace :cp_oraclecloud do
4
+ resources :database_components, type: 'CpOraclecloud::DatabaseComponent'
5
+ end
6
+ end
7
+
8
+ namespace :cp_oraclecloud do
9
+ resources :database_instances, type: 'CpOraclecloud::DatabaseInstance' do
10
+ put :backup
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,7 @@
1
+ require "cp_oraclecloud/engine"
2
+
3
+ module CpOraclecloud
4
+ # Your code goes here...
5
+
6
+
7
+ end
@@ -0,0 +1,4 @@
1
+ module CpOraclecloud
2
+ class Engine < ::Rails::Engine
3
+ end
4
+ end
@@ -0,0 +1,3 @@
1
+ module CpOraclecloud
2
+ VERSION = '0.1.0'
3
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :cp_oraclecloud do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,93 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cp_oraclecloud
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Joel Nation
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-10-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 5.0.0
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 5.0.0.1
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: 5.0.0
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 5.0.0.1
33
+ - !ruby/object:Gem::Dependency
34
+ name: sqlite3
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ description: Plugin for Cloud_Portal to add support for the Oracle Cloud Platform
48
+ email:
49
+ - joel.nation@outlook.com
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files: []
53
+ files:
54
+ - MIT-LICENSE
55
+ - README.md
56
+ - Rakefile
57
+ - app/assets/config/cp_oraclecloud_manifest.js
58
+ - app/controllers/cp_oraclecloud/database_components_controller.rb
59
+ - app/controllers/cp_oraclecloud/database_instances_controller.rb
60
+ - app/models/cp_oraclecloud/database_component.rb
61
+ - app/models/cp_oraclecloud/database_instance.rb
62
+ - app/views/cp_oraclecloud/database_components/_fields.html.erb
63
+ - app/views/cp_oraclecloud/database_instances/_show.html.erb
64
+ - config/routes.rb
65
+ - lib/cp_oraclecloud.rb
66
+ - lib/cp_oraclecloud/engine.rb
67
+ - lib/cp_oraclecloud/version.rb
68
+ - lib/tasks/cp_oraclecloud_tasks.rake
69
+ homepage: http://github.com/Joelith
70
+ licenses:
71
+ - MIT
72
+ metadata: {}
73
+ post_install_message:
74
+ rdoc_options: []
75
+ require_paths:
76
+ - lib
77
+ required_ruby_version: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ required_rubygems_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ requirements: []
88
+ rubyforge_project:
89
+ rubygems_version: 2.4.5.1
90
+ signing_key:
91
+ specification_version: 4
92
+ summary: Plugin for Cloud_Portal to add support for the Oracle Cloud Platform
93
+ test_files: []