123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- #!/usr/bin/env python
- '''
- Created on Apr 19, 2012
- @author: dan, Faless
- GNU GENERAL PUBLIC LICENSE - Version 3
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- http://www.gnu.org/licenses/gpl-3.0.txt
- '''
- import shutil
- import tempfile
- import os.path as pt
- import sys
- import libtorrent as lt
- from time import sleep
- def magnet2torrent(magnet, output_name=None):
- if output_name and \
- not pt.isdir(output_name) and \
- not pt.isdir(pt.dirname(pt.abspath(output_name))):
- print("Invalid output folder: " + pt.dirname(pt.abspath(output_name)))
- print("")
- sys.exit(0)
- tempdir = tempfile.mkdtemp()
- ses = lt.session()
- params = {
- 'save_path': tempdir,
- 'duplicate_is_error': True,
- 'storage_mode': lt.storage_mode_t(2),
- 'paused': False,
- 'auto_managed': True,
- 'duplicate_is_error': True
- }
- handle = lt.add_magnet_uri(ses, magnet, params)
- print("Downloading Metadata (this may take a while)")
- while (not handle.has_metadata()):
- try:
- sleep(1)
- except KeyboardInterrupt:
- print("Aborting...")
- ses.pause()
- print("Cleanup dir " + tempdir)
- shutil.rmtree(tempdir)
- sys.exit(0)
- ses.pause()
- print("Done")
- torinfo = handle.get_torrent_info()
- torfile = lt.create_torrent(torinfo)
- output = pt.abspath(torinfo.name() + ".torrent")
- if output_name:
- if pt.isdir(output_name):
- output = pt.abspath(pt.join(
- output_name, torinfo.name() + ".torrent"))
- elif pt.isdir(pt.dirname(pt.abspath(output_name))):
- output = pt.abspath(output_name)
- print("Saving torrent file here : " + output + " ...")
- torcontent = lt.bencode(torfile.generate())
- f = open(output, "wb")
- f.write(lt.bencode(torfile.generate()))
- f.close()
- print("Saved! Cleaning up dir: " + tempdir)
- ses.remove_torrent(handle)
- shutil.rmtree(tempdir)
- return output
- def showHelp():
- print("")
- print("USAGE: " + pt.basename(sys.argv[0]) + " MAGNET [OUTPUT]")
- print(" MAGNET\t- the magnet url")
- print(" OUTPUT\t- the output torrent file name")
- print("")
- def main():
- if len(sys.argv) < 2:
- showHelp()
- sys.exit(0)
- magnet = sys.argv[1]
- output_name = None
- if len(sys.argv) >= 3:
- output_name = sys.argv[2]
- magnet2torrent(magnet, output_name)
- if __name__ == "__main__":
- main()
|