-
Notifications
You must be signed in to change notification settings - Fork 2
/
print.py
654 lines (539 loc) · 19.2 KB
/
print.py
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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
#!/usr/bin/env python
# Copyright 2014 Jason Michalski <[email protected]>
#
# This file is part of cloudprint.
#
# cloudprint is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# cloudprint is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with cloudprint. If not, see <http://www.gnu.org/licenses/>.
from __future__ import absolute_import
import argparse
import datetime
import hashlib
import io
import json
import logging
import logging.handlers
import os
import re
import requests
import shutil
import stat
import sys
import tempfile
import time
import traceback
import uuid
import smtplib
from email.MIMEMultipart import MIMEMultipart
from email.MIMEBase import MIMEBase
from email.MIMEText import MIMEText
from email.Utils import COMMASPACE, formatdate
from email import Encoders
import os
from cloudprint import xmpp
static_printers = {
"PDF":{
"printer-is-shared":False,
"printer-info":"PDF",
"printer-state-message":"",
"printer-type":10678348,
"printer-make-and-model":"Generic CUPS-PDF Printer",
"printer-state-reasons":[
"none"
],
"printer-uri-supported":"ipp://localhost:631/printers/PDF",
"printer-state":3,
"printer-location":"",
"device-uri":"cups-pdf:/"
}
}
PRINTABLE = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!()+,-.;=[]^_{}~ '
static_description = 'PDF'
static_ppd = open('ppd.txt').read()
def getPrinters():
return static_printers
XMPP_SERVER_HOST = 'talk.google.com'
XMPP_SERVER_PORT = 5223
SOURCE = 'Armooo-PrintProxy-1'
PRINT_CLOUD_SERVICE_ID = 'cloudprint'
CLIENT_LOGIN_URL = '/accounts/ClientLogin'
PRINT_CLOUD_URL = 'https://www.google.com/cloudprint/'
# period in seconds with which we should poll for new jobs via the HTTP api,
# when xmpp is connecting properly.
# 'None' to poll only on startup and when we get XMPP notifications.
# 'Fast Poll' is used as a workaround when notifications are not working.
POLL_PERIOD = 3600.0
FAST_POLL_PERIOD = 30.0
# wait period to retry when xmpp fails
FAIL_RETRY = 60
# how often, in seconds, to send a keepalive character over xmpp
KEEPALIVE = 600.0
# failed job retries
RETRIES = 1
num_retries = 0
MAX_TITLE_LENGTH = 40
LOGGER = logging.getLogger('cloudprint')
LOGGER.setLevel(logging.INFO)
oath = json.loads(open('/etc/cloudprint/oath.json','rb').read())
CLIENT_ID = oath['CLIENT_ID']
CLIENT_KEY = oath['CLIENT_KEY']
def unicode_escape(string):
return string.encode('unicode-escape').decode('ascii')
class CloudPrintAuth(object):
AUTH_POLL_PERIOD = 10.0
def __init__(self, auth_path):
self.auth_path = auth_path
self.guid = None
self.email = None
self.xmpp_jid = None
self.exp_time = None
self.refresh_token = None
self._access_token = None
@property
def session(self):
s = requests.session()
s.headers['X-CloudPrint-Proxy'] = 'ArmoooIsAnOEM'
s.headers['Authorization'] = 'Bearer {0}'.format(self.access_token)
return s
@property
def access_token(self):
if datetime.datetime.now() > self.exp_time:
self.refresh()
return self._access_token
def no_auth(self):
return not os.path.exists(self.auth_path)
def login(self, name, description, ppd):
self.guid = str(uuid.uuid4())
reg_data = requests.post(
PRINT_CLOUD_URL + 'register',
{
'output': 'json',
'printer': name,
'proxy': self.guid,
'capabilities': ppd.encode('utf-8'),
'defaults': ppd.encode('utf-8'),
'status': 'OK',
'description': description,
'capsHash': hashlib.sha1(ppd.encode('utf-8')).hexdigest(),
},
headers={'X-CloudPrint-Proxy': 'ArmoooIsAnOEM'},
).json()
print('Go to {0} to claim this printer'.format(
reg_data['complete_invite_url']
))
end = time.time() + int(reg_data['token_duration'])
while time.time() < end:
time.sleep(self.AUTH_POLL_PERIOD)
print('trying for the win')
poll = requests.get(
reg_data['polling_url'] + CLIENT_ID,
headers={'X-CloudPrint-Proxy': 'ArmoooIsAnOEM'},
).json()
if poll['success']:
break
else:
print('The login request timedout')
self.xmpp_jid = poll['xmpp_jid']
self.email = poll['user_email']
print('Printer claimed by {0}.'.format(self.email))
token = requests.post(
'https://accounts.google.com/o/oauth2/token',
data={
'redirect_uri': 'oob',
'client_id': CLIENT_ID,
'client_secret': CLIENT_KEY,
'grant_type': 'authorization_code',
'code': poll['authorization_code'],
}
).json()
self.refresh_token = token['refresh_token']
self.refresh()
self.save()
def refresh(self):
token = requests.post(
'https://accounts.google.com/o/oauth2/token',
data={
'client_id': CLIENT_ID,
'client_secret': CLIENT_KEY,
'grant_type': 'refresh_token',
'refresh_token': self.refresh_token,
}
)
token = token.json()
self._access_token = token['access_token']
slop_time = datetime.timedelta(minutes=15)
expires_in = datetime.timedelta(seconds=token['expires_in'])
self.exp_time = datetime.datetime.now() + (expires_in - slop_time)
def load(self):
if os.path.exists(self.auth_path):
with open(self.auth_path) as auth_file:
auth_data = json.load(auth_file)
self.guid = auth_data['guid']
self.xmpp_jid = auth_data['xmpp_jid']
self.email = auth_data['email']
self.refresh_token = auth_data['refresh_token']
self.refresh()
def delete(self):
if os.path.exists(self.auth_path):
os.unlink(self.auth_path)
def save(self):
if not os.path.exists(self.auth_path):
with open(self.auth_path, 'w') as auth_file:
os.chmod(self.auth_path, stat.S_IRUSR | stat.S_IWUSR)
with open(self.auth_path, 'w') as auth_file:
json.dump({
'guid': self.guid,
'email': self.email,
'xmpp_jid': self.xmpp_jid,
'refresh_token': self.refresh_token,
},
auth_file
)
class CloudPrintProxy(object):
def __init__(self, auth):
self.auth = auth
self.sleeptime = 0
self.site = ''
self.include = []
self.exclude = []
def get_printers(self):
printers = self.auth.session.post(
PRINT_CLOUD_URL + 'list',
{
'output': 'json',
'proxy': self.auth.guid,
},
).json()
return [
PrinterProxy(
self,
p['id'],
re.sub('^' + self.site + '-', '', p['name'])
)
for p in printers['printers']
]
def delete_printer(self, printer_id):
self.auth.session.post(
PRINT_CLOUD_URL + 'delete',
{
'output': 'json',
'printerid': printer_id,
},
).raise_for_status()
LOGGER.debug('Deleted printer ' + printer_id)
def add_printer(self, name, description, ppd):
if self.site:
name = self.site + '-' + name
self.auth.session.post(
PRINT_CLOUD_URL + 'register',
{
'output': 'json',
'printer': name,
'proxy': self.auth.guid,
'capabilities': ppd.encode('utf-8'),
'defaults': ppd.encode('utf-8'),
'status': 'OK',
'description': description,
'capsHash': hashlib.sha1(ppd.encode('utf-8')).hexdigest(),
},
).raise_for_status()
LOGGER.debug('Added Printer ' + name)
def update_printer(self, printer_id, name, description, ppd):
if self.site:
name = self.site + '-' + name
self.auth.session.post(
PRINT_CLOUD_URL + 'update',
{
'output': 'json',
'printerid': printer_id,
'printer': name,
'proxy': self.auth.guid,
'capabilities': ppd.encode('utf-8'),
'defaults': ppd.encode('utf-8'),
'status': 'OK',
'description': description,
'capsHash': hashlib.sha1(ppd.encode('utf-8')).hexdigest(),
},
).raise_for_status()
LOGGER.debug('Updated Printer ' + name)
def get_jobs(self, printer_id):
docs = self.auth.session.post(
PRINT_CLOUD_URL + 'fetch',
{
'output': 'json',
'printerid': printer_id,
},
).json()
if 'jobs' not in docs:
return []
else:
return docs['jobs']
def finish_job(self, job_id):
self.auth.session.post(
PRINT_CLOUD_URL + 'control',
{
'output': 'json',
'jobid': job_id,
'status': 'DONE',
},
).json()
LOGGER.debug('Finished Job' + job_id)
def fail_job(self, job_id):
self.auth.session.post(
PRINT_CLOUD_URL + 'control',
{
'output': 'json',
'jobid': job_id,
'status': 'ERROR',
},
).json()
LOGGER.debug('Failed Job' + job_id)
class PrinterProxy(object):
def __init__(self, cpp, printer_id, name):
self.cpp = cpp
self.id = printer_id
self.name = name
def get_jobs(self):
LOGGER.info('Polling for jobs on ' + self.name)
return self.cpp.get_jobs(self.id)
def update(self, description, ppd):
return self.cpp.update_printer(self.id, self.name, description, ppd)
def delete(self):
return self.cpp.delete_printer(self.id)
def get_printer_info():
return static_ppd, static_description
def sendMail(to, fro, subject, text, name, fileData=[],server="localhost"):
assert type(to)==list
assert type(fileData)==list
msg = MIMEMultipart()
msg['From'] = fro
msg['To'] = COMMASPACE.join(to)
msg['Date'] = formatdate(localtime=True)
msg['Subject'] = subject
msg.attach( MIMEText(text) )
for file in fileData:
part = MIMEBase('application', "octet-stream")
part.set_payload(file)
Encoders.encode_base64(part)
if not name.endswith('.pdf'):
name = name + '.pdf'
part.add_header('Content-Disposition', 'attachment; filename="%s"' % name)
msg.attach(part)
smtp = smtplib.SMTP(server)
smtp.sendmail(fro, to, msg.as_string() )
smtp.close()
def process_job(cpp, printer, job):
global num_retries
try:
pdf = cpp.auth.session.get(job['fileUrl'], stream=True)
options = cpp.auth.session.get(job['ticketUrl']).json()
if 'request' in options:
del options['request']
options = dict((str(k), str(v)) for k, v in list(options.items()))
rawData = pdf.raw.read()
if len(job['title']) == 0:
job['title'] = 'document'
# Remove all non-whitelisted characters.
job['title'] = filter(lambda x: x in PRINTABLE, job['title'])
# Trim job title down to MAX_TITLE_LENGTH characters
# At NEU, the LCD above the printers will show MAX_TITLE_LENGTH characters, and then show an ellipsis instead of the rest of the job title.
if len(job['title']) > MAX_TITLE_LENGTH:
job['title'] = job['title'][:MAX_TITLE_LENGTH]
print 'Trimmed length of title', job['title']
if len(job['title']) == 0:
job['title'] = 'document'
if not job['ownerId'].endswith('husky.neu.edu'):
print 'Sending invalid username email to ', job['ownerId']
sendMail(['user <' + job['ownerId'] +'>'],'printbot <[email protected]>','Need a husky.neu.edu email to print!','Hey! \n\nI need a @husky.neu.edu email to print to Northeastern\'s printers. Please use your @husky.neu.edu to print!', '')
else:
print job['ownerId'], job['title'],'Size is',len(rawData)
# Trim the pdf extension off before the name is trimmed, it will be added back later.
if job['title'].endswith('.pdf'):
job['title'] = job['title'][:-4]
sendMail(['mobileprinting <[email protected]>'],'hi <' + job['ownerId'] + '>','hi','hi', job['title'], [rawData])
LOGGER.info(unicode_escape('SUCCESS ' + job['title']))
cpp.finish_job(job['id'])
num_retries = 0
except Exception as e:
print e
if num_retries >= RETRIES:
num_retries = 0
cpp.fail_job(job['id'])
print 'ERROR ', job['ownerId'], job['title']
stack = traceback.format_exc()
sendMail(['user <' + job['ownerId'] +'>'],'printbot <[email protected]>','There was an error printing your document!','There was an error printing your document! You can try again if you want or print it some other way. The error was:\n' + stack, '')
sendMail(['user <[email protected]>'],'printbot <[email protected]>','There was an error printing your document!','There was an error printing your document! You can try again if you want or print it some other way. The error was:\n' + stack, '')
raise
else:
num_retries += 1
LOGGER.info(
unicode_escape('Job %s failed - Will retry' % job['title'])
)
def process_jobs(cpp):
xmpp_conn = xmpp.XmppConnection(keepalive_period=KEEPALIVE)
while True:
process_jobs_once(cpp, xmpp_conn)
def process_jobs_once(cpp, xmpp_conn):
printers = cpp.get_printers()
try:
for printer in printers:
for job in printer.get_jobs():
process_job(cpp, printer, job)
if not xmpp_conn.is_connected():
xmpp_conn.connect(XMPP_SERVER_HOST, XMPP_SERVER_PORT, cpp.auth)
xmpp_conn.await_notification(cpp.sleeptime)
except Exception:
LOGGER.exception(
'ERROR: Could not Connect to Cloud Service. '
'Will Try again in %d Seconds' %
FAIL_RETRY
)
time.sleep(FAIL_RETRY)
def parse_args():
parser = argparse.ArgumentParser()
parser.add_argument(
'-d',
dest='daemon',
action='store_true',
help='enable daemon mode (requires the daemon module)',
)
parser.add_argument(
'-l',
dest='logout',
action='store_true',
help='logout of the google account',
)
parser.add_argument(
'-p',
metavar='pid_file',
dest='pidfile',
default='cloudprint.pid',
help='path to write the pid to (default %(default)s)',
)
parser.add_argument(
'-a',
metavar='account_file',
dest='authfile',
default=os.path.expanduser('~/.cloudprintauth.json'),
help='path to google account ident data (default %(default)s)',
)
parser.add_argument(
'-c',
dest='authonly',
action='store_true',
help='establish and store login credentials, then exit',
)
parser.add_argument(
'-f',
dest='fastpoll',
action='store_true',
help='use fast poll if notifications are not working',
)
parser.add_argument(
'-v',
dest='verbose',
action='store_true',
help='verbose logging',
)
parser.add_argument(
'--syslog-address',
help='syslog address to use in daemon mode',
)
parser.add_argument(
'-s',
metavar='sitename',
dest='site',
default='',
help='one-word site-name theat will prefix printers',
)
parser.add_argument(
'--debug',
metavar='debug',
dest='debug',
default=False,
help='Enable debug mode. This will send emails to the email that sent them instead of to [email protected].',
)
return parser.parse_args()
def main():
args = parse_args()
if args.syslog_address and not args.daemon:
print('syslog_address is only valid in daemon mode')
sys.exit(1)
# if daemon, log to syslog, otherwise log to stdout
if args.daemon:
if args.syslog_address:
handler = logging.handlers.SysLogHandler(
address=args.syslog_address
)
else:
handler = logging.handlers.SysLogHandler()
handler.setFormatter(
logging.Formatter(fmt='cloudprint.py: %(message)s')
)
else:
handler = logging.StreamHandler(sys.stdout)
LOGGER.addHandler(handler)
if args.verbose:
LOGGER.info('Setting DEBUG-level logging')
LOGGER.setLevel(logging.DEBUG)
try:
import http.client as httpclient
except ImportError:
import httplib as httpclient
httpclient.HTTPConnection.debuglevel = 1
requests_log = logging.getLogger("requests.packages.urllib3")
requests_log.setLevel(logging.DEBUG)
requests_log.propagate = True
auth = CloudPrintAuth(args.authfile)
if args.logout:
auth.delete()
LOGGER.info('logged out')
return
cpp = CloudPrintProxy(auth)
cpp.sleeptime = POLL_PERIOD
if args.fastpoll:
cpp.sleeptime = FAST_POLL_PERIOD
cpp.site = args.site
printers = list(getPrinters().keys())
if not printers:
LOGGER.error('No printers found')
return
if auth.no_auth():
name = printers[0]
ppd, description = get_printer_info()
auth.login(name, description, ppd)
else:
auth.load()
if args.authonly:
sys.exit(0)
if args.daemon:
try:
import daemon
import daemon.pidfile
except ImportError:
print('daemon module required for -d')
print(
'\tyum install python-daemon, or apt-get install '
'python-daemon, or pip install python-daemon'
)
sys.exit(1)
pidfile = daemon.pidfile.TimeoutPIDLockFile(
path=os.path.abspath(args.pidfile),
timeout=5,
)
with daemon.DaemonContext(pidfile=pidfile):
process_jobs(cpp)
else:
process_jobs(cpp)
if __name__ == '__main__':
main()