2014-03-31 02:28:04 +08:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2018-05-14 14:56:16 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
2018-05-27 15:01:15 +08:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/cassandra"
|
2018-05-26 18:49:46 +08:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/leveldb"
|
2018-05-26 20:32:15 +08:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/memdb"
|
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/mysql"
|
2018-05-27 13:02:49 +08:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/postgres"
|
2018-05-28 02:14:29 +08:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/redis"
|
2018-05-28 02:52:26 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/security"
|
2018-06-01 15:39:39 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2014-03-31 02:28:04 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type FilerServer struct {
|
2018-06-01 15:39:39 +08:00
|
|
|
masters []string
|
2014-12-09 12:27:26 +08:00
|
|
|
collection string
|
|
|
|
defaultReplication string
|
|
|
|
redirectOnRead bool
|
2015-04-14 14:38:46 +08:00
|
|
|
disableDirListing bool
|
2015-02-08 07:35:28 +08:00
|
|
|
secret security.Secret
|
2018-05-14 14:56:16 +08:00
|
|
|
filer *filer2.Filer
|
2016-08-31 11:32:30 +08:00
|
|
|
maxMB int
|
2014-03-31 02:28:04 +08:00
|
|
|
}
|
|
|
|
|
2018-07-07 17:03:25 +08:00
|
|
|
func NewFilerServer(defaultMux, readonlyMux *http.ServeMux, masters []string, collection string,
|
2015-04-14 14:38:46 +08:00
|
|
|
replication string, redirectOnRead bool, disableDirListing bool,
|
2016-08-06 06:01:30 +08:00
|
|
|
maxMB int,
|
2015-02-08 07:35:28 +08:00
|
|
|
secret string,
|
2014-12-09 12:27:26 +08:00
|
|
|
) (fs *FilerServer, err error) {
|
2014-03-31 02:28:04 +08:00
|
|
|
fs = &FilerServer{
|
2018-06-01 15:39:39 +08:00
|
|
|
masters: masters,
|
2014-12-09 12:27:26 +08:00
|
|
|
collection: collection,
|
|
|
|
defaultReplication: replication,
|
|
|
|
redirectOnRead: redirectOnRead,
|
2015-04-14 14:38:46 +08:00
|
|
|
disableDirListing: disableDirListing,
|
2016-08-31 11:32:30 +08:00
|
|
|
maxMB: maxMB,
|
2014-03-31 02:28:04 +08:00
|
|
|
}
|
2018-06-01 15:39:39 +08:00
|
|
|
|
|
|
|
if len(masters) == 0 {
|
|
|
|
glog.Fatal("master list is required!")
|
|
|
|
}
|
|
|
|
|
|
|
|
fs.filer = filer2.NewFiler(masters)
|
|
|
|
|
|
|
|
go fs.filer.KeepConnectedToMaster()
|
2018-05-26 18:49:46 +08:00
|
|
|
|
|
|
|
fs.filer.LoadConfiguration()
|
2018-05-14 14:56:16 +08:00
|
|
|
|
2018-05-28 17:35:58 +08:00
|
|
|
defaultMux.HandleFunc("/favicon.ico", faviconHandler)
|
2017-05-28 09:11:18 +08:00
|
|
|
defaultMux.HandleFunc("/", fs.filerHandler)
|
2017-05-28 11:14:22 +08:00
|
|
|
if defaultMux != readonlyMux {
|
|
|
|
readonlyMux.HandleFunc("/", fs.readonlyFilerHandler)
|
|
|
|
}
|
2014-03-31 02:28:04 +08:00
|
|
|
|
|
|
|
return fs, nil
|
|
|
|
}
|
2015-02-08 07:35:28 +08:00
|
|
|
|
|
|
|
func (fs *FilerServer) jwt(fileId string) security.EncodedJwt {
|
|
|
|
return security.GenJwt(fs.secret, fileId)
|
|
|
|
}
|