Archived
1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lita-tox/lib/lita/adapters/tox.rb

74 lines
1.6 KiB
Ruby
Raw Normal View History

2015-09-13 15:40:46 -04:00
require 'tox'
2015-07-25 04:32:00 -04:00
##
# Lita module.
#
module Lita
2015-07-25 04:32:00 -04:00
##
# Lita adapters module.
#
module Adapters
2015-07-25 04:32:00 -04:00
##
# Tox adapter for the Lita chat bot.
#
class Tox < Adapter
2015-09-13 19:21:16 -04:00
config :savedata_filename, type: String
2015-09-15 16:08:48 -04:00
config :status, type: String
2015-09-13 19:21:16 -04:00
2015-09-13 15:40:46 -04:00
def initialize(robot)
super
2015-09-13 19:21:16 -04:00
options = ::Tox::Options.new
if config.savedata_filename && File.exist?(config.savedata_filename)
savedata_file = open(config.savedata_filename)
options.data = savedata_file.read
savedata_file.close
end
@tox = ::Tox.new(options)
2015-09-13 15:40:46 -04:00
log.info("ID: #{@tox.id}")
2015-09-15 16:08:48 -04:00
@tox.name = robot.name if robot.name
@tox.status_message = config.status if config.status
2015-09-13 15:40:46 -04:00
@tox.on_friend_request do |key|
@tox.friend_add_norequest(key)
end
@tox.on_friend_message do |friend_number, text|
user = User.new(friend_number)
source = Source.new(user: user)
message = Message.new(robot, text, source)
message.command!
robot.receive(message)
end
end
def run
@tox.loop
end
2015-09-13 19:21:16 -04:00
def shut_down
if config.savedata_filename
savedata_file = open(config.savedata_filename, 'w')
savedata_file.write(@tox.savedata)
savedata_file.close
end
@tox.kill
end
2015-09-13 15:40:46 -04:00
def send_messages(target, messages)
messages.reject(&:empty?).each do |message|
2017-07-20 14:54:19 -04:00
@tox.friend_send_message(target.user.id.to_i, message)
2015-09-13 15:40:46 -04:00
end
end
end
Lita.register_adapter(:tox, Tox)
end
end