Module: Termtter::Client

Defined in:
lib/plugins/l2.rb,
lib/plugins/me.rb,
lib/plugins/sl.rb,
lib/plugins/fib.rb,
lib/plugins/log.rb,
lib/plugins/say.rb,
lib/plugins/bomb.rb,
lib/plugins/cool.rb,
lib/plugins/clear.rb,
lib/plugins/devel.rb,
lib/plugins/grass.rb,
lib/plugins/group.rb,
lib/plugins/shell.rb,
lib/plugins/timer.rb,
lib/plugins/yhara.rb,
lib/plugins/yonda.rb,
lib/plugins/filter.rb,
lib/plugins/hatebu.rb,
lib/plugins/ignore.rb,
lib/plugins/otsune.rb,
lib/plugins/otsune.rb,
lib/plugins/primes.rb,
lib/plugins/random.rb,
lib/plugins/reblog.rb,
lib/plugins/scrape.rb,
lib/plugins/history.rb,
lib/plugins/outputz.rb,
lib/plugins/retweet.rb,
lib/plugins/reverse.rb,
lib/plugins/storage.rb,
lib/termtter/client.rb,
lib/plugins/addspace.rb,
lib/plugins/countter.rb,
lib/plugins/open_url.rb,
lib/plugins/uri-open.rb,
lib/plugins/quicklook.rb,
lib/plugins/fib_filter.rb,
lib/plugins/typable_id.rb,
lib/plugins/multi_reply.rb,
lib/plugins/switch_user.rb,
lib/plugins/command_plus.rb,
lib/plugins/command_plus.rb,
lib/plugins/screen-notify.rb,
lib/plugins/system_status.rb,
lib/plugins/update_editor.rb,
lib/plugins/update_filter.rb,
lib/plugins/expand-tinyurl.rb,
lib/plugins/direct_messages.rb,
lib/plugins/standard_plugins.rb,
lib/plugins/shorturl_on_update.rb

Class Method Summary collapse

Class Method Details

.add_filter(&b) ⇒ Object



33
34
35
# File 'lib/termtter/client.rb', line 33

def add_filter(&b)
  @filters << b
end

.add_task(*arg, &block) ⇒ Object



174
175
176
# File 'lib/termtter/client.rb', line 174

def add_task(*arg, &block)
  @task_manager.add_task(*arg, &block)
end

.add_update_filter(&b) ⇒ Object



15
16
17
18
# File 'lib/plugins/update_filter.rb', line 15

def add_update_filter(&b)
  @update_filters ||= []
  @update_filters << b
end

.alias_command(arg) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/plugins/command_plus.rb', line 12

def alias_command(arg)
  original, new = arg.split(/\s+/)
  if @commands[original.to_sym]
    @commands[new.to_sym] = @commands[original.to_sym].clone
    @commands[new.to_sym].name    = new.to_sym
    @commands[new.to_sym].aliases = []
    @commands[new.to_sym].help    = ''
    puts "alias '#{original}' to '#{new}'."
  else
    raise "#{original} command is not found."
  end
end

.apply_filters(statuses, event) ⇒ Object



112
113
114
115
116
117
118
# File 'lib/termtter/client.rb', line 112

def apply_filters(statuses, event)
    filtered = statuses.map(&:dup)
    @filters.each do |f|
      filtered = f.call(filtered, event)
    end
    filtered
end

.apply_filters_for_hook(statuses, hook_name) ⇒ Object



120
121
122
123
124
# File 'lib/termtter/client.rb', line 120

def apply_filters_for_hook(statuses, hook_name)
  # TODO
  filtered = statuses.map(&:dup)
  filtered
end

.apply_update_filters(status) ⇒ Object



20
21
22
23
24
25
26
27
28
# File 'lib/plugins/update_filter.rb', line 20

def apply_update_filters(status)
  filtered = status.dup
  if defined? @update_filters
    @update_filters.each do |f|
      filtered = f.call(filtered)
    end
  end
  filtered
