Define a BLU_DEBUG so we can NSLog() the buffer in debug mode but not in release
[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 arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Printers" ofType:@"plist"]];
43 }
44 return self;
45 }
46
47 /**
48 * Sets the status text
49 */
50 - (void)setStatus:(NSString *)msg isError:(BOOL)error
51 {
52 [status setStringValue:msg];
53 if (error)
54 {
55 [status setTextColor:[NSColor redColor]];
56 [progress stopAnimation:self];
57 }
58 else
59 {
60 [status setTextColor:[NSColor blackColor]];
61 }
62 }
63
64 /**
65 * Reads through a channel (in non-blocking) mode until there is no more left to read
66 * and then it returns. This calls sleep(1) so that the channel can have time to process.
67 * Be sure this is threaded otherwis the interface will stall.
68 */
69 - (void)readChannel:(LIBSSH2_CHANNEL *)channel
70 {
71 libssh2_channel_set_blocking(channel, 0);
72
73 char buf[1024];
74 int numbytes;
75 do
76 {
77 memset(&buf, '\0', sizeof(buf));
78 sleep(1);
79 numbytes = libssh2_channel_read(channel, buf, sizeof(buf));
80 #ifdef BLU_DEBUG
81 NSLog(@"buf: %s", buf);
82 #endif
83 } while (numbytes > 0);
84 }
85
86 /**
87 * Sends an item to the printer
88 */
89 - (IBAction)print:(id)sender
90 {
91 [NSThread detachNewThreadSelector:@selector(uploadAndPrint:) toTarget:self withObject:sender];
92 }
93
94 /**
95 * Opens an SSH session, creates a SCP channel to upload the file, followed by a shell channel
96 * to queue up LPR
97 */
98 - (void)uploadAndPrint:(id)sender
99 {
100 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
101
102 [progress startAnimation:self];
103 [progress setHidden:NO];
104 [status setHidden:NO];
105
106 NSString *printer = [[printersController selection] valueForKey:@"unixName"];
107 FILE *localFile;
108 struct stat fileInfo;
109
110 [self setStatus:@"Connecting to acs.bu.edu" isError:NO];
111 struct sockaddr_in sin;
112 int sock = socket(AF_INET, SOCK_STREAM, 0);
113 sin.sin_port = htons(22);
114 sin.sin_family = AF_INET;
115
116 struct hostent *host = gethostbyname("acs.bu.edu");
117 memcpy(&sin.sin_addr, host->h_addr_list[0], host->h_length);
118
119 if (stat([[dragRegion filePath] UTF8String], &fileInfo))
120 {
121 return [self setStatus:@"Invalid file selected" isError:YES];
122 }
123
124 if (connect(sock, (struct sockaddr *)(&sin), sizeof(struct sockaddr_in)) != 0)
125 {
126 return [self setStatus:@"Could not connect to acs.bu.edu" isError:YES];
127 }
128
129 LIBSSH2_SESSION *ssh = libssh2_session_init();
130 if (ssh == NULL)
131 {
132 return [self setStatus:@"Failed to initialize SSH context" isError:YES];
133 }
134
135 if (libssh2_session_startup(ssh, sock))
136 {
137 return [self setStatus:@"Could not tunnel over SSH" isError:YES];
138 }
139
140 if (libssh2_userauth_password(ssh, [[username stringValue] UTF8String], [[password stringValue] UTF8String]))
141 {
142 [self setStatus:@"Bad username/password" isError:YES];
143 goto shutdown;
144 }
145
146 LIBSSH2_CHANNEL *channel = libssh2_scp_send(ssh, "~/__bu_print_drop__.pdf", 0755, (unsigned long)fileInfo.st_size);
147 if (!channel)
148 {
149 [self setStatus:@"Unable to open upload SCP session" isError:YES];
150 goto shutdown;
151 }
152
153 [self setStatus:@"Uploading file..." isError:NO];
154
155 localFile = fopen([[dragRegion filePath] UTF8String], "r");
156 char buf[1024];
157 char *pbuf;
158 int numread, numwrote;
159 do
160 {
161 numread = fread(buf, 1, sizeof(buf), localFile);
162 if (numread <= 0)
163 {
164 break;
165 }
166
167 pbuf = buf;
168 do
169 {
170 numwrote = libssh2_channel_write(channel, pbuf, numread);
171 pbuf += numwrote;
172 numread -= numread;
173 } while (numwrote > 0);
174
175 } while(1);
176
177 [self setStatus:@"File uploaded!" isError:NO];
178
179 libssh2_channel_send_eof(channel);
180 libssh2_channel_wait_eof(channel);
181 libssh2_channel_wait_closed(channel);
182 libssh2_channel_free(channel);
183 channel = NULL;
184
185 channel = libssh2_channel_open_session(ssh);
186 if (!channel)
187 {
188 [self setStatus:@"Could not open SSH channel for printing" isError:YES];
189 goto shutdown;
190 }
191
192 if (libssh2_channel_request_pty(channel, "vanilla"))
193 {
194 [self setStatus:@"Could not open ANSI TTY" isError:YES];
195 goto shutdown;
196 }
197
198 if (libssh2_channel_shell(channel))
199 {
200 [self setStatus:@"Failed to open remote shell" isError:YES];
201 goto shutdown;
202 }
203
204 [self setStatus:@"Opened remote SSH shell" isError:NO];
205
206 // read the banner
207 [self readChannel:channel];
208
209 // send the job to lpr
210 char *cmd = (char *)[[NSString stringWithFormat:@"lpr -m -P%@ __bu_print_drop__.pdf\r\n\0", printer] UTF8String];
211 libssh2_channel_write(channel, cmd, sizeof(char) * strlen(cmd));
212 [self readChannel:channel];
213
214 // remove our temp file
215 cmd = "rm -f __bu_print_drop__.pdf\r\n\0";
216 libssh2_channel_write(channel, cmd, sizeof(char) * strlen(cmd));
217 [self readChannel:channel];
218
219 [self setStatus:@"Printed!" isError:NO];
220
221 libssh2_channel_send_eof(channel);
222 libssh2_channel_eof(channel);
223 libssh2_channel_close(channel);
224
225 shutdown:
226 if (channel)
227 {
228 //libssh2_channel_free(channel);
229 channel = NULL;
230 }
231 libssh2_session_disconnect(ssh, "Normal disconnect.");
232 libssh2_session_free(ssh);
233
234 close(sock);
235
236 [progress stopAnimation:self];
237
238 [pool release];
239 }
240
241 @end