Tiny bit of code cleanup (commented code stripping)
[printdrop.git] / Source / AppController.m
1 /*
2 * PrintDrop
3 * Copyright (c) 2008, Blue Static <http://www.bluestatic.org>
4 *
5 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
6 * General Public License as published by the Free Software Foundation; either version 2 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
10 * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along with this program; if not,
14 * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
15 */
16
17 #import "AppController.h"
18 #import <libssh2.h>
19 #import <sys/socket.h>
20 #import <arpa/inet.h>
21 #include <netdb.h>
22
23 @interface AppController (Private)
24
25 - (void)setStatus:(NSString *)msg isError:(BOOL)error;
26
27 - (void)readChannel:(LIBSSH2_CHANNEL *)channel;
28 - (void)uploadAndPrint:(id)sender;
29
30 @end
31
32
33 @implementation AppController
34
35 /**
36 * Set up the printer list
37 */
38 - (id)init
39 {
40 if (self = [super init])
41 {
42 printers = [[NSArray alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Printers" ofType:@"plist"]];
43 [NSThread detachNewThreadSelector:@selector(versionCheck:) toTarget:self withObject:self];
44 }
45 return self;
46 }
47
48 /**
49 * Dealloc
50 */
51 - (void)dealloc
52 {
53 [printers release];
54 [super dealloc];
55 }
56
57 /**
58 * Checks and sees if the current version is the most up-to-date one
59 */
60 - (void)versionCheck:(id)sender
61 {
62 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
63
64 NSMutableString *version = [NSMutableString stringWithString:[[[NSBundle mainBundle] infoDictionary] valueForKey:@"CFBundleShortVersionString"]];
65 [version replaceOccurrencesOfString:@" " withString:@"-" options:NSLiteralSearch range:NSMakeRange(0, [version length])];
66
67 NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http://www.bluestatic.org/versioncheck.php?prod=printdrop&ver=%@", version]];
68 NSURLRequest *request = [NSURLRequest requestWithURL:url cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:10];
69 NSURLResponse *response;
70 NSData *result = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:nil];
71
72 if (result == nil)
73 {
74 goto end;
75 }
76
77 NSXMLDocument *xml = [[NSXMLDocument alloc] initWithData:result options:0 error:nil];
78 NSXMLNode *comp = [[xml rootElement] childAtIndex:0];
79 if ([[comp name] isEqualToString:@"update"])
80 {
81 [updateString setStringValue:[NSString stringWithFormat:[updateString stringValue], [comp stringValue]]];
82 [updateWindow makeKeyAndOrderFront:self];
83 }
84
85 end:
86 [pool release];
87 }
88
89
90 /**
91 * Opens the URL to the download page
92 */
93 - (IBAction)openUpdateInformation:(id)sender
94 {
95 [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://www.bluestatic.org/software/printdrop/"]];
96 }
97
98 /**
99 * Sets the status text
100 */
101 - (void)setStatus:(NSString *)msg isError:(BOOL)error
102 {
103 [status setStringValue:msg];
104 if (error)
105 {
106 [status setTextColor:[NSColor redColor]];
107 [progress stopAnimation:self];
108 }
109 else
110 {
111 [status setTextColor:[NSColor blackColor]];
112 }
113 }
114
115 /**
116 * Reads through a channel (in non-blocking) mode until there is no more left to read
117 * and then it returns. This calls sleep(1) so that the channel can have time to process.
118 * Be sure this is threaded otherwis the interface will stall.
119 */
120 - (void)readChannel:(LIBSSH2_CHANNEL *)channel
121 {
122 libssh2_channel_set_blocking(channel, 0);
123
124 char buf[1024];
125 int numbytes;
126 do
127 {
128 memset(&buf, '\0', sizeof(buf));
129 numbytes = libssh2_channel_read(channel, buf, sizeof(buf));
130 sleep(1);
131 NSLog(@"SSH buffer: %s", buf);
132 } while (libssh2_poll_channel_read(channel, 0));
133 }
134
135 /**
136 * Sends an item to the printer
137 */
138 - (IBAction)print:(id)sender
139 {
140 [NSThread detachNewThreadSelector:@selector(uploadAndPrint:) toTarget:self withObject:sender];
141 }
142
143 /**
144 * Opens an SSH session, creates a SCP channel to upload the file, followed by a shell channel
145 * to queue up LPR
146 */
147 - (void)uploadAndPrint:(id)sender
148 {
149 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
150
151 [progress startAnimation:self];
152 [progress setHidden:NO];
153 [status setHidden:NO];
154
155 FILE *localFile;
156 struct stat fileInfo;
157
158 [self setStatus:@"Connecting to acs.bu.edu" isError:NO];
159 struct sockaddr_in sin;
160 int sock = socket(AF_INET, SOCK_STREAM, 0);
161 sin.sin_port = htons(22);
162 sin.sin_family = AF_INET;
163
164 struct hostent *host = gethostbyname("acs.bu.edu");
165 memcpy(&sin.sin_addr, host->h_addr_list[0], host->h_length);
166
167 if (stat([[dragRegion filePath] UTF8String], &fileInfo))
168 {
169 return [self setStatus:@"Invalid file selected" isError:YES];
170 }
171
172 if (connect(sock, (struct sockaddr *)(&sin), sizeof(struct sockaddr_in)) != 0)
173 {
174 return [self setStatus:@"Could not connect to acs.bu.edu" isError:YES];
175 }
176
177 LIBSSH2_SESSION *ssh = libssh2_session_init();
178 if (ssh == NULL)
179 {
180 return [self setStatus:@"Failed to initialize SSH context" isError:YES];
181 }
182
183 if (libssh2_session_startup(ssh, sock))
184 {
185 return [self setStatus:@"Could not tunnel over SSH" isError:YES];
186 }
187
188 if (libssh2_userauth_password(ssh, [[username stringValue] UTF8String], [[password stringValue] UTF8String]))
189 {
190 [self setStatus:@"Bad username/password" isError:YES];
191 goto shutdown;
192 }
193
194 LIBSSH2_CHANNEL *channel = libssh2_scp_send(ssh, "~/__bu_print_drop__.pdf", 0755, (unsigned long)fileInfo.st_size);
195 if (!channel)
196 {
197 [self setStatus:@"Unable to open upload SCP session" isError:YES];
198 goto shutdown;
199 }
200
201 [self setStatus:@"Uploading file..." isError:NO];
202
203 localFile = fopen([[dragRegion filePath] UTF8String], "r");
204 char buf[1024];
205 char *pbuf;
206 int numread, numwrote;
207 do
208 {
209 numread = fread(buf, 1, sizeof(buf), localFile);
210 if (numread <= 0)
211 {
212 break;
213 }
214
215 pbuf = buf;
216 do
217 {
218 numwrote = libssh2_channel_write(channel, pbuf, numread);
219 pbuf += numwrote;
220 numread -= numread;
221 } while (numwrote > 0);
222
223 } while(1);
224
225 [self setStatus:@"File uploaded!" isError:NO];
226
227 libssh2_channel_send_eof(channel);
228 libssh2_channel_wait_eof(channel);
229 libssh2_channel_wait_closed(channel);
230 libssh2_channel_free(channel);
231 channel = NULL;
232
233 channel = libssh2_channel_open_session(ssh);
234 if (!channel)
235 {
236 [self setStatus:@"Could not open SSH channel for printing" isError:YES];
237 goto shutdown;
238 }
239
240 if (libssh2_channel_request_pty(channel, "vanilla"))
241 {
242 [self setStatus:@"Could not open ANSI TTY" isError:YES];
243 goto shutdown;
244 }
245
246 if (libssh2_channel_shell(channel))
247 {
248 [self setStatus:@"Failed to open remote shell" isError:YES];
249 goto shutdown;
250 }
251
252 [self setStatus:@"Opened remote SSH shell" isError:NO];
253
254 // read the banner
255 [self readChannel:channel];
256
257 // f!cking ACS messages --> skip some more
258 char *delay = "q\r\n\0";
259 libssh2_channel_write(channel, delay, sizeof(char) * strlen(delay));
260 [self readChannel:channel];
261
262 // send the job to lpr
263 char *cmd;
264 #ifndef BLU_DEBUG
265 NSString *printer = [[printersController selection] valueForKey:@"unixName"];
266 cmd = (char *)[[NSString stringWithFormat:@"lpr -m -P%@ __bu_print_drop__.pdf\r\n\0", printer] UTF8String];
267 #else
268 cmd = "touch abc.def\r\n\0";
269 #endif
270 libssh2_channel_write(channel, cmd, sizeof(char) * strlen(cmd));
271 [self readChannel:channel];
272
273 // remove our temp file
274 cmd = "rm -f __bu_print_drop__.pdf\r\n\0";
275 libssh2_channel_write(channel, cmd, sizeof(char) * strlen(cmd));
276 [self readChannel:channel];
277
278 [self setStatus:@"Printed!" isError:NO];
279
280 libssh2_channel_send_eof(channel);
281 libssh2_channel_eof(channel);
282 libssh2_channel_close(channel);
283
284 shutdown:
285 if (channel)
286 {
287 //libssh2_channel_free(channel);
288 channel = NULL;
289 }
290 libssh2_session_disconnect(ssh, "Normal disconnect.");
291 libssh2_session_free(ssh);
292
293 close(sock);
294
295 [progress stopAnimation:self];
296
297 [pool release];
298 }
299
300 @end