
This allows for a built in audit database for user actions We can also see how often commands are run, how long they take as well as who and when they're run TODO: use sqlcipher to encrypt at rest & password protect the db Change-Id: Ic7c8927bcfdd46ede3fe6a5aca4f57892ca3f3d4
98 lines
2.5 KiB
Go
98 lines
2.5 KiB
Go
/*
|
|
Licensed 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
|
|
|
|
https://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.
|
|
*/
|
|
|
|
package commands
|
|
|
|
import (
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"opendev.org/airship/airshipui/pkg/configs"
|
|
"opendev.org/airship/airshipui/pkg/ctl"
|
|
"opendev.org/airship/airshipui/pkg/log"
|
|
"opendev.org/airship/airshipui/pkg/statistics"
|
|
"opendev.org/airship/airshipui/pkg/webservice"
|
|
)
|
|
|
|
// rootCmd represents the base command when called without any subcommands
|
|
var rootCmd = &cobra.Command{
|
|
Use: "airshipui",
|
|
Short: "airshipui is a graphical user interface for airship",
|
|
Run: launch,
|
|
Version: Version(),
|
|
}
|
|
|
|
func init() {
|
|
// Add a 'version' command, in addition to the '--version' option that is auto created
|
|
rootCmd.AddCommand(newVersionCmd())
|
|
|
|
// Add the config file Flag
|
|
rootCmd.Flags().StringVarP(
|
|
&configs.UIConfigFile,
|
|
"conf",
|
|
"c",
|
|
"etc/airshipui.json",
|
|
"This will set the location of the conf file needed to start the UI",
|
|
)
|
|
|
|
// Add the logging level flag
|
|
rootCmd.Flags().IntVar(
|
|
&log.LogLevel,
|
|
"loglevel",
|
|
6,
|
|
"This will set the log level, anything at or below that level will be viewed, all others suppressed\n"+
|
|
" 6 -- Trace\n"+
|
|
" 5 -- Debug\n"+
|
|
" 4 -- Info\n"+
|
|
" 3 -- Warn\n"+
|
|
" 2 -- Error\n"+
|
|
" 1 -- Fatal\n",
|
|
)
|
|
}
|
|
|
|
func launch(cmd *cobra.Command, args []string) {
|
|
// Read AirshipUI config file
|
|
if err := configs.SetUIConfig(); err != nil {
|
|
log.Fatalf("config %s", err)
|
|
}
|
|
|
|
// Start the statistics database
|
|
statistics.Init()
|
|
|
|
// allows for the circular reference to the webservice package to be broken and allow for the sending
|
|
// of arbitrary messages from any package to the websocket
|
|
ctl.Init()
|
|
|
|
// start webservice and listen for the the ctl + c to exit
|
|
c := make(chan os.Signal)
|
|
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
|
|
go func() {
|
|
<-c
|
|
log.Info("Exiting the webservice")
|
|
os.Exit(0)
|
|
}()
|
|
webservice.WebServer()
|
|
}
|
|
|
|
// Execute is called from the main program and kicks this whole shindig off
|
|
func Execute() {
|
|
if err := rootCmd.Execute(); err != nil {
|
|
log.Error(err)
|
|
os.Exit(1)
|
|
}
|
|
}
|