mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:52:43 +00:00 
			
		
		
		
	 ea9340aeca
			
		
	
	
		ea9340aeca
		
	
	
	
	
		
			
			Also make sure the action is disabled while we're not in a window that corresponds to an open channel. :^) Fixes #277.
		
			
				
	
	
		
			107 lines
		
	
	
	
		
			3.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			107 lines
		
	
	
	
		
			3.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "IRCChannel.h"
 | |
| #include "IRCChannelMemberListModel.h"
 | |
| #include "IRCClient.h"
 | |
| #include <stdio.h>
 | |
| #include <time.h>
 | |
| 
 | |
| IRCChannel::IRCChannel(IRCClient& client, const String& name)
 | |
|     : m_client(client)
 | |
|     , m_name(name)
 | |
|     , m_log(IRCLogBuffer::create())
 | |
|     , m_member_model(IRCChannelMemberListModel::create(*this))
 | |
| {
 | |
|     m_window = m_client.aid_create_window(this, IRCWindow::Channel, m_name);
 | |
|     m_window->set_log_buffer(*m_log);
 | |
| }
 | |
| 
 | |
| IRCChannel::~IRCChannel()
 | |
| {
 | |
| }
 | |
| 
 | |
| NonnullRefPtr<IRCChannel> IRCChannel::create(IRCClient& client, const String& name)
 | |
| {
 | |
|     return adopt(*new IRCChannel(client, name));
 | |
| }
 | |
| 
 | |
| void IRCChannel::add_member(const String& name, char prefix)
 | |
| {
 | |
|     for (auto& member : m_members) {
 | |
|         if (member.name == name) {
 | |
|             member.prefix = prefix;
 | |
|             return;
 | |
|         }
 | |
|     }
 | |
|     m_members.append({ name, prefix });
 | |
|     m_member_model->update();
 | |
| }
 | |
| 
 | |
| void IRCChannel::remove_member(const String& name)
 | |
| {
 | |
|     m_members.remove_first_matching([&](auto& member) { return name == member.name; });
 | |
| }
 | |
| 
 | |
| void IRCChannel::add_message(char prefix, const String& name, const String& text, Color color)
 | |
| {
 | |
|     log().add_message(prefix, name, text, color);
 | |
|     window().did_add_message();
 | |
| }
 | |
| 
 | |
| void IRCChannel::add_message(const String& text, Color color)
 | |
| {
 | |
|     log().add_message(text, color);
 | |
|     window().did_add_message();
 | |
| }
 | |
| 
 | |
| void IRCChannel::dump() const
 | |
| {
 | |
|     printf("IRCChannel{%p}: %s\n", this, m_name.characters());
 | |
|     for (auto& member : m_members)
 | |
|         printf("   (%c)%s\n", member.prefix ? member.prefix : ' ', member.name.characters());
 | |
|     log().dump();
 | |
| }
 | |
| 
 | |
| void IRCChannel::say(const String& text)
 | |
| {
 | |
|     m_client.send_privmsg(m_name, text);
 | |
|     add_message(' ', m_client.nickname(), text);
 | |
| }
 | |
| 
 | |
| void IRCChannel::handle_join(const String& nick, const String& hostmask)
 | |
| {
 | |
|     if (nick == m_client.nickname())
 | |
|         m_open = true;
 | |
|     add_message(String::format("*** %s [%s] has joined %s", nick.characters(), hostmask.characters(), m_name.characters()), Color::MidGreen);
 | |
| }
 | |
| 
 | |
| void IRCChannel::handle_part(const String& nick, const String& hostmask)
 | |
| {
 | |
|     if (nick == m_client.nickname()) {
 | |
|         m_open = false;
 | |
|         m_members.clear();
 | |
|         m_client.did_part_from_channel({}, *this);
 | |
|     } else {
 | |
|         remove_member(nick);
 | |
|     }
 | |
|     m_member_model->update();
 | |
|     add_message(String::format("*** %s [%s] has parted from %s", nick.characters(), hostmask.characters(), m_name.characters()), Color::MidGreen);
 | |
| }
 | |
| 
 | |
| void IRCChannel::handle_topic(const String& nick, const String& topic)
 | |
| {
 | |
|     if (nick.is_null())
 | |
|         add_message(String::format("*** Topic is \"%s\"", topic.characters()), Color::MidBlue);
 | |
|     else
 | |
|         add_message(String::format("*** %s set topic to \"%s\"", nick.characters(), topic.characters()), Color::MidBlue);
 | |
| }
 | |
| 
 | |
| void IRCChannel::notify_nick_changed(const String& old_nick, const String& new_nick)
 | |
| {
 | |
|     for (auto& member : m_members) {
 | |
|         if (member.name == old_nick) {
 | |
|             member.name = new_nick;
 | |
|             add_message(String::format("~ %s changed nickname to %s", old_nick.characters(), new_nick.characters()), Color::MidMagenta);
 | |
|             m_member_model->update();
 | |
|             return;
 | |
|         }
 | |
|     }
 | |
| }
 |