~hyperair/do-plugins/drop-obsolete-urls

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using System;
using System.Linq;
using System.Collections.Generic;

using Mono.Addins;

using Do.Platform;
using Do.Universe;

namespace Transmission {

	public class TorrentUnmarkForDownloadAction: Act {

		public TorrentUnmarkForDownloadAction() {
		}

	    public override string Name {
			get { return AddinManager.CurrentLocalizer.GetString ("Unmark for download"); }
	    }

		public override string Description {
			get { return AddinManager.CurrentLocalizer.GetString ("Unmark file as needed to be downloaded"); }
		}

		public override string Icon {
			get { return "remove"; }
		}

		public override IEnumerable<Type> SupportedItemTypes {
			get {
				yield return typeof (ITorrentEntry);
			}
		}

		public override IEnumerable<Item> Perform(IEnumerable<Item> items, IEnumerable<Item> modItems) {
			TransmissionAPI api = TransmissionPlugin.getTransmission();

			// Operation is common for all files.
			TransmissionAPI.FileOperation operation = new TransmissionAPI.FileOperation(false, null);

			// Group selected items by owner torrent.
			var files_by_torrent = items
				.Cast<ITorrentEntry>()
				.GroupBy(
					item => item.Torrent,
					(torrent, entries) => new {
						Torrent = torrent,
						Files = entries.SelectMany(entry => entry.GetFiles())
					}
				);

			// Perform action for each torrent separately.
			foreach (var group in files_by_torrent) {
				var operations = group.Files.ToDictionary(f => f.Index, f => operation);
				api.SetTorrent(group.Torrent.HashString, null, null, null, null, null, operations);
			}

			yield break;
		}
	}
}