-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuTorrentHandler.cs
204 lines (187 loc) · 7.23 KB
/
uTorrentHandler.cs
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Diagnostics;
using System.Data;
using System.Windows.Forms;
namespace CSL
{
class uTorrentHandler : DataGridViewHandler
{
public static void SendTorrent(string datatable, int index)
{
string path = null;
string save = null;
DataRow dr = null;
switch (datatable)
{
case "others":
try { dr = TorrentDataHandler.data.OthersTable.Rows.Find(index); }
catch { return; }
break;
case "movies":
try { dr = TorrentDataHandler.data.MoviesTable.Rows.Find(index); }
catch { return; }
break;
case "music":
try { dr = TorrentDataHandler.data.TorrentsTable.Rows.Find(index); }
catch { return; }
break;
default:
return;
}
try
{
if (dr != null)
dr.BeginEdit();
else
return;
path = (dr["File Path"].Equals(DBNull.Value)) ? null : (string)dr["File Path"];
save = (dr["Save Structure"].Equals(DBNull.Value)) ? null : (string)dr["Save Structure"];
//Preliminary error checking
if (path == null || !DirectoryHandler.GetFileExists(path))
{
dr.SetColumnError(TorrentDataHandler.data.TorrentsTable.Columns["File Path"], "File does not exist");
dr.EndEdit();
return;
}
if (save == null || save == "")
{
dr.SetColumnError(TorrentDataHandler.data.TorrentsTable.Columns["Save Structure"], "Empty save structure");
dr.EndEdit();
return;
}
if (!DirectoryHandler.GetFileExists(SettingsHandler.GetTorrentClientFolder() + "\\uTorrent.exe"))
{
ErrorWindow ew = new ErrorWindow();
ew.IssueGeneralWarning("Be sure uTorrent folder is correct", "uTorrent.exe does not exist", null);
dr.EndEdit();
return;
}
if ((bool)dr["Sent"])
{
dr.EndEdit();
return;
}
}
catch (Exception e)
{
if (dr != null)
dr.RowError = ("General exception: " + e.Message);
dr.EndEdit();
return;
}
try
{
Process sendTorrentProcess = new Process();
//torrentClient.exe /directory "C:\Save Path" "D:\Some folder\your.torrent"
string fullArgument = "/directory " + "\"" + save + "\" "
+ "\"" + path + "\"";
sendTorrentProcess.StartInfo.WorkingDirectory = SettingsHandler.GetTorrentClientFolder();
sendTorrentProcess.StartInfo.Arguments = fullArgument;
sendTorrentProcess.StartInfo.FileName = SettingsHandler.GetTorrentClient();
sendTorrentProcess.Start();
sendTorrentProcess.Dispose();
sendTorrentProcess.Close();
dr["Sent"] = true;
if (dr.HasErrors)
dr.ClearErrors();
dr.EndEdit();
}
catch (Exception e)
{
if (dr != null)
dr.RowError = ("General exception: " + e.Message);
dr.EndEdit();
return;
}
}
public static void SendTorrentWithoutSavePath(string table, int index)
{
string filepath = null;
DataRow dr = null;
switch (table)
{
case "others":
try { dr = TorrentDataHandler.data.OthersTable.Rows.Find(index); }
catch { return; }
break;
case "movies":
try { dr = TorrentDataHandler.data.MoviesTable.Rows.Find(index); }
catch { return; }
break;
case "music":
try { dr = TorrentDataHandler.data.TorrentsTable.Rows.Find(index); }
catch { return; }
break;
default:
return;
}
try
{
Clipboard.SetData(DataFormats.StringFormat, dr["Save Structure"]);
if (dr != null)
dr.BeginEdit();
else
return;
filepath = (dr["File Path"].Equals(DBNull.Value)) ? null : (string)dr["File Path"];
//Preliminary error checking
if (filepath == null || !DirectoryHandler.GetFileExists(filepath))
{
dr.SetColumnError(TorrentDataHandler.data.TorrentsTable.Columns["File Path"], "File does not exist");
dr.EndEdit();
return;
}
if (!DirectoryHandler.GetFileExists(SettingsHandler.GetTorrentClientFolder() + "\\uTorrent.exe"))
{
ErrorWindow ew = new ErrorWindow();
ew.IssueGeneralWarning("Be sure uTorrent folder is correct", "uTorrent.exe does not exist", null);
dr.EndEdit();
return;
}
if ((bool)dr["Sent"])
{
dr.EndEdit();
return;
}
}
catch (Exception e)
{
if (dr != null)
dr.RowError = ("General exception: " + e.Message);
dr.EndEdit();
return;
}
try
{
Process sendTorrentProcess = new Process();
sendTorrentProcess.StartInfo.FileName = filepath;
sendTorrentProcess.Start();
sendTorrentProcess.Close();
/*
//torrentClient.exe /directory "C:\Save Path" "D:\Some folder\your.torrent"
string fullArgument = "/directory " + "\"" + filepath + "\"";
sendTorrentProcess.StartInfo.WorkingDirectory = SettingsHandler.GetTorrentClientFolder();
sendTorrentProcess.StartInfo.Arguments = fullArgument;
sendTorrentProcess.StartInfo.FileName = SettingsHandler.GetTorrentClient();
sendTorrentProcess.Start();
sendTorrentProcess.Dispose();
sendTorrentProcess.Close();
* */
dr["Sent"] = true;
if (dr.HasErrors)
dr.ClearErrors();
dr.EndEdit();
}
catch (Exception e)
{
if (dr != null)
dr.RowError = ("General exception: " + e.Message);
dr.EndEdit();
return;
}
}
}
}