mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
61 lines
1.9 KiB
Python
61 lines
1.9 KiB
Python
# This file is part of beets.
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
# a copy of this software and associated documentation files (the
|
|
# "Software"), to deal in the Software without restriction, including
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
# permit persons to whom the Software is furnished to do so, subject to
|
|
# the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
from beets import ui
|
|
from beets.plugins import BeetsPlugin
|
|
|
|
from subprocess import call
|
|
from os import rmdir
|
|
|
|
|
|
class IPFSPlugin(BeetsPlugin):
|
|
|
|
def __init__(self):
|
|
super(IPFSPlugin, self).__init__()
|
|
|
|
def commands(self):
|
|
cmd = ui.Subcommand('ipfs',
|
|
help='interact with ipfs')
|
|
cmd.parser.add_option('-a', '--add', dest='add',
|
|
action='store_true',
|
|
help='Add to ipfs')
|
|
cmd.parser.add_option('-g', '--get', dest='get',
|
|
action='store_true',
|
|
help='Get from ipfs')
|
|
|
|
def func(lib, opts, args):
|
|
if opts.add:
|
|
ipfs_add(lib.albums(ui.decargs(args)))
|
|
if opts.get:
|
|
ipfs_get(lib, ui.decargs(args))
|
|
|
|
cmd.func = func
|
|
return [cmd]
|
|
|
|
|
|
def ipfs_add(lib):
|
|
try:
|
|
album_dir = lib.get().item_dir()
|
|
except AttributeError:
|
|
return
|
|
ui.print_('Adding %s to ipfs' % album_dir)
|
|
call(["ipfs", "add", "-r", album_dir])
|
|
|
|
|
|
def ipfs_get(lib, hash):
|
|
call(["ipfs", "get", hash[0]])
|
|
ui.print_('Getting %s from ipfs' % hash[0])
|
|
imp = ui.commands.TerminalImportSession(lib, loghandler=None,
|
|
query=None, paths=hash)
|
|
imp.run()
|
|
rmdir(hash[0])
|