-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
35 changed files
with
30,657 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"plugins": ["@theforeman/foreman"], | ||
"extends": ["plugin:@theforeman/foreman/core", "plugin:@theforeman/foreman/plugins"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: JS | ||
on: | ||
pull_request: | ||
paths: | ||
- 'webpack/**' | ||
- 'package.json' | ||
- '.github/workflows/js_ci.yml' | ||
jobs: | ||
test_js: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node-version: [14] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Npm install | ||
run: | | ||
npm install | ||
- name: Run plugin linter | ||
run: | | ||
npm run lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,4 @@ public/ | |
TAGS | ||
*.lock | ||
coverage/ | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
# frozen_string_literal: true | ||
|
||
# Copyright 2018 Tristan Robert | ||
|
||
# This file is part of ForemanFogProxmox. | ||
|
||
# ForemanFogProxmox is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
|
||
# ForemanFogProxmox is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
|
||
# You should have received a copy of the GNU General Public License | ||
# along with ForemanFogProxmox. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
require 'fog/proxmox/helpers/disk_helper' | ||
require 'fog/proxmox/helpers/nic_helper' | ||
require 'fog/proxmox/helpers/cpu_helper' | ||
require 'foreman_fog_proxmox/value' | ||
require 'foreman_fog_proxmox/hash_collection' | ||
|
||
# Convert a foreman form server hash into a fog-proxmox server attributes hash | ||
module ProxmoxVmAttrsHelper | ||
def object_to_attributes_hash(vms, from_profile) | ||
param_scope = from_profile ? "compute_attribute[vm_attrs]" : "host[compute_attributes]" | ||
vm_h = ActiveSupport::HashWithIndifferentAccess.new | ||
keys = [:vmid, :node_id, :type, :pool] | ||
main = vms.attributes.select { |key, _value| keys.include? key } | ||
vms.config.all_attributes.each do |key, value| | ||
vm_h.merge!({ key => { :name => "#{param_scope}[config_attributes][#{key}]", :value => value } }) unless keys.include? key | ||
end | ||
main.each do |key, value| | ||
camel_key = key.to_s.include?('_') ? snake_to_camel(key.to_s).to_sym : key | ||
vm_h.merge!({ camel_key => { :name => "#{param_scope}[#{key}]", :value => value } }) | ||
end | ||
|
||
vm_h.merge!(additional_attrs(vms, param_scope)) | ||
vm_h[:interfaces] = network_attrs(param_scope, vms.interfaces) | ||
vm_h[:disks] = volumes_attrs(param_scope, vms.volumes) | ||
vm_h.merge(cpu_flags_attrs(param_scope, vms.config)) | ||
end | ||
|
||
def cpu_flags_attrs(param_scope, config) | ||
flag_attrs = ActiveSupport::HashWithIndifferentAccess.new | ||
Fog::Proxmox::CpuHelper.flags.each do |key, _val| | ||
flag_attrs.merge!({ key => { :name => "#{param_scope}[config_attributes][#{key}]", :value => config.public_send(key) } }) | ||
end | ||
flag_attrs | ||
end | ||
|
||
def volumes_attrs(param_scope, volumes) | ||
vol_attrs = [] | ||
volumes.each_with_index do |vol, id| | ||
keys = [] | ||
type = "" | ||
if vol.rootfs? | ||
keys = ['id', 'volid', 'storage', 'size', 'storage_type'] | ||
type = 'rootfs' | ||
elsif vol.hard_disk? | ||
keys = ['id', 'volid', 'storage_type', 'storage', 'controller', 'device', 'cache', 'size'] | ||
type = 'hard_disk' | ||
elsif vol.cdrom? | ||
keys = ['id', 'storage_type', 'cdrom', 'storage', 'volid'] | ||
type = 'cdrom' | ||
elsif vol.cloud_init? | ||
keys = ['id', 'volid', 'storage_type', 'storage', 'controller', 'device'] | ||
type = 'cloud_init' | ||
elsif vol.mount_point? | ||
keys = ['id', 'volid', 'storage_type', 'storage', 'device', 'mp', 'size'] | ||
type = 'mount_point' | ||
end | ||
vol_attrs << { :name => type, :value => vol_keys(param_scope, keys, vol, id) } | ||
end | ||
vol_attrs | ||
end | ||
|
||
def vol_keys(param_scope, keys, vol, id) | ||
attrs = ActiveSupport::HashWithIndifferentAccess.new | ||
keys.each do |key| | ||
camel_key = key.to_s.include?('_') ? snake_to_camel(key.to_s).to_sym : key | ||
attrs[camel_key] = { :name => "#{param_scope}[volumes_attributes][#{id}][#{key}]", :value => vol.public_send(key) } | ||
end | ||
attrs | ||
end | ||
|
||
def network_attrs(param_scope, interfaces) | ||
networks_attrs = [] | ||
interfaces.each_with_index do |interface, id| | ||
attrs = ActiveSupport::HashWithIndifferentAccess.new | ||
interface.all_attributes.each do |key, value| | ||
attrs[key] = { :name => "#{param_scope}[interfaces_attributes][#{id}][#{key}]", :value => value } | ||
end | ||
networks_attrs << { :name => 'interface', :value => attrs } | ||
end | ||
networks_attrs | ||
end | ||
|
||
def additional_attrs(vms, param_scope) | ||
attributes = { | ||
pool: vms.pool, | ||
image_id: vms.image_id, | ||
cpu_type: vms.config.cpu_type, | ||
nameserver: vms.config.nameserver, | ||
searchdomain: vms.config.searchdomain, | ||
hostname: vms.config.hostname, | ||
ostemplate_storage: vms.ostemplate_storage, | ||
ostemplate_file: vms.ostemplate_file, | ||
} | ||
extra_attrs = ActiveSupport::HashWithIndifferentAccess.new | ||
attributes.each do |key, value| | ||
camel_key = key.to_s.include?('_') ? snake_to_camel(key.to_s).to_sym : key | ||
nested_key = key == :pool ? key : "config_attributes[#{key}]" | ||
extra_attrs[camel_key] = { name: "#{param_scope}[#{nested_key}]", value: value } | ||
end | ||
extra_attrs | ||
end | ||
|
||
def snake_to_camel(str) | ||
str.split('_').inject([]) { |buffer, e| buffer.push(buffer.empty? ? e : e.capitalize) }.join | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
app/overrides/compute_resources_vms/form/add_react_component_to_host.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# frozen_string_literal: true | ||
|
||
# Copyright 2018 Tristan Robert | ||
|
||
# This file is part of ForemanFogProxmox. | ||
|
||
# ForemanFogProxmox is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
|
||
# ForemanFogProxmox is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
|
||
# You should have received a copy of the GNU General Public License | ||
# along with ForemanFogProxmox. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
Deface::Override.new( | ||
virtual_path: 'hosts/_form', | ||
name: 'add_react_component_to_virtual_machine_tab', | ||
insert_after: "li.active", | ||
partial: 'compute_resources_vms/form/proxmox/add_react_component_to_host_form' | ||
) |
25 changes: 25 additions & 0 deletions
25
app/overrides/compute_resources_vms/form/update_react_component_to_host_form.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# frozen_string_literal: true | ||
|
||
# Copyright 2018 Tristan Robert | ||
|
||
# This file is part of ForemanFogProxmox. | ||
|
||
# ForemanFogProxmox is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
|
||
# ForemanFogProxmox is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
|
||
# You should have received a copy of the GNU General Public License | ||
# along with ForemanFogProxmox. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
Deface::Override.new( | ||
:virtual_path => 'hosts/_compute', | ||
:name => 'update_react_component_to_virtual_machine_tab', | ||
:replace => "erb[loud]:contains('hosts/compute_detail')", | ||
:partial => 'compute_resources_vms/form/proxmox/update_react_component_to_host_form' | ||
) |
5 changes: 5 additions & 0 deletions
5
app/views/compute_resources_vms/form/proxmox/_add_react_component_to_host_form.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<% content_for(:javascripts) do %> | ||
<%= webpacked_plugins_js_for :foreman_fog_proxmox %> | ||
<%= javascript_include_tag 'foreman_fog_proxmox/proxmox_vm', "data-turbolinks-track" => true %> | ||
<% end %> | ||
<%= react_component('ProxmoxVmType') %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
app/views/compute_resources_vms/form/proxmox/_update_react_component_to_host_form.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<%# Copyright 2018 Tristan Robert | ||
This file is part of ForemanFogProxmox. | ||
ForemanFogProxmox is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
ForemanFogProxmox is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with ForemanFogProxmox. If not, see <http://www.gnu.org/licenses/>. %> | ||
|
||
<% if compute_resource.class == ForemanFogProxmox::Proxmox %> | ||
<%= render :partial => provider_partial(compute_resource, 'base'), | ||
locals: { f: compute, host: host, compute_resource: compute_resource, new_host: host.new_record?, new_vm: !compute.object.persisted?, | ||
arch: host.architecture_id, os: host.operatingsystem_id, from_profile: false } %> | ||
<% else %> | ||
<%= render :partial => provider_partial(compute_resource, 'base'), | ||
locals: { f: compute, host: host, compute_resource: compute_resource, new_host: host.new_record?, new_vm: !compute.object.persisted?, | ||
arch: host.architecture_id, os: host.operatingsystem_id } %> | ||
<% end %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
presets: ['@theforeman/builder/babel'], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es6", | ||
"paths": { | ||
"foremanReact/*": ["../foreman/webpack/assets/javascripts/react_app/*"] | ||
} | ||
} | ||
} |
Oops, something went wrong.