ecd524ed3c
- Simplify by now all html and javascript. - Added a simple interface using go templates and plain javascript. - Improved REST interface for the use case. - Changed some properties into the config file to make it suitable for future use cases. Signed-off-by: Antonio Navarro Perez <antnavper@gmail.com>
91 lines
1.8 KiB
Go
91 lines
1.8 KiB
Go
package mount
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
|
|
"github.com/ajnavarro/distribyted/config"
|
|
"github.com/ajnavarro/distribyted/node"
|
|
"github.com/ajnavarro/distribyted/stats"
|
|
"github.com/anacrolix/torrent"
|
|
"github.com/hanwen/go-fuse/v2/fs"
|
|
"github.com/hanwen/go-fuse/v2/fuse"
|
|
"github.com/panjf2000/ants/v2"
|
|
)
|
|
|
|
type Handler struct {
|
|
c *torrent.Client
|
|
s *stats.Torrent
|
|
opts *fs.Options
|
|
|
|
pool *ants.Pool
|
|
servers map[string]*fuse.Server
|
|
}
|
|
|
|
func NewHandler(c *torrent.Client, pool *ants.Pool, s *stats.Torrent) *Handler {
|
|
return &Handler{
|
|
c: c,
|
|
s: s,
|
|
opts: &fs.Options{},
|
|
pool: pool,
|
|
servers: make(map[string]*fuse.Server),
|
|
}
|
|
}
|
|
|
|
func (s *Handler) Mount(mpc *config.MountPoint) error {
|
|
var torrents []*torrent.Torrent
|
|
for _, mpcTorrent := range mpc.Torrents {
|
|
var t *torrent.Torrent
|
|
var err error
|
|
|
|
switch {
|
|
case mpcTorrent.MagnetURI != "":
|
|
t, err = s.c.AddMagnet(mpcTorrent.MagnetURI)
|
|
break
|
|
case mpcTorrent.TorrentPath != "":
|
|
t, err = s.c.AddTorrentFromFile(mpcTorrent.TorrentPath)
|
|
break
|
|
default:
|
|
err = fmt.Errorf("no magnet URI or torrent path provided")
|
|
}
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
log.Println("getting torrent info", t.Name())
|
|
<-t.GotInfo()
|
|
|
|
s.s.Add(mpc.Path, t)
|
|
|
|
log.Println("torrent info obtained", t.Name())
|
|
torrents = append(torrents, t)
|
|
}
|
|
|
|
// TODO change permissions
|
|
if err := os.MkdirAll(mpc.Path, 0770); err != nil && !os.IsExist(err) {
|
|
log.Println("UFFF", err)
|
|
return err
|
|
}
|
|
|
|
node := node.NewRoot(torrents, s.pool)
|
|
server, err := fs.Mount(mpc.Path, node, s.opts)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
s.servers[mpc.Path] = server
|
|
|
|
return nil
|
|
}
|
|
|
|
func (s *Handler) Close() {
|
|
for path, server := range s.servers {
|
|
log.Println("unmounting", path)
|
|
err := server.Unmount()
|
|
if err != nil {
|
|
log.Println("unmount failed", path, err)
|
|
}
|
|
}
|
|
}
|