2016-08-18 19:23:42 -04:00
/ *
* Minio Cloud Storage , ( C ) 2015 , 2016 Minio , Inc .
*
* 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
*
* http : //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 cmd
import (
"fmt"
"os"
"sort"
2016-10-12 21:09:08 -04:00
"time"
2016-08-18 19:23:42 -04:00
"github.com/minio/cli"
"github.com/minio/mc/pkg/console"
)
var (
// global flags for minio.
2016-09-01 18:12:49 -04:00
globalFlags = [ ] cli . Flag {
cli . StringFlag {
Name : "config-dir, C" ,
Value : mustGetConfigPath ( ) ,
2016-11-10 02:37:12 -05:00
Usage : "Path to configuration directory." ,
2016-09-01 18:12:49 -04:00
} ,
cli . BoolFlag {
Name : "quiet" ,
2016-11-11 19:36:07 -05:00
Usage : "Disable startup information." ,
2016-09-01 18:12:49 -04:00
} ,
2016-08-18 19:23:42 -04:00
}
)
// Help template for minio.
var minioHelpTemplate = ` NAME :
{ { . Name } } - { { . Usage } }
DESCRIPTION :
{ { . Description } }
USAGE :
2017-02-15 20:45:08 -05:00
{ { . HelpName } } { { if . VisibleFlags } } [ FLAGS ] { { end } } COMMAND { { if . VisibleFlags } } { { end } } [ ARGS ... ]
2016-08-18 19:23:42 -04:00
COMMANDS :
2017-02-15 05:25:38 -05:00
{ { range . VisibleCommands } } { { join . Names ", " } } { { "\t" } } { { . Usage } }
{ { end } } { { if . VisibleFlags } }
2016-08-18 19:23:42 -04:00
FLAGS :
2017-02-15 05:25:38 -05:00
{ { range . VisibleFlags } } { { . } }
2016-08-18 19:23:42 -04:00
{ { end } } { { end } }
VERSION :
` + Version +
` {{ "\n" }} `
func migrate ( ) {
// Migrate config file
2016-09-21 12:44:57 -04:00
err := migrateConfig ( )
fatalIf ( err , "Config migration failed." )
2016-08-18 19:23:42 -04:00
// Migrate other configs here.
}
func enableLoggers ( ) {
// Enable all loggers here.
enableConsoleLogger ( )
enableFileLogger ( )
// Add your logger here.
}
func findClosestCommands ( command string ) [ ] string {
var closestCommands [ ] string
for _ , value := range commandsTree . PrefixMatch ( command ) {
closestCommands = append ( closestCommands , value . ( string ) )
}
sort . Strings ( closestCommands )
// Suggest other close commands - allow missed, wrongly added and
// even transposed characters
2017-02-10 14:51:41 -05:00
for _ , value := range commandsTree . Walk ( commandsTree . Root ( ) ) {
2016-08-18 19:23:42 -04:00
if sort . SearchStrings ( closestCommands , value . ( string ) ) < len ( closestCommands ) {
continue
}
// 2 is arbitrary and represents the max
// allowed number of typed errors
if DamerauLevenshteinDistance ( command , value . ( string ) ) < 2 {
closestCommands = append ( closestCommands , value . ( string ) )
}
}
return closestCommands
}
func registerApp ( ) * cli . App {
// Register all commands.
registerCommand ( serverCmd )
registerCommand ( versionCmd )
registerCommand ( updateCmd )
// Set up app.
2017-02-19 23:46:06 -05:00
cli . HelpFlag = cli . BoolFlag {
Name : "help, h" ,
Usage : "Show help." ,
}
2016-08-18 19:23:42 -04:00
app := cli . NewApp ( )
app . Name = "Minio"
app . Author = "Minio.io"
2017-02-18 16:41:33 -05:00
app . Version = Version
2016-08-18 19:23:42 -04:00
app . Usage = "Cloud Storage Server."
app . Description = ` Minio is an Amazon S3 compatible object storage server. Use it to store photos, videos, VMs, containers, log files, or any blob of data as objects. `
2016-09-01 18:12:49 -04:00
app . Flags = globalFlags
2017-02-19 23:46:06 -05:00
app . HideVersion = true // Hide `--version` flag, we already have `minio version`.
app . HideHelpCommand = true // Hide `help, h` command, we already have `minio --help`.
2016-08-18 19:23:42 -04:00
app . Commands = commands
app . CustomAppHelpTemplate = minioHelpTemplate
app . CommandNotFound = func ( ctx * cli . Context , command string ) {
msg := fmt . Sprintf ( "‘ %s’ is not a minio sub-command. See ‘ minio --help’ ." , command )
closestCommands := findClosestCommands ( command )
if len ( closestCommands ) > 0 {
msg += fmt . Sprintf ( "\n\nDid you mean one of these?\n" )
for _ , cmd := range closestCommands {
msg += fmt . Sprintf ( " ‘ %s’ \n" , cmd )
}
}
console . Fatalln ( msg )
}
return app
}
2016-09-01 23:13:11 -04:00
// Verify main command syntax.
2016-08-18 19:23:42 -04:00
func checkMainSyntax ( c * cli . Context ) {
configPath , err := getConfigPath ( )
if err != nil {
console . Fatalf ( "Unable to obtain user's home directory. \nError: %s\n" , err )
}
if configPath == "" {
2016-11-10 02:37:12 -05:00
console . Fatalln ( "Config directory cannot be empty, please specify --config-dir <directoryname>." )
2016-08-18 19:23:42 -04:00
}
}
2016-11-28 15:15:36 -05:00
// Check for updates and print a notification message
func checkUpdate ( ) {
// Do not print update messages, if quiet flag is set.
if ! globalQuiet {
2017-02-15 03:31:00 -05:00
older , downloadURL , err := getUpdateInfo ( 1 * time . Second )
2016-11-28 15:15:36 -05:00
if err != nil {
2017-02-15 03:31:00 -05:00
// Its OK to ignore any errors during getUpdateInfo() here.
2016-11-28 15:15:36 -05:00
return
2016-11-23 20:27:42 -05:00
}
2017-02-15 03:31:00 -05:00
if older > time . Duration ( 0 ) {
console . Println ( colorizeUpdateMessage ( downloadURL , older ) )
2016-11-28 15:15:36 -05:00
}
}
}
2016-11-23 20:27:42 -05:00
2017-02-07 15:51:43 -05:00
// Initializes a new config if it doesn't exist, else migrates any old config
// to newer config and finally loads the config to memory.
func initConfig ( ) {
envCreds := mustGetCredentialFromEnv ( )
// Config file does not exist, we create it fresh and return upon success.
if ! isConfigFileExists ( ) {
if err := newConfig ( envCreds ) ; err != nil {
console . Fatalf ( "Unable to initialize minio config for the first time. Err: %s.\n" , err )
}
console . Println ( "Created minio configuration file successfully at " + mustGetConfigPath ( ) )
return
}
// Migrate any old version of config / state files to newer format.
migrate ( )
// Once we have migrated all the old config, now load them.
if err := loadConfig ( envCreds ) ; err != nil {
console . Fatalf ( "Unable to initialize minio config. Err: %s.\n" , err )
}
}
2016-11-28 15:15:36 -05:00
// Generic Minio initialization to create/load config, prepare loggers, etc..
2017-01-11 16:59:51 -05:00
func minioInit ( ctx * cli . Context ) {
// Set global variables after parsing passed arguments
setGlobalsFromContext ( ctx )
2017-01-16 04:48:34 -05:00
// Sets new config directory.
setGlobalConfigPath ( globalConfigDir )
2017-01-15 19:53:01 -05:00
// Is TLS configured?.
globalIsSSL = isSSL ( )
2016-08-18 19:23:42 -04:00
2017-02-07 15:51:43 -05:00
// Initialize minio server config.
initConfig ( )
2016-11-23 20:27:42 -05:00
2016-11-28 15:15:36 -05:00
// Enable all loggers by now so we can use errorIf() and fatalIf()
enableLoggers ( )
// Init the error tracing module.
initError ( )
}
// Main main for minio server.
2017-01-26 18:22:41 -05:00
func Main ( args [ ] string , exitFn func ( int ) ) {
2016-11-28 15:15:36 -05:00
app := registerApp ( )
app . Before = func ( c * cli . Context ) error {
// Valid input arguments to main.
checkMainSyntax ( c )
2016-08-18 19:23:42 -04:00
return nil
}
2016-09-01 23:13:11 -04:00
// Start profiler if env is set.
2016-11-11 19:36:07 -05:00
if profiler := os . Getenv ( "_MINIO_PROFILER" ) ; profiler != "" {
2016-09-01 23:13:11 -04:00
globalProfiler = startProfiler ( profiler )
2016-08-18 19:23:42 -04:00
}
// Run the app - exit on error.
2017-01-26 18:22:41 -05:00
if err := app . Run ( args ) ; err != nil {
exitFn ( 1 )
}
2016-08-18 19:23:42 -04:00
}