-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalfred.py
70 lines (50 loc) · 1.79 KB
/
alfred.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
# -*- coding: utf-8 -*-
import os
import sys
from itertools import islice
from xml.etree.ElementTree import Element, SubElement, tostring
_MAX_RESULTS_DEFAULT = 9
UNESCAPE_CHARACTERS = u"""\\ ()[]{};`'"$"""
class Item(object):
def __init__(self, attributes, title, subtitle, icon=None):
self.attributes = attributes
self.title = title
self.subtitle = subtitle
self.icon = icon
def __str__(self):
return tostring(self.xml(), encoding='unicode')
def xml(self):
item = Element(u'item', self.attributes)
for attribute in (u'title', u'subtitle', u'icon'):
value = getattr(self, attribute)
if value is None:
continue
SubElement(item, attribute, {}).text = value
return item
def args(characters=None):
return tuple(unescape(arg, characters) for arg in sys.argv[1:])
def config():
return _create('config')
def unescape(query, characters=None):
for character in (UNESCAPE_CHARACTERS if (characters is None) else characters):
query = query.replace('\\%s' % character, character)
return query
def work(volatile):
path = {
True: os.getenv('alfred_workflow_cache', os.getenv('TMPDIR', '/tmp')),
False: os.getenv('alfred_workflow_data', os.getenv('HOME', '/tmp'))
}[bool(volatile)]
return _create(os.path.expanduser(path))
def write(text):
sys.stdout.write(text)
def xml(items, maxresults=_MAX_RESULTS_DEFAULT):
root = Element('items')
for item in islice(items, maxresults):
root.append(item.xml())
return tostring(root, encoding='unicode')
def _create(path):
if not os.path.isdir(path):
os.mkdir(path)
if not os.access(path, os.W_OK):
raise IOError('No write access: %s' % path)
return path