2014-03-30 18:28:04 +00:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
2018-05-14 06:56:16 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
2018-05-27 07:01:15 +00:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/cassandra"
|
2018-05-26 10:49:46 +00:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/leveldb"
|
2018-05-26 12:32:15 +00:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/memdb"
|
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/mysql"
|
2018-05-27 05:02:49 +00:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/postgres"
|
2018-05-27 18:14:29 +00:00
|
|
|
_ "github.com/chrislusf/seaweedfs/weed/filer2/redis"
|
2018-06-01 07:39:39 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2018-07-22 00:39:10 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/security"
|
|
|
|
"net/http"
|
2014-03-30 18:28:04 +00:00
|
|
|
)
|
|
|
|
|
2018-07-07 09:18:47 +00:00
|
|
|
type FilerOption struct {
|
|
|
|
Masters []string
|
|
|
|
Collection string
|
|
|
|
DefaultReplication string
|
|
|
|
RedirectOnRead bool
|
|
|
|
DisableDirListing bool
|
|
|
|
MaxMB int
|
|
|
|
SecretKey string
|
|
|
|
DirListingLimit int
|
2018-07-09 09:22:48 +00:00
|
|
|
DataCenter string
|
2018-07-07 09:18:47 +00:00
|
|
|
}
|
|
|
|
|
2014-03-30 18:28:04 +00:00
|
|
|
type FilerServer struct {
|
2018-07-07 09:18:47 +00:00
|
|
|
option *FilerOption
|
|
|
|
secret security.Secret
|
|
|
|
filer *filer2.Filer
|
2014-03-30 18:28:04 +00:00
|
|
|
}
|
|
|
|
|
2018-07-07 09:18:47 +00:00
|
|
|
func NewFilerServer(defaultMux, readonlyMux *http.ServeMux, option *FilerOption) (fs *FilerServer, err error) {
|
2014-03-30 18:28:04 +00:00
|
|
|
fs = &FilerServer{
|
2018-07-07 09:18:47 +00:00
|
|
|
option: option,
|
2014-03-30 18:28:04 +00:00
|
|
|
}
|
2018-06-01 07:39:39 +00:00
|
|
|
|
2018-07-07 09:18:47 +00:00
|
|
|
if len(option.Masters) == 0 {
|
2018-06-01 07:39:39 +00:00
|
|
|
glog.Fatal("master list is required!")
|
|
|
|
}
|
|
|
|
|
2018-07-07 09:18:47 +00:00
|
|
|
fs.filer = filer2.NewFiler(option.Masters)
|
2018-06-01 07:39:39 +00:00
|
|
|
|
|
|
|
go fs.filer.KeepConnectedToMaster()
|
2018-05-26 10:49:46 +00:00
|
|
|
|
|
|
|
fs.filer.LoadConfiguration()
|
2018-05-14 06:56:16 +00:00
|
|
|
|
2018-05-28 09:35:58 +00:00
|
|
|
defaultMux.HandleFunc("/favicon.ico", faviconHandler)
|
2017-05-28 01:11:18 +00:00
|
|
|
defaultMux.HandleFunc("/", fs.filerHandler)
|
2017-05-28 03:14:22 +00:00
|
|
|
if defaultMux != readonlyMux {
|
|
|
|
readonlyMux.HandleFunc("/", fs.readonlyFilerHandler)
|
|
|
|
}
|
2014-03-30 18:28:04 +00:00
|
|
|
|
|
|
|
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)
|
|
|
|
}
|