minio/main.go

119 lines
2.8 KiB
Go
Raw Normal View History

2015-02-08 11:54:21 +01:00
/*
* Mini Object Storage, (C) 2015 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 main
import (
2015-01-29 01:07:53 +01:00
"log"
2015-01-29 04:52:30 +01:00
"os"
2015-01-29 01:07:53 +01:00
2015-01-29 04:52:30 +01:00
"github.com/codegangsta/cli"
"github.com/minio-io/minio/pkg/server"
)
func getStorageType(input string) server.StorageType {
switch {
case input == "file":
return server.FileStorage
case input == "inmemory":
return server.InMemoryStorage
default:
{
log.Println("Unknown storage type:", input)
log.Println("Choosing default storage type as 'file'..")
return server.FileStorage
}
}
}
func runCmd(c *cli.Context) {
storageTypeStr := c.String("storage-type")
domain := c.String("domain")
apiaddress := c.String("api-address")
webaddress := c.String("web-address")
certFile := c.String("cert")
keyFile := c.String("key")
if (certFile != "" && keyFile == "") || (certFile == "" && keyFile != "") {
log.Fatal("Both certificate and key must be provided to enable https")
}
tls := (certFile != "" && keyFile != "")
storageType := getStorageType(storageTypeStr)
var serverConfigs []server.ServerConfig
apiServerConfig := server.ServerConfig{
Domain: domain,
Address: apiaddress,
Tls: tls,
CertFile: certFile,
KeyFile: keyFile,
ApiType: server.MinioApi{
StorageType: storageType,
},
}
webUiServerConfig := server.ServerConfig{
Domain: domain,
Address: webaddress,
Tls: false,
CertFile: "",
KeyFile: "",
ApiType: server.WebUIApi{
Websocket: false,
},
}
serverConfigs = append(serverConfigs, apiServerConfig)
serverConfigs = append(serverConfigs, webUiServerConfig)
server.Start(serverConfigs)
}
func main() {
2015-01-29 04:52:30 +01:00
app := cli.NewApp()
app.Name = "minio"
app.Usage = ""
app.Flags = []cli.Flag{
cli.StringFlag{
Name: "domain,d",
Value: "",
Usage: "address for incoming API requests",
},
2015-01-29 04:52:30 +01:00
cli.StringFlag{
Name: "api-address,a",
2015-02-08 23:10:10 +01:00
Value: ":9000",
Usage: "address for incoming API requests",
},
cli.StringFlag{
Name: "web-address,w",
2015-02-08 23:10:10 +01:00
Value: ":9001",
Usage: "address for incoming Management UI requests",
2015-01-29 04:52:30 +01:00
},
cli.StringFlag{
Name: "cert,c",
Value: "",
Usage: "cert.pem",
},
cli.StringFlag{
Name: "key,k",
Value: "",
Usage: "key.pem",
},
cli.StringFlag{
Name: "storage-type,s",
Value: "file",
Usage: "valid entries: file,inmemory",
},
}
app.Action = runCmd
2015-01-29 04:52:30 +01:00
app.Run(os.Args)
}