end

.call_commands(text, tw = nil) ⇒ Object

Raises:



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
# File 'lib/termtter/client.rb', line 136

def call_commands(text, tw = nil)
  return if text.empty?

  command_found = false
  @commands.each do |key, command|
    next unless command.match?(text)
    command_found = true
    command_str, command_arg = Command.split_command_line(text)

    modified_arg = call_hooks(
                      "modify_arg_for_#{command.name.to_s}",
                      command_str,
                      command_arg) || command_arg || ''

    @task_manager.invoke_and_wait do
      begin
        call_hooks("pre_exec_#{command.name.to_s}", command_str, modified_arg)
        # exec command
        result = command.call(command_str, modified_arg, text)
        if result
          call_hooks("post_exec_#{command.name.to_s}", command_str, modified_arg, result)
        end
      rescue CommandCanceled
      end
    end
  end

  raise CommandNotFound, text unless command_found
end

.call_hooks(point, *args) ⇒ Object

return last hook return value



127
128
129
130
131
132
133
134
# File 'lib/termtter/client.rb', line 127

def call_hooks(point, *args)
  result = nil
  get_hooks(point).each {|hook|
    break if result == false # interrupt if hook return false
    result = hook.call(*args)
  }
  result
end

.clear_filterObject



37
38
39
# File 'lib/termtter/client.rb', line 37

def clear_filter
  @filters.clear
end

.default_loggerObject



316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'lib/termtter/client.rb', line 316

def default_logger
  logger = Logger.new(STDOUT)
  logger.formatter = lambda { |severity, time, progname, message|
    color =
      case severity
      when /^DEBUG/
        'blue'
      when /^INFO/
        'cyan'
      when /^WARN/
        'magenta'
      when /^ERROR/
        'red'
      when /^FATAL/
        'on_red'
      else
        'white'
      end
    TermColor.parse("<#{color}>" + TermColor.escape("[#{severity}] #{message}\n") + "</#{color}>")
  }
  logger
end

.delete_command(arg) ⇒ Object



4
5
6
7
8
9
10
# File 'lib/plugins/command_plus.rb', line 4

def delete_command(arg)
  if @commands.delete(arg.to_sym)
    puts "#{arg} command is deleted."
  else
    raise "#{arg} command is not found."
  end
end

.exitObject



178
179
180
181
182
183
184
# File 'lib/termtter/client.rb', line 178

def exit
  puts 'finalizing...'

  call_hooks(:exit)
  @task_manager.kill
  @input_thread.kill if @input_thread
end

.find_filter_candidates(a, b, filters) ⇒ Object



49
50
51
52
53
54
55
56
# File 'lib/plugins/filter.rb', line 49

