cp_oraclecloud 0.1.7 → 0.1.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1b309be01ededecda8f4a122b74ebe1321881ecf
4
- data.tar.gz: 4df976087afbfe24dadedfa3d01dea592a39f0dd
3
+ metadata.gz: c71c79e6d8c964b6f6a179b98816de8e28756570
4
+ data.tar.gz: 8b674c39cd22ec9240956a448830f5c951c9e297
5
5
  SHA512:
6
- metadata.gz: 128ac380fb8511765adb409840014026eefa25d07df8f63fbbfefaad796bb69507fda78146d64f2f72747dd847ae68dc669ca5caa02344d30022c4480dbe6c4f
7
- data.tar.gz: ba0185bd806417b7dcac1127b6afbf7aba76368697167e986fdc2776b12e0068ce5c9f3735d2c3071dbda911685f1fc2d453fc34e2671cb8b2f9868cd1c06747
6
+ metadata.gz: 3abdfeff13bc49af0283474badbbe965246793752dd0d05fd5793cefd1ab3484a2d08d24db3ea1a6badc239236f5acba8623a46cebc7a64d73097193792c9194
7
+ data.tar.gz: c9e30a08902a498e7d79a5a32dc507e18c7186626144719e2b37d058e1af3cd6bb18cf03de3a047da87ccbe7752ab5c869928e0ce31440c128026210006f4d05
data/README.md CHANGED
@@ -30,8 +30,11 @@ CpOraclecloud.setup do |config|
30
30
  config.region = <region, remove if using US data centres>
31
31
  config.compute_api = <compute url>
32
32
  config.storage_api = <storage url>
33
+ config.active_components = ['Database', 'Java']
33
34
  end
