forked from TimOliver/TOSMBClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTORootTableViewController.m
175 lines (134 loc) · 6.22 KB
/
TORootTableViewController.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
//
// ViewController.m
// TOSMBClientExample
//
// Created by Tim Oliver on 7/27/15.
// Copyright (c) 2015 TimOliver. All rights reserved.
//
#include <arpa/inet.h>
#import "TORootTableViewController.h"
#import "TOFilesTableViewController.h"
#import "TOSMBClient.h"
@interface TORootTableViewController () <NSNetServiceBrowserDelegate, NSNetServiceDelegate>
@property (nonatomic, strong) NSNetServiceBrowser *serviceBrowser;
@property (nonatomic, strong) NSMutableArray *nameServiceEntries;
@property (nonatomic, strong) TONetBIOSNameService *netbiosService;
- (void)beginServiceBrowser;
@end
@implementation TORootTableViewController
#pragma mark - Object Lifecycle
- (void)dealloc
{
if (self.netbiosService)
[self.netbiosService stopDiscovery];
}
#pragma mark - Properties
- (TOSMBSession *)session {
if (!_session) {
_session = [[TOSMBSession alloc] init];
self.rootController.session = _session;
}
return _session;
}
#pragma mark - View Lifecycle
- (void)viewDidLoad {
[super viewDidLoad];
self.title = @"SMB Devices";
if (self.nameServiceEntries == nil) {
self.nameServiceEntries = [NSMutableArray array];
}
[self beginServiceBrowser];
if (self.session.connected) {
[self pushContentOfRootDirectory];
}
}
#pragma mark - NetBios Service -
- (void)beginServiceBrowser
{
if (self.netbiosService)
return;
self.netbiosService = [[TONetBIOSNameService alloc] init];
[self.netbiosService startDiscoveryWithTimeOut:4.0f added:^(TONetBIOSNameServiceEntry *entry) {
[self.nameServiceEntries addObject:entry];
[self.tableView reloadData];
} removed:^(TONetBIOSNameServiceEntry *entry) {
[self.nameServiceEntries removeObject:entry];
[self.tableView reloadData];
}];
}
#pragma mark - Table View -
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return self.nameServiceEntries.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellName = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellName];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellName];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
cell.textLabel.text = [self.nameServiceEntries[indexPath.row] name];
cell.detailTextLabel.text = nil;
return cell;
}
- (void)tableView:(nonnull UITableView *)tableView didSelectRowAtIndexPath:(nonnull NSIndexPath *)indexPath
{
[self.tableView deselectRowAtIndexPath:indexPath animated:YES];
TONetBIOSNameServiceEntry *entry = self.nameServiceEntries[indexPath.row];
if (self.session.hostName.length && ![self.session.hostName isEqualToString:entry.name]) {
self.session = nil;
}
self.session.hostName = entry.name;
self.session.ipAddress = entry.ipAddressString;
[self pushContentOfRootDirectory];
}
- (void)pushContentOfRootDirectory {
TOFilesTableViewController *controller = [[TOFilesTableViewController alloc] initWithSession:self.session title:@"Shares"];
controller.navigationItem.rightBarButtonItems = @[self.navigationItem.rightBarButtonItem];
controller.rootController = self.rootController;
[self.navigationController pushViewController:controller animated:YES];
__weak typeof(self) weakSelf = self;
[self.session requestContentsOfDirectoryAtFilePath:@"/"
success:^(NSArray *files) { controller.files = files; }
error:^(NSError *error) {
[weakSelf.navigationController popViewControllerAnimated:YES];
if ([error.domain isEqualToString:TOSMBClientErrorDomain] && error.code == TOSMBSessionErrorCodeAuthenticationFailed) {
[weakSelf presentLogin];
} else {
[weakSelf presentError:error];
}
}];
}
#pragma mark - Error Handling
- (void)presentError:(NSError *)error {
UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleCancel handler:nil];
UIAlertController *controller = [UIAlertController alertControllerWithTitle:@"SMB Client Error" message:error.localizedDescription preferredStyle:UIAlertControllerStyleAlert];
[controller addAction:okAction];
[self.navigationController presentViewController:controller animated:YES completion:nil];
}
- (void)presentLogin {
UIAlertController *controller = [UIAlertController alertControllerWithTitle:@"SMB Client Login" message:nil preferredStyle:UIAlertControllerStyleAlert];
[controller addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
textField.placeholder = @"Username";
}];
[controller addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
textField.placeholder = @"Password";
textField.secureTextEntry = YES;
}];
__weak typeof(self) weakSelf = self;
UIAlertAction *loginAction = [UIAlertAction actionWithTitle:@"Login" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
UITextField *usernameTextField = controller.textFields.firstObject;
UITextField *passwordTextField = controller.textFields.lastObject;
[weakSelf.session setLoginCredentialsWithUserName:usernameTextField.text password:passwordTextField.text];
[weakSelf pushContentOfRootDirectory];
}];
[controller addAction:loginAction];
UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
weakSelf.session = nil;
}];
[controller addAction:cancelAction];
[self.navigationController presentViewController:controller animated:YES completion:nil];
}
@end