-
Notifications
You must be signed in to change notification settings - Fork 17
/
alfred.rb
266 lines (230 loc) · 4.9 KB
/
alfred.rb
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
#!/usr/bin/env ruby
require "delegate"
class String
def to_argv
argv = []
meta_char_stack = []
arg = nil
idx = 0
while idx < self.size
char = self[idx]
top = meta_char_stack.last
case char
when %{"}
case top
when %{"}
meta_char_stack.pop
arg ||= ""
when %{'}
(arg ||= "") << char
when %{\\}
meta_char_stack.pop
(arg ||= "") << char
else
meta_char_stack << char
end
when %{'}
case top
when %{"}
(arg ||= "") << char
when %{'}
meta_char_stack.pop
arg ||= ""
else
meta_char_stack << char
end
when %{\\}
case top
when %{"}
meta_char_stack << char
when %{'}
(arg ||= "") << char
when %{\\}
meta_char_stack.pop
(arg ||= "") << char
else
meta_char_stack << char
end
when %{ }
case top
when %{"}
(arg ||= "") << char
when %{'}
(arg ||= "") << char
when %{\\}
meta_char_stack.pop
(arg ||= "") << char
else
argv << arg if arg
arg = nil
end
else
if top == %{\\}
meta_char_stack.pop
end
(arg ||= "") << char
end
idx += 1
end
argv << arg if arg
argv
end
end
class MDLS
module ContentType
Mail = "com.apple.mail.emlx"
WebHistory = "com.apple.safari.history"
end
def initialize(filename)
@filename = filename
@metadata = `mdls '#{filename}'`
end
def [](key)
m = @metadata.scan(/^#{key}\s*=\s\(\n([^\)]*)\)\n/m)
if not m.empty?
multi_values = m.first.first
return multi_values.lines.map do |line|
line[/"([^"]*)"/, 1]
end
else
return @metadata[/^#{key}\s*=\s"([^"]*)"/, 1]
end
end
def content_type
@content_type ||= self['kMDItemContentType']
end
def web_history?
content_type == ContentType::WebHistory
end
def web_title
@web_title ||= self['kMDItemDisplayName']
end
def web_url
@web_url ||= self['kMDItemURL']
end
def mail?
content_type == ContentType::Mail
end
def mail_title
@mail_title ||= self['kMDItemSubject']
end
def mail_authors
@mail_authors ||= self['kMDItemAuthorEmailAddresses']
end
def mail_recipients
@mail_recipients ||= self['kMDItemRecipientEmailAddresses']
end
end
class Item
attr_accessor :attributes, :title, :subtitle, :icon
def initialize
@attributes = {}
@title = ""
@subtitle = ""
@icon = {}
end
def to_xml
xml = "<item"
attributes.each do |name, value|
xml << " #{name.to_s}=\"#{value}\""
end
xml << ">"
xml << "<title>"
xml << title
xml << "</title>"
xml << "<subtitle>"
xml << subtitle
xml << "</subtitle>"
if icon and not icon.empty?
xml << "<icon"
xml << " type=\"#{icon[:type]}\"" if icon[:type]
xml << ">"
xml << icon[:text]
xml << "</icon>"
end
xml << "</item>"
end
end
class FileItem < Item
class << self
def create(path)
case path
when /\.emlx/
MailFileItem.new path
when /\.webhistory/
WebHistoryFileItem.new path
else
new path
end
end
end
def initialize(path)
super()
path.chomp!
basename = File.basename path
@attributes[:uid] = path
@attributes[:arg] = path
@attributes[:valid] = "yes"
@attributes[:autocomplete] = basename
@attributes[:type] = "file"
@title = basename
@subtitle = path
@icon[:type] = "fileicon"
@icon[:text] = path
end
end
class MailFileItem < FileItem
def initialize(path)
super
path.chomp!
mdls = MDLS.new path
return unless mdls.mail?
@title = mdls.mail_title
@subtitle = "Author: %s, Recipient: %s" % [mdls.mail_authors.first,
mdls.mail_recipients && mdls.mail_recipients.first]
end
end
class WebHistoryFileItem < FileItem
def initialize(path)
super
path.chomp!
mdls = MDLS.new path
return unless mdls.web_history?
@title = mdls.web_title
@subject = mdls.web_url
end
end
class ItemList < DelegateClass(Array)
def initialize(items=[])
@items = items
super items
end
def to_xml
xml = <<-EOF
<?xml version="1.0"?>
<items>
#{@items.map { |item| " " + item.to_xml }.join("\n") rescue ''}
</items>
EOF
end
def add_file_item(path)
@items << FileItem.create(path)
self
end
def add_file_list(paths)
@items.concat(paths.map { |p| FileItem.create(p) })
self
end
def add_items(lines)
lines.each do |line|
if test ?e, line.chomp
@items << FileItem.create(line)
else
item = Item.new
item.title = line
@items << item
end
end
self
end
end