34
35
  ```
36
+ The *active_components* option configures which components can be created in the cloud. Supported options are 'Database' and 'Java'. Remove any services you aren't subscribed to.
37
+
35
38
  ## Contributing
36
39
  1. Fork it ( https://github.com/Joelith/cp_oraclecloud )
37
40
  2. Create your feature branch (git checkout -b my-new-feature)
@@ -0,0 +1,9 @@
1
+ module CpOraclecloud
2
+ class SoaComponentsController < CloudComponentsController
3
+
4
+ private
5
+ def component_params
6
+ params.require(:cp_oraclecloud_soa_component).permit(:service_name, :cloud_storage_container, :cloud_storage_pwd, :cloud_storage_user, :description, :provision_otd, :subscription_type, :level, :topology, :admin_password, :admin_username, :dba_name, :dba_password, :db_service_name, :num_nodes, :shape, :ssh_key, :version)
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,5 @@
1
+ module CpOraclecloud
2
+ class SoaInstancesController < CloudInstancesController
3
+
4
+ end
5
+ end
@@ -28,20 +28,6 @@ module CpOraclecloud
28
28
  end
29
29
  end
30
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 provider
38
- "OracleCloud"
39
- end
40
-
41
- def fog_type
42
- "Database"
43
- end
44
-
45
31
  def instance_type
46
32
  "CpOraclecloud::DatabaseInstance"
47
33
  end
@@ -2,7 +2,7 @@ module CpOraclecloud
2
2
  class DatabaseInstance < CloudInstance
3
3
 
4
4
  def provision
5
- connection.instances.create(init_config)
5
+ @instance = connection.instances.create(init_config)
6
6
  end
7
7
 
8
8
  def wait
@@ -65,20 +65,6 @@ module CpOraclecloud
65
65
  end
66
66
  end
67
67
 
68
- # These should be constants, can't work out
69
- # how to access them that way though
70
- def self.provider
71
- "OracleCloud"
72
- end
73
-
74
- def provider
75
- "OracleCloud"
76
- end
77
-
78
- def fog_type
79
- "Java"
80
- end
81
-
82
68
  def instance_type
83
69
  "CpOraclecloud::JavaInstance"
84
70
  end
@@ -0,0 +1,57 @@
1
+ module CpOraclecloud
2
+ class SoaComponent < CloudComponent
3
+ after_initialize :init
4
+ store :config, accessors: [:service_name, :cloud_storage_container, :cloud_storage_pwd, :cloud_storage_user, :description, :provision_otd, :subscription_type, :level, :topology, :admin_password, :admin_username, :dba_name, :dba_password, :db_service_name, :num_nodes, :shape, :ssh_key, :version], coder: JSON
5
+
6
+ enum shape: [:oc1m, :oc2m, :oc3m, :oc4m, :oc5m]
7
+ enum topology: [:soa, :osb, :soaosb, :b2b, :mft, :apim, :insight]
8
+
9
+ validates :service_name, :presence => true
10
+ validates :shape, :presence => true
11
+ validates :version, :presence => true
12
+ validates :ssh_key, :presence => true
13
+ validates :admin_password, :presence => true
14
+ validates :admin_username, :presence => true
15
+ validates :topology, :presence => true
16
+
17
+ validate :admin_password_complexity
18
+ validate :server_count_correct
19
+
20
+ def init
21
+ self.provision_otd ||= false
22
+ self.level ||= 'PAAS'
23
+ self.subscription_type ||= 'MONTHLY'
24
+ self.num_nodes ||= 1
25
+ end
26
+
27
+ def server_count_correct
28
+ if ![1,2,4].include?(num_nodes.to_i) then errors.add :num_nodes, "Invalid server count" end
29
+ end
30
+
31
+ def admin_password_complexity
32
+ if admin_password.size < 8 or admin_password.size > 30
33
+ errors.add :admin_password, "Must be at betweeen 8 and 30 characters long."
34
+ end
35
+ if !(admin_password[0] =~ /[[:alpha:]]/)
36
+ errors.add :admin_password, "First character must be a letter"
37
+ end
38
+ if (admin_password =~ /[a-z]/).blank? then errors.add :admin_password, 'Must contain a lower case letter' end
39
+ if (admin_password =~ /[A-Z]/).blank? then errors.add :admin_password, 'Must contain an upper case letter' end
40
+ if (admin_password =~ /[0-9]/).blank? then errors.add :admin_password, 'Must contain atleast one number' end
41
+ if (admin_password =~ /[-_#$]/).blank? then errors.add :admin_password, 'Must contain a special character (-, _, #, $)' end
42
+
43
+ end
44
+
45
+ def pretty_type
46
+ 'Oracle SOA Cloud Service'
47
+ end
48
+
49
+ def instance_name
50
+ "service_name"
51
+ end
52
+
53
+ def instance_type
54
+ "CpOraclecloud::SoaInstance"
55
+ end
56
+ end
57
+ end
@@ -0,0 +1,55 @@
1
+ module CpOraclecloud
2
+ class SoaInstance < CloudInstance
3
+
4
+ def provision
5
+ connection.instances.create(init_config)
6
+ end
7
+
8
+ def wait
9
+ fog.wait_for { ready? }
10
+ end
11
+
12
+ def provider
13
+ "OracleCloud"
14
+ end
15
+
16
+ def cloud_type
17
+ "SOA"
18
+ end
19
+
20
+ def fog
21
+ @instance ||= connection.instances.get(name)
22
+ @instance
23
+ end
24
+
25
+ def attr_get(attribute)
26
+ begin
27
+ @instance ||= connection.instances.get(name)
28
+ @instance.attributes[attribute.to_sym]
29
+ rescue Fog::OracleCloud::Database::NotFound
30
+ "Error"
31
+ end
32
+ end
33
+
34
+ def month_cost
35
+ cost = 0
36
+ cost
37
+ end
38
+
39
+ def calc_cost(start_date, end_date)
40
+ cost = 0
41
+ cost = (end_date - start_date) * (month_cost / 30)
42
+ cost
43
+ end
44
+
45
+ def connection
46
+ @connection ||= Fog::OracleCloud::SOA.new(
47
+ :oracle_username => CpOraclecloud.username,
48
+ :oracle_password => CpOraclecloud.password,
49
+ :oracle_domain => CpOraclecloud.domain,
50
+ :oracle_region => CpOraclecloud.region
51
+ )
52
+ end
53
+
54
+ end
55
+ end
@@ -0,0 +1,5 @@
1
+ module CpOraclecloud
2
+
3
+ class SoaComponentPolicy < CloudComponentPolicy
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ module CpOraclecloud
2
+
3
+ class SoaInstancePolicy < CloudInstancePolicy
4
+ end
5
+ end
@@ -0,0 +1,37 @@
1
+ <em>Required fields are on the General and Database tabs. You can ignore the rest if needed</em>
2
+ <ul class="nav nav-tabs">
3
+ <li role="presentation" class="active"><a href="#general" data-toggle="tab">* General</a></li>
4
+ <li role="presentation"><a href="#database" data-toggle="tab">Database</a></li>
5
+ <li role="presentation"><a href="#storage" data-toggle="tab">Storage</a></li>
6
+ <li role="presentation"><a href="#networking" data-toggle="tab">Networking</a></li>
7
+ </ul>
8
+
9
+
10
+ <div class="tab-content ">
11
+ <div class="tab-pane active" id="general">
12
+ <%= f.input :service_name %>
13
+ <%= f.input :description %>
14
+ <%= f.input :topology %>
15
+ <%= f.input :shape %>
16
+ <%= f.input :num_nodes, label: 'Managed Server Count', as: :integer, hint: 'Valid values: 1, 2, 4, 8' %>
17
+ <%= f.input :version %>
18
+ <%= f.input :ssh_key %>
19
+ <%= f.input :admin_username %>
20
+ <%= f.input :admin_password, input_html: { value: @component.admin_password } %>
21
+ </div>
22
+ <div class="tab-pane" id="storage">
23
+ <em>If you leave these blank, the system will create a storage container with the name '%service_name%_backup'</em>
24
+ <%= f.input :cloud_storage_container %>
25
+ <%= f.input :cloud_storage_user %>
26
+ <%= f.input :cloud_storage_pwd, input_html: { value: @component.cloud_storage_pwd }%>
27
+ </div>
28
+ <div class="tab-pane" id="database">
29
+ <em>If you leave these blank, the system will create a Enterprise Edition (12.1.0.2) Database of size 'oc3' with the name '%service_name%-DB'</em>
30
+ <%= f.input :db_service_name %>
31
+ <%= f.input :dba_name %>
32
+ <%= f.input :dba_password, input_html: { value: @component.dba_password }%>
33
+ </div>
34
+ <div class="tab-pane" id="networking">
35
+ <%= f.input :provision_otd, as: :boolean %>
36
+ </div>
37
+ </div>
@@ -0,0 +1,8 @@
1
+ <dl class="dl-horizontal">
2
+ <% ['description', 'status', 'shape', 'level', 'edition', 'version', '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>
@@ -7,6 +7,8 @@
7
7
  <%= link_to "Create Database", [@product, CpOraclecloud::DatabaseComponent, action: :new]%>
8
8
  <% elsif comp == 'Java' %>
9
9
  <%= link_to "Create WebLogic", [@product, CpOraclecloud::JavaComponent, action: :new]%>
10
+ <% elsif comp == 'SOA' %>
11
+ <%= link_to "Create SOA Instance", [@product, CpOraclecloud::SoaComponent, action: :new]%>
10
12
  <% end %>
11
13
  </li>
12
14
  <% end %>
data/config/routes.rb CHANGED
@@ -1,17 +1,19 @@
1
- Rails.application.routes.draw do
2
- resources :products do
3
- namespace :cp_oraclecloud do
4
- resources :database_components, type: 'CpOraclecloud::DatabaseComponent'
5
- resources :java_components, type: 'CpOraclecloud::JavaComponent'
6
- end
7
- end
8
-
9
- namespace :cp_oraclecloud do
10
- resources :database_instances, type: 'CpOraclecloud::DatabaseInstance' do
11
- put :backup
12
- end
13
- resources :java_instances, type: 'CpOraclecloud::JavaInstance' do
14
- put :backup
15
- end
16
- end
17
- end
1
+ Rails.application.routes.draw do
2
+ resources :products do
3
+ namespace :cp_oraclecloud do
4
+ resources :database_components, type: 'CpOraclecloud::DatabaseComponent'
5
+ resources :java_components, type: 'CpOraclecloud::JavaComponent'
6
+ resources :soa_components, type: 'CpOraclecloud::SoaComponent'
7
+ end
8
+ end
9
+
10
+ namespace :cp_oraclecloud do
11
+ resources :database_instances, type: 'CpOraclecloud::DatabaseInstance' do
12
+ put :backup
13
+ end
14
+ resources :java_instances, type: 'CpOraclecloud::JavaInstance' do
15
+ put :backup
16
+ end
17
+ resources :soa_instances, type: 'CpOraclecloud::SoaInstance'
18
+ end
19
+ end
@@ -1,3 +1,3 @@
1
- module CpOraclecloud
2
- VERSION = '0.1.7'
3
- end
1
+ module CpOraclecloud
2
+ VERSION = '0.1.8'
3
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cp_oraclecloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joel Nation
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-24 00:00:00.000000000 Z
11
+ date: 2016-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -59,18 +59,26 @@ files:
59
59
  - app/controllers/cp_oraclecloud/database_instances_controller.rb
60
60
  - app/controllers/cp_oraclecloud/java_components_controller.rb
61
61
  - app/controllers/cp_oraclecloud/java_instances_controller.rb
62
+ - app/controllers/cp_oraclecloud/soa_components_controller.rb
63
+ - app/controllers/cp_oraclecloud/soa_instances_controller.rb
62
64
  - app/models/cp_oraclecloud/database_component.rb
63
65
  - app/models/cp_oraclecloud/database_instance.rb
64
66
  - app/models/cp_oraclecloud/java_component.rb
65
67
  - app/models/cp_oraclecloud/java_instance.rb
68
+ - app/models/cp_oraclecloud/soa_component.rb
69
+ - app/models/cp_oraclecloud/soa_instance.rb
66
70
  - app/policies/cp_oraclecloud/database_component_policy.rb
67
71
  - app/policies/cp_oraclecloud/database_instance_policy.rb
68
72
  - app/policies/cp_oraclecloud/java_component_policy.rb
69
73
  - app/policies/cp_oraclecloud/java_instance_policy.rb
74
+ - app/policies/cp_oraclecloud/soa_component_policy.rb
75
+ - app/policies/cp_oraclecloud/soa_instance_policy.rb
70
76
  - app/views/cp_oraclecloud/database_components/_fields.html.erb
71
77
  - app/views/cp_oraclecloud/database_instances/_show.html.erb
72
78
  - app/views/cp_oraclecloud/java_components/_fields.html.erb
73
79
  - app/views/cp_oraclecloud/java_instances/_show.html.erb
80
+ - app/views/cp_oraclecloud/soa_components/_fields.html.erb
81
+ - app/views/cp_oraclecloud/soa_instances/_show.html.erb
74
82
  - app/views/products/_cp_oraclecloud_component_menu.html.erb
75
83
  - config/routes.rb
76
84
  - lib/cp_oraclecloud.rb