def self.find_filter_candidates(a, b, filters)
  if a.empty?
    filters.to_a
  else
    filters.grep(/^#{Regexp.quote a}/i)
  end.
  map {|u| b % u }
end

.find_group_candidates(a, b) ⇒ Object



19
20
21
22
23
# File 'lib/plugins/group.rb', line 19

def self.find_group_candidates(a, b)
  config.plugins.group.groups.keys.map {|k| k.to_s}.
    grep(/^#{Regexp.quote a}/).
    map {|u| b % u }
end

.find_plugin_candidates(a, b) ⇒ Object

Termtter reply command

== Usage
=== list
* ステータスリストを連番と一緒に出す。
> reply [list|ls]
0: foo: foo's message
1: bar: bar's message
..

* ユーザ指定してリスト作成。
> reply [list|ls] foo
0: foo: foo's message0
1: foo: foo's message1

=== reply
メッセージ送信の際、@usernameが自動的に付与される。

* status_idを自分で入力してreply送信
> reply 1234567890 message to status_id
=> @foo message to status_id (repl. to 1234567890)

* reply listコマンドで出したステータス番号に対してreply送信
> reply up 0 message to status no
=> @foo message to status_no

* 対象ユーザの最後の発言に対してreply
> reply @foo message to foo
=> @foo message to foo

== Todo
* 英語で説明 => ヘルプを設定する
* リファクタ
* 補完
* 確認画面を出したい


496
497
498
499
500
# File 'lib/plugins/standard_plugins.rb', line 496

def self.find_plugin_candidates(a, b)
  public_storage[:plugins].
    grep(/^#{Regexp.quote a}/i).
    map {|u| b % u }
end

.find_status_ids(text) ⇒ Object



502
503
504
# File 'lib/plugins/standard_plugins.rb', line 502

def self.find_status_ids(text)
  public_storage[:status_ids].select {|id| /#{Regexp.quote(text)}/ =~ id.to_s}
end

.find_user_candidates(a, b) ⇒ Object



510
511
512
513
514
515
516
517
518
# File 'lib/plugins/standard_plugins.rb', line 510

def self.find_user_candidates(a, b)
  users = 
    if a.nil? || a.empty?
      public_storage[:users].to_a
    else
      public_storage[:users].grep(/^#{Regexp.quote a}/i)
    end
  users.map {|u| b % u }
end

.find_users(text) ⇒ Object



506
507
508
# File 'lib/plugins/standard_plugins.rb', line 506

def self.find_users(text)
  public_storage[:users].select {|user| /^#{Regexp.quote(text)}/ =~ user}
end

.formatted_help(helps) ⇒ Object



324
325
326
327
328
329
330
331
# File 'lib/plugins/standard_plugins.rb', line 324

def self.formatted_help(helps)
  helps = helps.sort_by {|help| help[0] }
  width = helps.map {|n, _| n.size }.max
  space = 3
  helps.map {|name, desc|
    name.to_s.ljust(width + space) + desc.to_s
  }.join("\n")
end

.get_command(name) ⇒ Object



75
76
77
# File 'lib/termtter/client.rb', line 75

def get_command(name)
  @commands[name]
end

.get_group_of(screen_name) ⇒ Object



25
26
27
# File 'lib/plugins/group.rb', line 25

def self.get_group_of(screen_name)
  config.plugins.group.groups.select{ |k, v| v.include? screen_name}.map{|a| a.first}
end

.get_hook(name) ⇒ Object



53
54
55
# File 'lib/termtter/client.rb', line 53

def get_hook(name)
  @hooks[name]
end

.get_hooks(point) ⇒ Object



57
58
59
60
61
# File 'lib/termtter/client.rb', line 57

def get_hooks(point)
  @hooks.values.select do |hook|
    hook.match?(point)
  end
end

.handle_error(e) ⇒ Object



354
355
356
357
358
359
360
361
362
363
364
365
# File 'lib/termtter/client.rb', line 354

def handle_error(e)
  if logger
    logger.error("#{e.class.to_s}: #{e.message}")
    logger.error(e.backtrace.join("\n")) if config.devel
  else
    raise e
  end
  get_hooks(:on_error).each {|hook| hook.call(e) }
rescue Exception => e
  puts "Error: #{e}"
  puts e.backtrace.join("\n")
end

.initObject



15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/termtter/client.rb', line 15

def init
  @hooks = {}
  @commands = {}
  @filters = []
  @since_id = nil
  @input_thread = nil
  @task_manager = Termtter::TaskManager.new
  config.set_default(:logger, nil)
  config.set_default(:update_interval, 300)
  config.set_default(:prompt, '> ')
  config.set_default(:devel, false)
  Thread.abort_on_exception = true
end

.input_editorObject



14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/plugins/update_editor.rb', line 14

def self.input_editor
  file = Tempfile.new('termtter')
  editor = config.plugins.update_editor.editor
  if config.plugins.update_editor.add_completion
    file.puts "\n"*100 + "__END__\n" + public_storage[:users].to_a.join(' ')
  end
  file.close
  system("#{editor} #{file.path}")
  result = file.open.read
  file.close(false)
  result
end

.legacy_config_supportObject



200
201
202
203
204
205
206
207
# File 'lib/termtter/client.rb', line 200

def legacy_config_support
  case File.ftype(File.expand_path('~/.termtter'))
  when 'directory'
    # nop
  when 'file'
    move_legacy_config_file
  end
end

.load_configObject



191
192
193
194
195
196
197
198
# File 'lib/termtter/client.rb', line 191

def load_config
  legacy_config_support() if File.exist? Termtter::CONF_DIR
  unless File.exist?(Termtter::CONF_FILE)
    require 'termtter/config_setup'
    ConfigSetup.run
  end
  load Termtter::CONF_FILE
end

.load_default_pluginsObject



186
187
188
189
# File 'lib/termtter/client.rb', line 186

def load_default_plugins
  plugin 'standard_plugins'
  plugin 'stdout'
end

.load_historyObject



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/plugins/history.rb', line 17

def self.load_history
  filename = File.expand_path(config.plugins.history.filename)
  keys = config.plugins.history.keys

  if File.exist?(filename)
    begin
      history = Marshal.load Zlib::Inflate.inflate(File.read(filename))
    end
    if history
      keys.each do |key|
        public_storage[key] = history[key] if history[key]
      end
      Readline::HISTORY.push *history[:history] if history[:history]
      puts "history loaded(#{File.size(filename)/1000}kb)"
    end
  end
end

.loggerObject



308
309
310
# File 'lib/termtter/client.rb', line 308

def logger
  @logger
end

.move_legacy_config_fileObject



209
210
211
212
213
214
215
216
217
# File 'lib/termtter/client.rb', line 209

def move_legacy_config_file
  FileUtils.mv(
    Termtter::CONF_DIR,
    File.expand_path('~/.termtter___'))
  Dir.mkdir(Termtter::CONF_DIR)
  FileUtils.mv(
    File.expand_path('~/.termtter___'),
    Termtter::CONF_FILE)
end

.open_uri(uri) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/plugins/open_url.rb', line 6

def self.open_uri(uri)
  unless config.plugins.open_url.browser.empty?
    system config.plugins.open_url.browser, uri
  else
    case RUBY_PLATFORM
    when /linux/
      system 'firefox', uri
    when /mswin(?!ce)|mingw|bccwin/
      system 'explorer', uri
    else
      system 'open', uri
    end
  end
end

.output(statuses, event) ⇒ Object

statuses => [status, status, …] status => {

  :id => status id,
  :created_at => created time,
  :user_id => user id,
  :name => user name,
  :screen_name => user screen_name,
  :source => source,
  :reply_to => reply_to status id,
  :text => status,
  :original_data => original data,
}


99
100
101
102
103
104
105
106
107
108
109
110
# File 'lib/termtter/client.rb', line 99

def output(statuses, event)
  return if statuses.nil? || statuses.empty?

  statuses = statuses.sort_by{|s|s.id}
  call_hooks(:pre_filter, statuses, event)
  filtered = apply_filters(statuses, event)
  call_hooks(:post_filter, filtered, event)
  get_hooks(:output).each do |hook|
    filtered_for_hook = apply_filters_for_hook(filtered, hook.name)
    hook.call(filtered_for_hook, event)
  end
end

.pauseObject



166
167
168
# File 'lib/termtter/client.rb', line 166

def pause
  @task_manager.pause
end

.post_config_loadObject



219
220
221
222
223
# File 'lib/termtter/client.rb', line 219

def post_config_load()
  if config.devel
    plugin 'devel'
  end
end

.post_retweet(s) ⇒ Object



6
7
8
9
10
# File 'lib/plugins/retweet.rb', line 6

def self.post_retweet(s)
  text = ERB.new(config.plugins.retweet.format).result(binding)
  Termtter::API.twitter.update(text)
  puts "=> #{text}"
end

.public_storageObject



29
30
31
# File 'lib/termtter/client.rb', line 29

def public_storage
  @public_storage ||= {}
end

.register_command(arg) ⇒ Object



63
64
65
66
67
68
69
70
71
72
73
# File 'lib/termtter/client.rb', line 63

def register_command(arg)
  command = case arg
    when Command
      arg
    when Hash
      Command.new(arg)
    else
      raise ArgumentError, 'must be given Termtter::Command or Hash'
    end
  @commands[command.name] = command
end

.register_hook(arg) ⇒ Object



41
42
43
44
45
46
47
48
49
50
51
# File 'lib/termtter/client.rb', line 41

def register_hook(arg)
  hook = case arg
    when Hook
      arg
    when Hash
      Hook.new(arg)
    else
      raise ArgumentError, 'must be given Termtter::Hook or Hash'
    end
  @hooks[hook.name] = hook
end

.register_macro(name, macro, options = {}) ⇒ Object



79
80
81
82
83
84
85
# File 'lib/termtter/client.rb', line 79

def register_macro(name, macro, options = {})
  command = {
    :name => name.to_sym,
    :exec_proc => lambda {|arg| call_commands(macro % arg)}
  }.merge(options)
  register_command(command)
end

.resumeObject



170
171
172
# File 'lib/termtter/client.rb', line 170

def resume
  @task_manager.resume
end

.runObject



339
340
341
342
343
344
345
346
347
348
349
350
351
352
# File 'lib/termtter/client.rb', line 339

def run
  load_default_plugins()
  load_config()
  Termtter::API.setup()
  setup_logger()
  post_config_load()

  call_hooks(:initialize)

  setup_update_timeline_task()

  @task_manager.run()
  start_input_thread()
end

.save_historyObject



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/plugins/history.rb', line 35

def self.save_history
  filename = File.expand_path(config.plugins.history.filename)
  keys = config.plugins.history.keys
  history = { }
  keys.each do |key|
    history[key] = public_storage[key]
  end
  max_of_history = config.plugins.history.max_of_history
  history[:history] = Readline::HISTORY.to_a.reverse.uniq.reverse
  if history[:history].size > max_of_history
    history[:history] = history[:history][-max_of_history..-1]
  end

  File.open(filename, 'w') do |f|
    f.write Zlib::Deflate.deflate(Marshal.dump(history))
  end
  puts "history saved(#{File.size(filename)/1000}kb)"
end

.scrape_group(group) ⇒ Object



14
15
16
17
# File 'lib/plugins/scrape.rb', line 14

def self.scrape_group(group)
  members = config.plugins.group.groups[group] || []
  scrape_members(members)
end

.scrape_members(members) ⇒ Object



5
6
7
8
9
10
11
12
# File 'lib/plugins/scrape.rb', line 5

def self.scrape_members(members)
  statuses = []
  members.each_with_index do |member, index|
    puts "member #{index+1}/#{members.size} #{member}"
    statuses += Termtter::API.twitter.user_timeline(member)
  end
  statuses
end

.setup_loggerObject



312
313
314
# File 'lib/termtter/client.rb', line 312

def setup_logger
  @logger = config.logger || default_logger
end

.setup_readlineObject



225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
# File 'lib/termtter/client.rb', line 225

def setup_readline
  if Readline.respond_to?(:basic_word_break_characters=)
    Readline.basic_word_break_characters= "\t\n\"\\'`><=;|&{("
  end
  Readline.completion_proc = lambda {|input|
    begin
      @commands.map {|name, command| command.complement(input) }.flatten.compact
    rescue => e
      handle_error(e)
    end
  }
  vi_or_emacs = config.editing_mode
  unless vi_or_emacs.empty?
    Readline.__send__("#{vi_or_emacs}_editing_mode")
  end
end

.setup_update_timeline_taskObject

TODO: Make pluggable



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
# File 'lib/termtter/client.rb', line 243

def setup_update_timeline_task()
  register_command(
    :name => :_update_timeline,
    :exec_proc => lambda {|arg|
      begin
        args = @since_id ? [{:since_id => @since_id}] : []
        statuses = Termtter::API.twitter.friends_timeline(*args)
        unless statuses.empty?
          print "\e[1K\e[0G" unless win?
          @since_id = statuses[0].id
          output(statuses, :update_friends_timeline)
          Readline.refresh_line
        end
      rescue OpenURI::HTTPError => e
        if e.message == '401 Unauthorized'
          puts 'Could not login'
          puts 'plese check your account settings'
          exit!
        end
      rescue => e
        handle_error(e)
      end
    }
  )

  add_task(:name => :update_timeline, :interval => config.update_interval, :after => config.update_interval) do
    call_commands('_update_timeline')
  end

  call_commands('_update_timeline')
end

.show_settings(conf, level = 0) ⇒ Object



248
249
250
251
252
253
254
255
256
257
258
# File 'lib/plugins/standard_plugins.rb', line 248

def self.show_settings(conf, level = 0)
  conf.__values__.each do |k, v|
    if v.instance_of? Termtter::Config
      puts "#{k}:"
      show_settings v, level + 1
    else
      print '  ' * level
      puts "#{k} = #{v.nil? ? 'nil' : v.inspect}"
    end
  end
end

.start_input_threadObject



289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
# File 'lib/termtter/client.rb', line 289

def start_input_thread
  setup_readline()
  trap_setting()
  @input_thread = Thread.new do
    while buf = Readline.readline(ERB.new(config.prompt).result(API.twitter.__send__(:binding)), true)
      Readline::HISTORY.pop if buf.empty?
      begin
        call_commands(buf)
      rescue CommandNotFound => e
        warn "Unknown command \"#{e}\""
        warn 'Enter "help" for instructions'
      rescue => e
        handle_error e
      end
    end
  end
  @input_thread.join
end

.trap_settingObject



275
276
277
278
279
280
281
282
283
284
285
286
287
# File 'lib/termtter/client.rb', line 275

def trap_setting()
  begin
    stty_save = `stty -g`.chomp
    trap("INT") do
      begin
        system "stty", stty_save
      ensure
        exit
      end
    end
  rescue Errno::ENOENT
  end
end

.typable_id?(id) ⇒ Boolean

Returns:

  • (Boolean)


58
59
60
61
62
63
64
# File 'lib/plugins/typable_id.rb', line 58

def self.typable_id?(id)
  if public_storage[:typable_id].assoc(id.to_s)
    return true
  else
    return false
  end
end

.typable_id_convert(id) ⇒ Object



39
40
41
42
43
44
45
46
47
# File 'lib/plugins/typable_id.rb', line 39

def self.typable_id_convert(id)
  if current_id = public_storage[:typable_id].assoc(id.to_s)
    return current_id[1]
  elsif current_id = public_storage[:typable_id].rassoc(id.to_s)
    return current_id[0]
  else
    return nil
  end
end

.typable_id_status(id) ⇒ Object



49
50
51
52
53
54
55
56
# File 'lib/plugins/typable_id.rb', line 49

def self.typable_id_status(id)
  if current_id = (public_storage[:typable_id].assoc(id.to_s)||\
                   public_storage[:typable_id].rassoc(id.to_s))
    return current_id[2]
  else
    return nil
  end
end

.update_with_user_and_id(text, username, id) ⇒ Object



452
453
454
455
456
457
# File 'lib/plugins/standard_plugins.rb', line 452

def self.update_with_user_and_id(text, username, id)
  text = ERB.new("@#{username} #{text}").result(binding).gsub(/\n/, ' ')
  result = Termtter::API.twitter.update(text, {'in_reply_to_status_id' => id})
  puts "=> #{text}"
  result
end