Module: Hector::Commands::Whois
- Included in:
- Session
- Defined in:
- lib/hector/commands/whois.rb
Instance Method Summary collapse
Instance Method Details
#on_whois ⇒ Object
4 5 6 7 8 9 10 11 12 13 |
# File 'lib/hector/commands/whois.rb', line 4 def on_whois nickname = request.args.first if session = Session.find(nickname) respond_to_whois_for(self.nickname, session) else raise NoSuchNickOrChannel, nickname end ensure respond_with("318", self.nickname, nickname, "End of /WHOIS list.") end |
#respond_to_whois_for(destination, session) ⇒ Object
15 16 17 18 19 20 21 |
# File 'lib/hector/commands/whois.rb', line 15 def respond_to_whois_for(destination, session) respond_with("301", session.nickname, :text => session.) if session.away? respond_with("311", destination, session.nickname, session.whois) respond_with("319", destination, session.nickname, :text => session.channels.map { |channel| channel.name }.join(" ")) unless session.channels.empty? respond_with("312", destination, session.nickname, Hector.server_name, :text => "Hector") respond_with("317", destination, session.nickname, session.seconds_idle, session.created_at, :text => "seconds idle, signon time") end |
#whois ⇒ Object
23 24 25 |
# File 'lib/hector/commands/whois.rb', line 23 def whois "#{nickname} #{identity.username} #{Hector.server_name} * :#{realname}" end |