-
Notifications
You must be signed in to change notification settings - Fork 5
/
weechat-url-hinter.rb
360 lines (300 loc) · 8.66 KB
/
weechat-url-hinter.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
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
#
# Copyright (c) 2014 Kengo Tateishi <[email protected]>
# https://github.com/tkengo/weechat-url-hinter
#
# This program 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.
#
# ---------------------------------------------------------------------
#
# Url hinter is a plugin that open a url on weehcat buffer without
# touching mouse.
#
# This plugin is available in only Mac OSX.
#
# Usage
# 1. Type '/url_hinter' command on the input buffer of Weechat.
# 2. Then, this plugin searches url strings such as 'http://...' or
# 'https://...'
# 3. If urls are found, they are highlighted and give hint key to
# the url.
# 4. When you type a hint key, open the url related to hint key
# in your default browser.
#
# see also
# https://github.com/tkengo/weechat-url-hinter/blob/master/README.md
#
require 'singleton'
#
# Register url-hinter plugin to weechat and do initialization.
#
def weechat_init
Weechat.register('url_hinter', 'Kengo Tateish', '0.1', 'GPL3', 'Open an url in the weechat buffer to type a hint', '', '')
Weechat.hook_command(
'url_hinter',
'Search url strings, and highlight them, and if you type a hint key, open the url related to hint key.',
'continuous|first',
"continuous | Continue hint mode even if selected url is opend.\n" +
'first | Open a url that appears first on the current buffer.',
'',
'launch_url_hinter',
''
);
Weechat::WEECHAT_RC_OK
end
#
# Callback method that invoked when input text in buffer was changed.
# Search url by the input text from Hint. If a url is found, open it.
#
def open_hint_url(data, signal, buffer_pointer)
buffer = Buffer.new(buffer_pointer)
text = buffer.input_text
if Hint.instance.has_key?(text)
Hint.instance.reserve(text)
buffer.input_text = ''
unless GlobalResource.continuous
Hint.instance.open_all_reserved_url
reset_hint_mode
end
end
Weechat::WEECHAT_RC_OK
end
#
# Callback method that invoked when key was pressed in buffer.
# If enter key is pressed, open all reserved urls.
#
def key_pressed_callback(data, signal, key)
if key == "\x01M" && Hint.instance.any?
Hint.instance.open_all_reserved_url
reset_hint_mode
end
Weechat::WEECHAT_RC_OK
end
#
# Launch url-hinter.
#
# Type '/url_hinter' on the input buffer of Weechat, and then this plugin searches
# strings like 'http://...' or 'https://...' in the current buffer and highlights it.
#
def launch_url_hinter(data, buffer_pointer, argv)
buffer = Buffer.new(buffer_pointer)
reset_hint_mode and return Weechat::WEECHAT_RC_OK if Hint.instance.any?
return Weechat::WEECHAT_RC_OK unless buffer.has_url_in_display?
open_url(buffer.first_url) and return Weechat::WEECHAT_RC_OK if argv == 'first'
Hint.instance.set_target(buffer)
messages = {}
buffer.own_lines.each do |line|
messages[line.data_pointer] = line.message.dup
new_message = line.remove_color_message
line.urls.each do |url|
hint_key = "[#{Hint.instance.add(url, line)}]"
new_message.gsub!(url, Color.yellow + hint_key + Color.red + url[hint_key.length..-1].to_s + Color.blue)
end
line.message = Color.blue + new_message + Color.reset
end
GlobalResource.messages = messages
GlobalResource.continuous = argv == 'continuous'
GlobalResource.hook_pointer1 = Weechat.hook_signal('input_text_changed', 'open_hint_url', '')
GlobalResource.hook_pointer2 = Weechat.hook_signal('key_pressed', 'key_pressed_callback', '')
Weechat::WEECHAT_RC_OK
end
#
# Clear hints and reset hook.
#
def reset_hint_mode
Hint.instance.clear
GlobalResource.messages.each {|pointer, message| Weechat.hdata_update(Weechat.hdata_get('line_data'), pointer, { 'message' => message }) }
Weechat.unhook(GlobalResource.hook_pointer1)
Weechat.unhook(GlobalResource.hook_pointer2)
end
#
# open specified url
#
def open_url(url)
Weechat.hook_process("open #{url}", 10000, '', '')
end
#----------------------------
# Custome classes
#----------------------------
HINT_KEYS = 'jfhkgyuiopqwertnmzxcvblasd'
class Hint
include Singleton
def initialize
clear
end
def set_target(buffer)
@buffer = buffer
@url_count = @buffer.url_count
end
def clear
@urls = {}
@open_target_urls = []
@lines = {}
@hint_key_index = 0
end
def any?
@urls.any?
end
def add(url, line)
hint_key = next_hint_key
@urls[hint_key] = url
@lines[hint_key] = line
hint_key
end
def reserve(key)
line = @lines.delete(key)
line.message = line.message(hdata: true).gsub("[#{key}]", "[#{'*' * key.length}]")
@open_target_urls << @urls.delete(key)
end
def open_all_reserved_url
Weechat.hook_process("open #{@open_target_urls.join(' ')}", 10000, '', '') if @open_target_urls.any?
end
def has_key?(key)
@urls.has_key?(key)
end
private
def next_hint_key
if @url_count > HINT_KEYS.length
key1 = HINT_KEYS[@hint_key_index / HINT_KEYS.length]
key2 = HINT_KEYS[@hint_key_index % HINT_KEYS.length]
hint_key = key1 + key2
else
hint_key = HINT_KEYS[@hint_key_index]
end
@hint_key_index += 1
hint_key
end
end
class GlobalResource
class << self
attr_accessor :hook_pointer1, :hook_pointer2, :messages, :continuous
end
end
#----------------------------
# Wrapper of weechat objects.
#----------------------------
#
# Wrapper of weechat color object.
#
class Color
class << self
def method_missing(method_name)
Weechat.color(method_name.to_s)
end
end
end
#
# Wrapper of weechat hdata window.
#
class Window
class << self
def current
Window.new(Weechat.current_window)
end
end
def initialize(pointer)
@pointer = pointer
end
def chat_height
Weechat.hdata_integer(Weechat.hdata_get('window'), @pointer, 'win_chat_height')
end
end
#
# Wrapper of weechat hdata buffer.
#
class Buffer
def initialize(pointer)
@pointer = pointer
end
def own_lines
own_lines_pointer = Weechat.hdata_pointer(Weechat.hdata_get('buffer'), @pointer, 'own_lines')
@own_lines ||= Lines.new(own_lines_pointer)
end
def input_text
Weechat.buffer_get_string(@pointer, 'input')
end
def input_text=(text)
Weechat.buffer_set(@pointer, 'input', text)
end
def url_count
own_lines.inject(0){|result, line| result + line.urls.count }
end
def has_url_in_display?
!own_lines.find(&:has_url?).nil?
end
def first_url
own_lines.find(&:has_url?).urls.last
end
end
#
# Wrapper of weechat hdata lines.
#
class Lines
include Enumerable
def initialize(pointer)
@pointer = pointer
end
def first_line
first_line_pointer = Weechat.hdata_pointer(Weechat.hdata_get('lines'), @pointer, 'first_line')
Line.new(first_line_pointer)
end
def last_line
last_line_pointer = Weechat.hdata_pointer(Weechat.hdata_get('lines'), @pointer, 'last_line')
Line.new(last_line_pointer)
end
def count
Weechat.hdata_integer(Weechat.hdata_get('lines'), @pointer, 'lines_count')
end
def each
window_height = Window.current.chat_height
line = last_line
index = 0
while true
yield(line)
index += 1 if line.displayed?
break if !(line = line.prev) || index >= window_height
end
end
end
#
# Wrapper of weechat hdata line and line_data.
#
class Line
attr_reader :data_pointer
def initialize(pointer)
@pointer = pointer
@data_pointer = Weechat.hdata_pointer(Weechat.hdata_get('line'), @pointer, 'data')
end
def message(options = {})
if options[:hdata]
@message = Weechat.hdata_string(Weechat.hdata_get('line_data'), @data_pointer, 'message').to_s
else
@message ||= Weechat.hdata_string(Weechat.hdata_get('line_data'), @data_pointer, 'message').to_s
end
end
def message=(new_message)
Weechat.hdata_update(Weechat.hdata_get('line_data'), @data_pointer, { 'message' => new_message })
end
def remove_color_message
Weechat.string_remove_color(message.dup, '')
end
def next
next_line_pointer = Weechat.hdata_pointer(Weechat.hdata_get('line'), @pointer, 'next_line')
Line.new(next_line_pointer) unless next_line_pointer.to_s.empty?
end
def prev
prev_line_pointer = Weechat.hdata_pointer(Weechat.hdata_get('line'), @pointer, 'prev_line')
Line.new(prev_line_pointer) unless prev_line_pointer.to_s.empty?
end
def displayed?
Weechat.hdata_char(Weechat.hdata_get('line_data'), @data_pointer, 'displayed').to_s == '1'
end
def has_url?
!/https?:\/\/[^ \(\)\r\n]*/.match(remove_color_message).nil?
end
def urls
remove_color_message.scan(/https?:\/\/[^ \(\)\r\n]*/).uniq
end
end