seaweedfs/go/weed/weed_server/filer_server.go

68 lines
2.1 KiB
Go
Raw Normal View History

2014-03-30 18:28:04 +00:00
package weed_server
import (
"net/http"
2014-03-31 03:57:25 +00:00
"strconv"
"github.com/chrislusf/seaweedfs/go/filer"
"github.com/chrislusf/seaweedfs/go/filer/cassandra_store"
"github.com/chrislusf/seaweedfs/go/filer/embedded_filer"
"github.com/chrislusf/seaweedfs/go/filer/flat_namespace"
"github.com/chrislusf/seaweedfs/go/filer/redis_store"
"github.com/chrislusf/seaweedfs/go/glog"
"github.com/chrislusf/seaweedfs/go/security"
2014-03-30 18:28:04 +00:00
)
type FilerServer struct {
port string
master string
collection string
defaultReplication string
redirectOnRead bool
2015-04-14 06:38:46 +00:00
disableDirListing bool
2015-02-07 23:35:28 +00:00
secret security.Secret
filer filer.Filer
2014-03-30 18:28:04 +00:00
}
2015-01-07 03:34:11 +00:00
func NewFilerServer(r *http.ServeMux, port int, master string, dir string, collection string,
2015-04-14 06:38:46 +00:00
replication string, redirectOnRead bool, disableDirListing bool,
2015-02-07 23:35:28 +00:00
secret string,
cassandra_server string, cassandra_keyspace string,
redis_server string, redis_password string, redis_database int,
) (fs *FilerServer, err error) {
2014-03-30 18:28:04 +00:00
fs = &FilerServer{
master: master,
collection: collection,
defaultReplication: replication,
redirectOnRead: redirectOnRead,
2015-04-14 06:38:46 +00:00
disableDirListing: disableDirListing,
port: ":" + strconv.Itoa(port),
2014-03-30 18:28:04 +00:00
}
if cassandra_server != "" {
cassandra_store, err := cassandra_store.NewCassandraStore(cassandra_keyspace, cassandra_server)
if err != nil {
glog.Fatalf("Can not connect to cassandra server %s with keyspace %s: %v", cassandra_server, cassandra_keyspace, err)
}
fs.filer = flat_namespace.NewFlatNamespaceFiler(master, cassandra_store)
} else if redis_server != "" {
redis_store := redis_store.NewRedisStore(redis_server, redis_password, redis_database)
fs.filer = flat_namespace.NewFlatNamespaceFiler(master, redis_store)
} else {
if fs.filer, err = embedded_filer.NewFilerEmbedded(master, dir); err != nil {
2015-01-13 05:20:11 +00:00
glog.Fatalf("Can not start filer in dir %s : %v", dir, err)
return
}
r.HandleFunc("/admin/mv", fs.moveHandler)
2014-03-30 18:28:04 +00:00
}
r.HandleFunc("/", fs.filerHandler)
return fs, nil
}
2015-02-07 23:35:28 +00:00
func (fs *FilerServer) jwt(fileId string) security.EncodedJwt {
return security.GenJwt(fs.secret, fileId)
}