* Starting work on the Striker configuration workflow.

Signed-off-by: Digimer <digimer@alteeve.ca>
main
Digimer 7 years ago
parent 692e3a1d97
commit 0acb2c8e18
  1. 8
      AN/Tools.sql
  2. 37
      cgi-bin/home
  3. 6
      cgi-bin/words.xml
  4. 12
      html/skins/alteeve/main.css
  5. 21
      html/skins/alteeve/main.html
  6. 223
      scancore.sql

@ -116,10 +116,10 @@ BEGIN
host_variable_value,
modified_date)
VALUES
(host_variable_uuid,
host_variable_host_uuid,
host_variable_name,
host_variable_value,
(history_host_variable.host_variable_uuid,
history_host_variable.host_variable_host_uuid,
history_host_variable.host_variable_name,
history_host_variable.host_variable_value,
history_host_variable.modified_date);
RETURN NULL;
END;

@ -28,7 +28,16 @@ $| = 1;
$an->data->{skin}{url} = $an->data->{path}{urls}{skins}."/".$an->Template->skin;
my $header = $an->Template->get({file => "main.html", name => "header", variables => { language => $an->Words->language }});
my $network = get_network_details($an);
my $body = "";
# This will be true when the dashboard is unconfigured.
if (1)
{
$body = config_step1($an);
}
else
{
$body = get_network_details($an);
}
my $buttons = $an->Template->get({file => "main.html", name => "button_bar"});
my $footer = $an->Template->get({file => "main.html", name => "footer"});
@ -38,8 +47,8 @@ my $template = $an->Template->get({file => "main.html", name => "master", variab
skin_url => $an->data->{path}{urls}{skins}."/".$an->Template->skin,
left_top_bar => "&nbsp;",
center_top_bar => "&nbsp;",
right_top_bar => "$buttons",
center_body => "$network",
right_top_bar => $buttons,
center_body => $body,
left_bottom_bar => "&nbsp;",
center_bottom_bar => "&nbsp;",
right_bottom_bar => "&nbsp;",
@ -54,6 +63,28 @@ exit(0);
# Functions #
#############################################################################################################
# This is step 1 in asking the user how to configure Striker.
sub config_step1
{
my ($an) = @_;
# TODO: Later, this will be a check to see if we've configured this Striker before and, if so, offer
# an option to restore.
my $reload_old_config = "";
if (1)
{
# Old config exists. Load the detail and present the option to reload.
}
my $step1_body = $an->Template->get({file => "main.html", name => "config_step1", variables => {
step1_welcome_title_id => "",
step1_welcome_message_id => "",
reload_option => "",
question_form => "",
}});
return($step1_body);
}
# This reads the network status XML file and creates the template body.
sub get_network_details
{

@ -25,6 +25,12 @@ This is the AN::Tools master 'words' file.
<key name="header_0004">Link State</key>
<key name="header_0005">Link Speed (Mbps)</key>
<!-- Titles -->
<key name="title_0001">Welcome! Lets setup your #!string!brand_0003!# dashboard!</key>
<!-- General strings -->
<key name="message_0001">We're going to ask you a few questions so that we can set things up for your environment. If you need help at any time, just click on the "[?]" icon in the top-right. Let's get started!</key>
<!-- These are works and strings used by javascript/jqery -->
<key name="js_0001">Up</key>
<key name="js_0002">Down</key>

@ -26,6 +26,18 @@ body {
left: 5%
}
.config_header1 {
color: #f7f7f7;
text-align: center;
font-size: 2em;
}
.config_header2 {
color: #f2f2f2;
text-align: center;
font-size: 1em;
}
table {
border-spacing: 0;
border-collapse: collapse;

@ -17,6 +17,27 @@
</table>
<!-- end button_bar -->
<!-- start config_step1 -->
<table>
<tr>
<td>
<span name="#!variable!step1_welcome_title_id!#" id="#!variable!step1_welcome_title_id!#" class="config_header1">#!string!title_0001!#</span>
<span name="#!variable!step1_welcome_message_id!#" id="#!variable!step1_welcome_message_id!#" class="config_header2">#!string!message_0001!#</span>
</td>
</tr>
<tr>
<td>
#!variable!reload_option!#
</td>
</tr>
<tr>
<td>
#!variable!question_form!#
</td>
</tr>
</table>
<!-- end config_step1 -->
<!-- start footer -->
<div onload="show_status()" class="footer">
#!string!brand_0005!#

@ -1,4 +1,227 @@
-- This is the core database schema for ScanCore.
-- It builds on AN::Tools.sql.
-- NOTE: network_interfaces, network_bonds and network_bridges are all used by scan-network (which doesn't
-- exist yet).
-- This stores information about network interfaces on hosts. It is mainly used to match a MAC address to a
-- host. Given that it is possible that network devices can move, the linkage to the host_uuid can change.
CREATE TABLE network_interfaces (
network_interface_uuid uuid not null primary key,
network_interface_host_uuid uuid not null,
network_interface_mac_address text, -- This is allowed to be NULL to support bonds and bridges
network_interface_current_name text not null, -- This is the current name of the interface.
network_interface_requested_name text, -- This is the name of the interface that the user requested. This will differ from the current name pending a commit request by the user.
network_interface_speed number not null, -- This is the speed, in bits-per-second, of the interface.
network_interface_mtu number, -- This is the MTU (Maximum Transmitable Size), in bytes, for this interface.
network_interface_link_state text not null, -- This is 'up', 'down' or 'unknown'
network_interface_duplex text not null, -- This is 'full', 'half' or 'unknown'
network_interface_medium text not null, -- This is 'tp' (twisted pair), 'fiber' or whatever they invent in the future.
network_interface_bond_uuid uuid, -- If this iface is in a bond, this will contain the 'bonds -> bond_uuid' that it is slaved to.
network_interface_bridge_uuid uuid, -- If this iface is attached to a bridge, this will contain the 'bridgess -> bridge_uuid' that it is connected to.
modified_date timestamp with time zone not null
);
ALTER TABLE network_interface OWNER TO #!variable!user!#;
CREATE TABLE history.network_interface (
history_id bigserial,
network_interface_uuid uuid not null,
network_interface_host_uuid uuid,
network_interface_mac_address text,
network_interface_current_name text,
network_interface_requested_name text,
network_interface_speed number,
network_interface_mtu number,
network_interface_link_state text,
network_interface_duplex text,
network_interface_medium text,
network_interface_bond_uuid uuid,
network_interface_bridge_uuid uuid,
modified_date timestamp with time zone not null
);
ALTER TABLE history.network_interface OWNER TO #!variable!user!#;
CREATE FUNCTION history_network_interface() RETURNS trigger
AS $$
DECLARE
history_network_interface RECORD;
BEGIN
SELECT INTO history_network_interface * FROM network_interface WHERE host_uuid = new.host_uuid;
INSERT INTO history.network_interface
(network_interface_uuid,
network_interface_host_uuid,
network_interface_mac_address,
network_interface_current_name,
network_interface_requested_name,
network_interface_speed,
network_interface_mtu,
network_interface_link_state,
network_interface_duplex,
network_interface_medium,
network_interface_bond_uuid,
network_interface_bridge_uuid,
modified_date)
VALUES
(history_network_interface.network_interface_uuid,
history_network_interface.network_interface_host_uuid,
history_network_interface.network_interface_mac_address,
history_network_interface.network_interface_current_name,
history_network_interface.network_interface_requested_name,
history_network_interface.network_interface_speed,
history_network_interface.network_interface_mtu,
history_network_interface.network_interface_link_state,
history_network_interface.network_interface_duplex,
history_network_interface.network_interface_medium,
history_network_interface.network_interface_bond_uuid,
history_network_interface.network_interface_bridge_uuid,
history_network_interface.modified_date);
RETURN NULL;
END;
$$
LANGUAGE plpgsql;
ALTER FUNCTION history_network_interface() OWNER TO #!variable!user!#;
CREATE TRIGGER trigger_network_interface
AFTER INSERT OR UPDATE ON network_interface
FOR EACH ROW EXECUTE PROCEDURE history_network_interface();
-- This stores information about network bonds (mode=1) on a hosts.
CREATE TABLE bonds (
bond_uuid uuid primary key,
bond_host_uuid uuid not null,
bond_name text not null,
bond_mode numeric not null, -- This is the numerical bond type (will translate to the user's language in ScanCore)
bond_mtu numeric,
bond_primary_slave text,
bond_primary_reselect text,
bond_active_slave text,
bond_mii_status text,
bond_mii_polling_interval numeric,
bond_up_delay numeric,
bond_down_delay numeric,
modified_date timestamp with time zone not null,
FOREIGN KEY(bond_host_uuid) REFERENCES hosts(host_uuid)
);
ALTER TABLE bonds OWNER TO #!variable!user!#;
CREATE TABLE history.bonds (
history_id bigserial,
bond_uuid uuid,
bond_host_uuid uuid,
bond_name text,
bond_mode numeric,
bond_mtu numeric,
bond_primary_slave text,
bond_primary_reselect text,
bond_active_slave text,
bond_mii_status text,
bond_mii_polling_interval numeric,
bond_up_delay numeric,
bond_down_delay numeric,
modified_date timestamp with time zone not null
);
ALTER TABLE history.bonds OWNER TO #!variable!user!#;
CREATE FUNCTION history_bonds() RETURNS trigger
AS $$
DECLARE
history_bonds RECORD;
BEGIN
SELECT INTO history_bonds * FROM bonds WHERE bond_uuid=new.bond_uuid;
INSERT INTO history.bonds
(bond_uuid,
bond_host_uuid,
bond_name,
bond_mode,
bond_mtu,
bond_primary_slave,
bond_primary_reselect,
bond_active_slave,
bond_mii_status,
bond_mii_polling_interval,
bond_up_delay,
bond_down_delay,
modified_date)
VALUES
(history_bond.bond_uuid,
history_bond.bond_host_uuid,
history_bond.bond_name,
history_bond.bond_mode,
history_bond.bond_mtu,
history_bond.bond_primary_slave,
history_bond.bond_primary_reselect,
history_bond.bond_active_slave,
history_bond.bond_mii_status,
history_bond.bond_mii_polling_interval,
history_bond.bond_up_delay,
history_bond.bond_down_delay,
history_bond.modified_date);
RETURN NULL;
END;
$$
LANGUAGE plpgsql;
ALTER FUNCTION history_bonds() OWNER TO #!variable!user!#;
CREATE TRIGGER trigger_bond
AFTER INSERT OR UPDATE ON bonds
FOR EACH ROW EXECUTE PROCEDURE history_bond();
-- This stores information about network bridges.
CREATE TABLE bridges (
bridge_uuid uuid primary key,
bridge_host_uuid uuid not null,
bridge_name text not null,
bridge_id text,
bridge_stp_enabled text,
modified_date timestamp with time zone not null,
FOREIGN KEY(bridge_host_uuid) REFERENCES hosts(host_uuid)
);
ALTER TABLE bridges OWNER TO #!variable!user!#;
CREATE TABLE history.bridges (
history_id bigserial,
bridge_uuid uuid,
bridge_host_uuid uuid,
bridge_name text,
bridge_id text,
bridge_stp_enabled text,
modified_date timestamp with time zone not null
);
ALTER TABLE history.bridges OWNER TO #!variable!user!#;
CREATE FUNCTION history_bridges() RETURNS trigger
AS $$
DECLARE
history_bridges RECORD;
BEGIN
SELECT INTO history_bridges * FROM bridges WHERE bridge_uuid=new.bridge_uuid;
INSERT INTO history.bridges
(bridge_uuid,
bridge_host_uuid,
bridge_name,
bridge_name,
bridge_id,
bridge_stp_enabled,
modified_date)
VALUES
(history_bridge.bridge_uuid,
history_bridge.bridge_host_uuid,
history_bridge.bridge_name,
history_bridge.bridge_name,
history_bridge.bridge_id,
history_bridge.bridge_stp_enabled,
history_bridge.modified_date);
RETURN NULL;
END;
$$
LANGUAGE plpgsql;
ALTER FUNCTION history_bridges() OWNER TO #!variable!user!#;
CREATE TRIGGER trigger_bridge
AFTER INSERT OR UPDATE ON bridges
FOR EACH ROW EXECUTE PROCEDURE history_bridge();

Loading…
Cancel
Save