This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
packagepic
import(
"net/http"
"time"
"strings"
"fmt"
//"log"
"github.com/linxGnu/goseaweedfs"
)
varsw*goseaweedfs.Seaweed
funcinit(){
masterURL:="http://192.168.0.105:9333"
filer:=[]string{}
sw,_=goseaweedfs.NewSeaweed(
masterURL,// master server
filer,// нету у меня filer
8096,// размер chunk
&http.Client{Timeout:5*time.Minute})
_,err:=sw.Status()
iferr!=nil{
panic(err)
}
}
// загружает файл filename на weed и возвращает url загруженного файла
funcupload(filenamestring)(string,error){
fid,err:=sw.Submit(filename,"","")
iferr!=nil{
return"",err
}
returnfid.FileURL,nil
}
// удаляет файл из weed
funcdelete(urlstring)error{
fid,err:=getFID(url)
iferr!=nil{
returnerr
}
err=sw.DeleteFile(fid,nil)
returnerr
}
funcgetFID(urlstring)(string,error){
items:=strings.Split(url,"/")
iflen(items)!=2{
return"",fmt.Errorf("url должен быть в формате: <address/fid>")