2013-08-14 14:26:51 +08:00
|
|
|
package operation
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
2015-03-09 16:10:01 +08:00
|
|
|
"fmt"
|
2013-08-14 14:26:51 +08:00
|
|
|
"net/url"
|
|
|
|
"strconv"
|
2014-10-27 02:34:55 +08:00
|
|
|
|
2015-04-17 03:18:06 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/go/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/go/util"
|
2013-08-14 14:26:51 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type AssignResult struct {
|
2014-04-16 00:20:04 +08:00
|
|
|
Fid string `json:"fid,omitempty"`
|
|
|
|
Url string `json:"url,omitempty"`
|
|
|
|
PublicUrl string `json:"publicUrl,omitempty"`
|
2015-04-07 05:17:36 +08:00
|
|
|
Count uint64 `json:"count,omitempty"`
|
2014-04-16 00:20:04 +08:00
|
|
|
Error string `json:"error,omitempty"`
|
2013-08-14 14:26:51 +08:00
|
|
|
}
|
|
|
|
|
2015-04-07 05:17:36 +08:00
|
|
|
func Assign(server string, count uint64, replication string, collection string, ttl string) (*AssignResult, error) {
|
2013-08-14 14:26:51 +08:00
|
|
|
values := make(url.Values)
|
2015-04-07 05:17:36 +08:00
|
|
|
values.Add("count", strconv.FormatUint(count, 10))
|
2013-08-14 14:26:51 +08:00
|
|
|
if replication != "" {
|
|
|
|
values.Add("replication", replication)
|
|
|
|
}
|
2014-03-10 14:54:07 +08:00
|
|
|
if collection != "" {
|
|
|
|
values.Add("collection", collection)
|
|
|
|
}
|
2014-09-21 03:38:59 +08:00
|
|
|
if ttl != "" {
|
|
|
|
values.Add("ttl", ttl)
|
|
|
|
}
|
2013-08-14 14:26:51 +08:00
|
|
|
jsonBlob, err := util.Post("http://"+server+"/dir/assign", values)
|
|
|
|
glog.V(2).Info("assign result :", string(jsonBlob))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var ret AssignResult
|
|
|
|
err = json.Unmarshal(jsonBlob, &ret)
|
|
|
|
if err != nil {
|
2015-03-20 01:48:28 +08:00
|
|
|
return nil, fmt.Errorf("/dir/assign result JSON unmarshal error:%v, json:%s", err, string(jsonBlob))
|
2013-08-14 14:26:51 +08:00
|
|
|
}
|
|
|
|
if ret.Count <= 0 {
|
|
|
|
return nil, errors.New(ret.Error)
|
|
|
|
}
|
|
|
|
return &ret, nil
|
|
|
|
}
|