pub mod permissions;
pub mod response;
use std::collections::HashMap;
use actix::{
Actor, ActorContext, ActorFutureExt, Addr, AsyncContext, Context, Handler, MessageResult,
ResponseActFuture, Supervised, WrapFuture,
};
use chrono::{DateTime, Utc};
use futures::future::Either;
use irc_proto::{Command, Message, Mode};
use tracing::{debug, error, info, instrument, warn, Span};
use crate::{
channel::{
permissions::Permission,
response::{
ChannelInviteResult, ChannelJoinRejectionReason, ChannelNamesList, ChannelTopic,
},
},
client::Client,
connection::{InitiatedConnection, UserId},
messages::{
Broadcast, ChannelFetchTopic, ChannelInvite, ChannelJoin, ChannelKickUser,
ChannelMemberList, ChannelMessage, ChannelPart, ChannelSetMode, ChannelUpdateTopic,
FetchClientByNick, ServerDisconnect, UserKickedFromChannel, UserNickChange,
},
persistence::{
events::{FetchAllUserChannelPermissions, SetUserChannelPermissions},
Persistence,
},
server::Server,
};
#[derive(Copy, Clone)]
pub struct ChannelId(pub i64);
pub struct Channel {
pub name: String,
pub server: Addr<Server>,
pub permissions: HashMap<UserId, Permission>,
pub clients: HashMap<Addr<Client>, InitiatedConnection>,
pub topic: Option<CurrentChannelTopic>,
pub persistence: Addr<Persistence>,
pub channel_id: ChannelId,
}
impl Actor for Channel {
type Context = Context<Self>;
fn started(&mut self, ctx: &mut Self::Context) {
ctx.wait(
self.persistence
.send(crate::persistence::events::ChannelCreated {
name: self.name.to_string(),
})
.into_actor(self)
.then(|res, this, ctx| {
match res {
Ok(channel_id) => {
this.channel_id.0 = channel_id;
}
Err(error) => {
error!(%error, "Failed to create channel in database");
ctx.terminate();
}
}
this.persistence
.send(FetchAllUserChannelPermissions {
channel_id: this.channel_id,
})
.into_actor(this)
})
.map(|res, this, ctx| match res {
Ok(permissions) => {
this.permissions = permissions;
}
Err(error) => {
error!(%error, "Failed to fetch channel permissions");
ctx.terminate();
}
}),
);
}
}
impl Supervised for Channel {}
impl Channel {
#[must_use]
pub fn get_user_permissions(&self, user_id: UserId) -> Permission {
self.permissions
.get(&user_id)
.copied()
.unwrap_or(Permission::Normal)
}
}
impl Handler<Broadcast> for Channel {
type Result = ();
#[instrument(parent = &msg.span, skip_all)]
fn handle(&mut self, msg: Broadcast, _ctx: &mut Self::Context) -> Self::Result {
for client in self.clients.keys() {
client.do_send(msg.clone());
}
}
}
impl Handler<ChannelMemberList> for Channel {
type Result = MessageResult<ChannelMemberList>;
#[instrument(parent = &msg.span, skip_all)]
fn handle(&mut self, msg: ChannelMemberList, _ctx: &mut Self::Context) -> Self::Result {
MessageResult(ChannelNamesList::new(self))
}
}
impl Handler<ChannelMessage> for Channel {
type Result = ();
#[instrument(parent = &msg.span, skip_all)]
fn handle(&mut self, msg: ChannelMessage, _ctx: &mut Self::Context) -> Self::Result {
let Some(sender) = self.clients.get(&msg.client) else {
error!("Received message from user not in channel");
return;
};
if !self.get_user_permissions(sender.user_id).can_chatter() {
error!("User cannot send message to channel");
return;
}
let nick = sender.to_nick();
self.persistence
.do_send(crate::persistence::events::ChannelMessage {
channel_id: self.channel_id,
sender: nick.to_string(),
message: msg.message.to_string(),
receivers: self.clients.values().map(|v| v.user_id).collect(),
});
for client in self.clients.keys() {
if client == &msg.client {
continue;
}
client.do_send(Broadcast {
span: Span::current(),
message: Message {
tags: None,
prefix: Some(nick.clone()),
command: Command::PRIVMSG(self.name.to_string(), msg.message.clone()),
},
});
}
}
}
impl Handler<ChannelSetMode> for Channel {
type Result = ();
#[instrument(parent = &msg.span, skip_all)]
fn handle(&mut self, msg: ChannelSetMode, ctx: &mut Self::Context) -> Self::Result {
let Some(client) = self.clients.get(&msg.client).cloned() else {
return;
};
for mode in msg.modes {
let (add, channel_mode, arg) = match mode.clone() {
Mode::Plus(mode, arg) => (true, mode, arg),
Mode::Minus(mode, arg) => (false, mode, arg),
};
if let Ok(user_mode) = Permission::try_from(channel_mode) {
let Some(affected_nick) = arg else {
error!("No user given");
continue;
};
ctx.notify(SetUserMode {
requester: client.clone(),
add,
affected_nick,
user_mode,
span: Span::current(),
});
} else {
}
}
}
}
impl Handler<SetUserMode> for Channel {
type Result = ();
#[instrument(parent = &msg.span, skip_all)]
fn handle(&mut self, msg: SetUserMode, ctx: &mut Self::Context) -> Self::Result {
let permissions = self.get_user_permissions(msg.requester.user_id);
let Some((_, affected_user)) = self.clients.iter().find(|(_, connection)| connection.nick == msg.affected_nick) else {
error!("Unknown user to set perms on");
return;
};
let affected_user_perms = self.get_user_permissions(affected_user.user_id);
let new_affected_user_perms = if msg.add {
msg.user_mode
} else if affected_user_perms == msg.user_mode {
Permission::Normal
} else {
error!("Removing the given permission would do nothing");
return;
};
if !permissions.can_set_permission(new_affected_user_perms, affected_user_perms) {
error!(
?permissions,
?new_affected_user_perms,
?affected_user_perms,
"User is not allowed to set permissions for this user"
);
return;
}
self.permissions
.insert(affected_user.user_id, new_affected_user_perms);
self.persistence.do_send(SetUserChannelPermissions {
channel_id: self.channel_id,
user_id: affected_user.user_id,
permissions: new_affected_user_perms,
});
let all_connected_for_user_id = self
.clients
.values()
.filter(|connection| connection.user_id == affected_user.user_id);
for connection in all_connected_for_user_id {
let Some(mode) = msg.user_mode.into_mode(msg.add, connection.nick.to_string()) else {
continue;
};
ctx.notify(Broadcast {
message: Message {
tags: None,
prefix: Some(connection.to_nick()),
command: Command::ChannelMODE(self.name.to_string(), vec![mode.clone()]),
},
span: Span::current(),
});
}
}
}
impl Handler<UserNickChange> for Channel {
type Result = ();
fn handle(&mut self, msg: UserNickChange, _ctx: &mut Self::Context) -> Self::Result {
let Some(sender) = self.clients.get_mut(&msg.client) else {
return;
};
*sender = msg.connection;
sender.nick = msg.new_nick;
}
}
impl Handler<ChannelJoin> for Channel {
type Result = MessageResult<ChannelJoin>;
#[instrument(parent = &msg.span, skip_all)]
fn handle(&mut self, msg: ChannelJoin, ctx: &mut Self::Context) -> Self::Result {
info!(self.name, msg.connection.nick, "User is joining channel");
let mut permissions = self
.permissions
.get(&msg.connection.user_id)
.copied()
.unwrap_or(Permission::Normal);
if !permissions.can_join() {
return MessageResult(Ok(Err(ChannelJoinRejectionReason::Banned)));
}
self.persistence
.do_send(crate::persistence::events::ChannelJoined {
channel_id: self.channel_id,
user_id: msg.connection.user_id,
span: msg.span.clone(),
});
if self.permissions.is_empty() {
permissions = Permission::Founder;
self.permissions.insert(msg.connection.user_id, permissions);
self.persistence.do_send(SetUserChannelPermissions {
channel_id: self.channel_id,
user_id: msg.connection.user_id,
permissions,
});
}
self.clients
.insert(msg.client.clone(), msg.connection.clone());
for client in self.clients.keys() {
client.do_send(Broadcast {
span: Span::current(),
message: Message {
tags: None,
prefix: Some(msg.connection.to_nick()),
command: Command::JOIN(self.name.to_string(), None, None),
},
});
if let Some(mode) = permissions.into_mode(true, msg.connection.nick.to_string()) {
client.do_send(Broadcast {
span: Span::current(),
message: Message {
tags: None,
prefix: Some(msg.connection.to_nick()),
command: Command::ChannelMODE(self.name.to_string(), vec![mode]),
},
});
}
}
for message in ChannelTopic::new(self).into_messages(self.name.to_string(), true) {
msg.client.do_send(Broadcast {
message,
span: Span::current(),
});
}
for message in ChannelNamesList::new(self).into_messages(msg.connection.nick.to_string()) {
msg.client.do_send(Broadcast {
message,
span: Span::current(),
});
}
MessageResult(Ok(Ok(ctx.address())))
}
}
impl Handler<ChannelUpdateTopic> for Channel {
type Result = ();
#[instrument(parent = &msg.span, skip_all)]
fn handle(&mut self, msg: ChannelUpdateTopic, _ctx: &mut Self::Context) -> Self::Result {
let Some(client_info) = self.clients.get(&msg.client) else {
return;
};
debug!(msg.topic, "User is attempting to update channel topic");
if !self
.get_user_permissions(client_info.user_id)
.can_set_topic()
{
error!("User cannot set channel topic");
return;
}
self.topic = Some(CurrentChannelTopic {
topic: msg.topic,
set_by: client_info.nick.to_string(),
set_time: Utc::now(),
});
for (client, connection) in &self.clients {
for message in ChannelTopic::new(self).into_messages(connection.nick.to_string(), false)
{
client.do_send(Broadcast {
message,
span: Span::current(),
});
}
}
}
}
impl Handler<ChannelKickUser> for Channel {
type Result = ();
fn handle(&mut self, msg: ChannelKickUser, _ctx: &mut Self::Context) -> Self::Result {
let Some(kicker) = self.clients.get(&msg.client) else {
error!("Kicker is unknown");
return;
};
if !self.get_user_permissions(kicker.user_id).can_kick() {
error!("Kicker can not kick people from the channel");
return;
}
let kicker = kicker.to_nick();
let kicked_user = self
.clients
.iter()
.find(|(_handle, client)| client.nick == msg.user)
.map(|(k, v)| (k.clone(), v));
let Some((kicked_user_handle, kicked_user_info)) = kicked_user else {
error!(msg.user, "Attempted to kick unknown user");
return;
};
for client in self.clients.keys() {
client.do_send(Broadcast {
message: Message {
tags: None,
prefix: Some(kicker.clone()),
command: Command::KICK(
self.name.to_string(),
kicked_user_info.nick.to_string(),
msg.reason.clone(),
),
},
span: Span::current(),
});
}
kicked_user_handle.do_send(UserKickedFromChannel {
channel: self.name.to_string(),
span: Span::current(),
});
self.clients.remove(&kicked_user_handle);
}
}
impl Handler<ChannelFetchTopic> for Channel {
type Result = MessageResult<ChannelFetchTopic>;
#[instrument(parent = &msg.span, skip_all)]
fn handle(&mut self, msg: ChannelFetchTopic, _ctx: &mut Self::Context) -> Self::Result {
MessageResult(ChannelTopic::new(self))
}
}
impl Handler<ChannelPart> for Channel {
type Result = ();
#[instrument(parent = &msg.span, skip_all)]
fn handle(&mut self, msg: ChannelPart, ctx: &mut Self::Context) -> Self::Result {
let Some(client_info) = self.clients.remove(&msg.client) else {
return;
};
self.persistence
.do_send(crate::persistence::events::ChannelParted {
channel_id: self.channel_id,
user_id: client_info.user_id,
span: msg.span.clone(),
});
let message = Broadcast {
message: Message {
tags: None,
prefix: Some(client_info.to_nick()),
command: Command::PART(self.name.to_string(), msg.message),
},
span: Span::current(),
};
msg.client.do_send(message.clone());
ctx.notify(message);
}
}
impl Handler<ChannelInvite> for Channel {
type Result = ResponseActFuture<Self, ChannelInviteResult>;
#[instrument(parent = &msg.span, skip_all)]
fn handle(&mut self, msg: ChannelInvite, _ctx: &mut Self::Context) -> Self::Result {
let Some(source) = self.clients.get(&msg.client) else {
return Box::pin(futures::future::ready(ChannelInviteResult::NotOnChannel));
};
let source = source.to_nick();
let fut = self
.server
.send(FetchClientByNick {
nick: msg.nick.clone(),
})
.into_actor(self)
.then(|client, this, _ctx| {
let client = match client.unwrap() {
Some(v) if this.clients.contains_key(&v) => {
return Either::Left(futures::future::ready(
ChannelInviteResult::UserAlreadyOnChannel,
))
.into_actor(this);
}
Some(v) => v,
None => {
return Either::Left(futures::future::ready(
ChannelInviteResult::NoSuchUser,
))
.into_actor(this)
}
};
let channel_name = this.name.to_string();
Either::Right(async move {
client
.send(Broadcast {
message: Message {
tags: None,
prefix: Some(source),
command: Command::INVITE(msg.nick, channel_name),
},
span: msg.span,
})
.await
.unwrap();
ChannelInviteResult::Successful
})
.into_actor(this)
});
Box::pin(fut)
}
}
impl Handler<ServerDisconnect> for Channel {
type Result = ();
#[instrument(parent = &msg.span, skip_all)]
fn handle(&mut self, msg: ServerDisconnect, ctx: &mut Self::Context) -> Self::Result {
let Some(client_info) = self.clients.remove(&msg.client) else {
return;
};
let message = Broadcast {
span: Span::current(),
message: Message {
tags: None,
prefix: Some(client_info.to_nick()),
command: Command::QUIT(msg.message),
},
};
ctx.notify(message);
}
}
#[derive(Clone)]
pub struct CurrentChannelTopic {
pub topic: String,
pub set_by: String,
pub set_time: DateTime<Utc>,
}
#[derive(actix::Message)]
#[rtype(result = "()")]
pub struct SetUserMode {
requester: InitiatedConnection,
add: bool,
affected_nick: String,
user_mode: Permission,
span: Span,
}