Blame view

plugins/torrent/torrent.plugin.zsh 344 Bytes
093a6c34b   mj   Squashed 'repos/r...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  #
  # Algorithm borrowed from http://wiki.rtorrent.org/MagnetUri and adapted to work with zsh.
  #
  
  function magnet_to_torrent() {
  	[[ "$1" =~ xt=urn:btih:([^\&/]+) ]] || return 1
  
  	hashh=${match[1]}
  
  	if [[ "$1" =~ dn=([^\&/]+) ]];then
  	  filename=${match[1]}
  	else
  	  filename=$hashh
  	fi
  
  	echo "d10:magnet-uri${#1}:${1}e" > "$filename.torrent"
  }