forked from mus1cjunk1e/NativaPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProcessesController.m
411 lines (340 loc) · 12.1 KB
/
ProcessesController.m
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
/******************************************************************************
* Nativa - MacOS X UI for rtorrent
* http://www.aramzamzam.net
*
* Copyright Solomenchuk V. 2010.
* Solomenchuk Vladimir <[email protected]>
*
* Licensed under the GPL, Version 3.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.gnu.org/licenses/gpl-3.0.html
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
#import "ProcessesController.h"
#import "SynthesizeSingleton.h"
#import "PreferencesController.h"
#import "AMSession.h"
#import "AMServer.h"
#import "RTConnection.h"
#import "RTorrentController.h"
#import "EMKeychainItem.h"
@interface ProcessesController(Private)
-(NSMutableDictionary *) dictionaryForIndex:(NSInteger) index;
-(void) setObject:(id) object forKey:(NSString *) key forIndex:(NSInteger) index;
-(id) object:(NSString *) key forIndex:(NSInteger) index;
@end
@implementation ProcessesController
SYNTHESIZE_SINGLETON_FOR_CLASS(ProcessesController);
- (id) init
{
if ((self = [super init]))
{
NSArray* procs;
_processes = [[NSMutableArray alloc] init];
if ((procs = [[NSUserDefaults standardUserDefaults] arrayForKey: @"Processes"]))
{
for (NSDictionary * dict in procs)
{
NSMutableDictionary * tempDict = [dict mutableCopy];
//retrieve SSH password from keychain
if ([[tempDict objectForKey:@"ConnectionType"] isEqualToString:@"SSH"] && ![[tempDict objectForKey:@"SSHUseKeyLogin"] boolValue])
{
EMInternetKeychainItem *keychainItem = [EMInternetKeychainItem internetKeychainItemForServer:[tempDict objectForKey:@"SSHHost"]
withUsername:[tempDict objectForKey:@"SSHUser"]
path:nil
port:[[tempDict objectForKey:@"SSHPort"] integerValue]
protocol:kSecProtocolTypeSSH];
[tempDict setObject:keychainItem.password==nil?@"":keychainItem.password forKey:@"SSHPassword"];
}
[_processes addObject:tempDict];
[tempDict release];
}
}
}
return self;
}
- (void) dealloc
{
[_processes release];
[super dealloc];
}
-(NSInteger) count
{
return [_processes count];
}
- (void) saveProcesses
{
NSMutableArray * processes = [NSMutableArray arrayWithCapacity: [_processes count]];
for (NSDictionary * dict in _processes)
{
NSMutableDictionary * tempDict = [dict mutableCopy];
//don't archive the ProcessObject
[tempDict removeObjectForKey: @"ProcessObject"];
//store SSH password in keychain
if ([[tempDict objectForKey:@"ConnectionType"] isEqualToString:@"SSH"] && ![[tempDict objectForKey:@"SSHUseKeyLogin"] boolValue])
{
NSString *password = [tempDict objectForKey:@"SSHPassword"];
if (password !=nil && ![password isEqualToString:@""])
{
EMInternetKeychainItem *keychainItem = [EMInternetKeychainItem addInternetKeychainItemForServer:[tempDict objectForKey:@"SSHHost"]
withUsername:[tempDict objectForKey:@"SSHUser"]
password:password
path:nil
port:[[tempDict objectForKey:@"SSHPort"] integerValue]
protocol:kSecProtocolTypeSSH];
if (keychainItem == nil)
{
keychainItem = [EMInternetKeychainItem internetKeychainItemForServer:[tempDict objectForKey:@"SSHHost"]
withUsername:[tempDict objectForKey:@"SSHUser"]
path:nil
port:[[tempDict objectForKey:@"SSHPort"] integerValue]
protocol:kSecProtocolTypeSSH];
keychainItem.password = password;
}
}
[tempDict removeObjectForKey: @"SSHPassword"];
}
[processes addObject: tempDict];
[tempDict release];
}
[[NSUserDefaults standardUserDefaults] setObject: processes forKey: @"Processes"];
}
-(void) setName:(NSString *)name forIndex:(NSInteger) index
{
[self setObject:name forKey:@"Name" forIndex:index];
}
-(NSString *) nameForIndex:(NSInteger) index
{
return [self object:@"Name" forIndex:index];
}
-(void) setProcessType:(NSString *)type forIndex:(NSInteger) index
{
[self setObject:type forKey:@"ProcessType" forIndex:index];
}
-(NSString *) processTypeForIndex:(NSInteger) index
{
return [self object:@"ProcessType" forIndex:index];
}
-(void) setConnectionType:(NSString *)type forIndex:(NSInteger) index
{
[self setObject:type forKey:@"ConnectionType" forIndex:index];
}
-(NSString *) connectionTypeForIndex:(NSInteger) index
{
return [self object:@"ConnectionType" forIndex:index];
}
-(void) setHost:(NSString *)host forIndex:(NSInteger) index
{
[self setObject:host forKey:@"Host" forIndex:index];
}
-(NSString *) hostForIndex:(NSInteger) index
{
return [self object:@"Host" forIndex:index];
}
-(void) setPort:(NSInteger)port forIndex:(NSInteger) index
{
[self setObject:[NSNumber numberWithInteger:port] forKey:@"Port" forIndex:index];
}
-(NSInteger) portForIndex:(NSInteger) index
{
return [[self object:@"Port" forIndex:index] intValue];
}
-(void) setLocalDownloadsFolder:(NSString *)folder forIndex:(NSInteger) index
{
[self setObject:folder forKey:@"LocalDownloadsFolder" forIndex:index];
}
-(NSString *) localDownloadsFolderForIndex:(NSInteger) index
{
return [self object:@"LocalDownloadsFolder" forIndex:index];
}
-(void) setSshHost:(NSString *)host forIndex:(NSInteger) index
{
[self setObject:host forKey:@"SSHHost" forIndex:index];
}
-(NSString *) sshHostForIndex:(NSInteger) index
{
return [self object:@"SSHHost" forIndex:index];
}
-(void) setSshPort:(NSInteger)port forIndex:(NSInteger) index
{
[self setObject:[NSNumber numberWithInteger:port] forKey:@"SSHPort" forIndex:index];
}
-(NSInteger) sshPortForIndex:(NSInteger) index
{
return [[self object:@"SSHPort" forIndex:index] intValue];
}
-(void) setSshLocalPort:(NSInteger)port forIndex:(NSInteger) index
{
[self setObject:[NSNumber numberWithInteger:port] forKey:@"SSHLocalPort" forIndex:index];
}
-(NSInteger) sshLocalPortForIndex:(NSInteger) index
{
return [[self object:@"SSHLocalPort" forIndex:index] intValue];
}
-(void) setSshUser:(NSString *)user forIndex:(NSInteger) index
{
[self setObject:user forKey:@"SSHUser" forIndex:index];
}
-(NSString *) sshUserForIndex:(NSInteger) index
{
return [self object:@"SSHUser" forIndex:index];
}
-(void) setSshPassword:(NSString *)password forIndex:(NSInteger) index
{
if (password == nil)
{
NSMutableDictionary* dict = [self dictionaryForIndex:index];
[dict removeObjectForKey: @"SSHPassword"];
}
else
[self setObject:password forKey:@"SSHPassword" forIndex:index];
}
-(NSString *) sshPasswordForIndex:(NSInteger) index
{
return [self sshUseKeyLoginForIndex:index]?@"":[self object:@"SSHPassword" forIndex:index];
}
-(void) setMaxReconnects:(NSInteger)maxReconnects forIndex:(NSInteger) index
{
[self setObject:[NSNumber numberWithInteger:maxReconnects] forKey:@"MaxReconnects" forIndex:index];
}
-(NSInteger) maxReconnectsForIndex:(NSInteger) index
{
return [[self object:@"MaxReconnects" forIndex:index] intValue];
}
-(void) setGroupsField:(NSInteger)groupsField forIndex:(NSInteger) index
{
[self setObject:[NSNumber numberWithInteger:groupsField] forKey:@"GroupsField" forIndex:index];
}
-(NSInteger) groupsFieldForIndex:(NSInteger) index
{
return [[self object:@"GroupsField" forIndex:index] intValue];
}
-(void) setSshUseKeyLogin:(BOOL)sshUseKeyLogin forIndex:(NSInteger) index;
{
[self setObject:[NSNumber numberWithBool:sshUseKeyLogin] forKey:@"SSHUseKeyLogin" forIndex:index];
}
-(BOOL) sshUseKeyLoginForIndex:(NSInteger) index
{
return [[self object:@"SSHUseKeyLogin" forIndex:index] boolValue];
}
-(void) setSshUseV2:(BOOL)sshUseV2 forIndex:(NSInteger) index;
{
[self setObject:[NSNumber numberWithBool:sshUseV2] forKey:@"SSHUseV2" forIndex:index];
}
-(BOOL) sshUseV2ForIndex:(NSInteger) index
{
return [[self object:@"SSHUseV2" forIndex:index] boolValue];
}
-(void) setSshCompressionLevel:(NSInteger)sshCompressionLevel forIndex:(NSInteger) index
{
[self setObject:[NSNumber numberWithInteger:sshCompressionLevel] forKey:@"SSHCompressionLevel" forIndex:index];
}
-(NSInteger) sshCompressionLevelForIndex:(NSInteger) index
{
return [[self object:@"SSHCompressionLevel" forIndex:index] intValue];
}
- (NSInteger) addProcess
{
//find the lowest index
NSInteger index;
for (index = 0; index < [_processes count]; index++)
{
BOOL found = NO;
for (NSDictionary * dict in _processes)
if ([[dict objectForKey: @"Index"] integerValue] == index)
{
found = YES;
break;
}
if (!found)
break;
}
[_processes addObject: [NSMutableDictionary dictionaryWithObjectsAndKeys: [NSNumber numberWithInteger: index], @"Index", [NSNumber numberWithInteger: 1], @"GroupsField", nil]];
return index;
}
- (NSInteger) indexForRow: (NSInteger) row
{
return [[[_processes objectAtIndex: row] objectForKey: @"Index"] integerValue];
}
-(void) openProcessForIndex:(NSInteger) index handler:(void (^)(NSString *error)) handler
{
id<TorrentController> process = [self processForIndex:index];
AMSession* proxy = nil;
if ([[self connectionTypeForIndex:index] isEqualToString: @"SSH"])
{
proxy = [[AMSession alloc] init];
proxy.sessionName = [self nameForIndex:index];
proxy.remoteHost = [self hostForIndex:index];
proxy.remotePort = [self portForIndex:index];
proxy.localPort = [self sshLocalPortForIndex:index];
AMServer *server = [[AMServer alloc] init];
server.host = [self sshHostForIndex:index];
server.username = [self sshUserForIndex:index];
server.password = [self sshPasswordForIndex:index];
server.port = [self sshPortForIndex:index];
server.useSSHV2 = [self sshUseV2ForIndex:index];
server.useSSHKeyLogin = [self sshUseKeyLoginForIndex:index];
server.compressionLevel = [self sshCompressionLevelForIndex:index];
proxy.currentServer = server;
proxy.maxAutoReconnectRetries = [self maxReconnectsForIndex:index];
proxy.autoReconnect = YES;
[server release];
}
RTConnection* connection = [[RTConnection alloc] initWithHostPort:[self hostForIndex:index] port:[self portForIndex:index] proxy:proxy];
[(RTorrentController*)process setConnection:connection];
[connection release];
[proxy release];
[(RTorrentController *)process setGroupField: [self groupsFieldForIndex:index]];
[process openConnection: handler];
}
-(void) closeProcessForIndex:(NSInteger) index
{
[[self object:@"ProcessObject" forIndex:index] closeConnection];
}
-(id<TorrentController>) processForIndex:(NSInteger) index
{
id<TorrentController> process = [self object:@"ProcessObject" forIndex:index];
if (process == nil)
{
process = [[RTorrentController alloc] init];
[self setObject:process forKey:@"ProcessObject" forIndex:index];
[process release];
}
return process;
}
@end
@implementation ProcessesController(Private)
-(NSMutableDictionary *) dictionaryForIndex:(NSInteger) index
{
if (index != -1)
{
for (NSInteger i = 0; i < [_processes count]; i++)
{
NSMutableDictionary* dict = [_processes objectAtIndex: i];
if (index == [[dict objectForKey: @"Index"] integerValue])
return dict;
}
}
return nil;
}
-(void) setObject:(id) object forKey:(NSString *) key forIndex:(NSInteger) index
{
NSMutableDictionary* dict = [self dictionaryForIndex:index];
if (object == nil)
[dict removeObjectForKey:key];
else
[dict setObject:object forKey: key];
}
-(id) object:key forIndex:(NSInteger) index
{
NSMutableDictionary* dict = [self dictionaryForIndex:index];
return [dict objectForKey: key] ;
}
@end