mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 08:45:09 +00:00
77 lines
2.3 KiB
C++
77 lines
2.3 KiB
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "ClientConnection.h"
|
|
#include "NotificationWindow.h"
|
|
#include <AK/HashMap.h>
|
|
#include <NotificationServer/NotificationClientEndpoint.h>
|
|
|
|
namespace NotificationServer {
|
|
|
|
static HashMap<int, RefPtr<ClientConnection>> s_connections;
|
|
|
|
ClientConnection::ClientConnection(NonnullRefPtr<Core::LocalSocket> client_socket, int client_id)
|
|
: IPC::ClientConnection<NotificationClientEndpoint, NotificationServerEndpoint>(*this, move(client_socket), client_id)
|
|
{
|
|
s_connections.set(client_id, *this);
|
|
}
|
|
|
|
ClientConnection::~ClientConnection()
|
|
{
|
|
}
|
|
|
|
void ClientConnection::die()
|
|
{
|
|
s_connections.remove(client_id());
|
|
}
|
|
|
|
Messages::NotificationServer::GreetResponse ClientConnection::handle(const Messages::NotificationServer::Greet&)
|
|
{
|
|
return {};
|
|
}
|
|
|
|
Messages::NotificationServer::ShowNotificationResponse ClientConnection::handle(const Messages::NotificationServer::ShowNotification& message)
|
|
{
|
|
auto window = NotificationWindow::construct(client_id(), message.text(), message.title(), message.icon());
|
|
window->show();
|
|
return {};
|
|
}
|
|
|
|
Messages::NotificationServer::CloseNotificationResponse ClientConnection::handle([[maybe_unused]] const Messages::NotificationServer::CloseNotification& message)
|
|
{
|
|
auto window = NotificationWindow::get_window_by_id(client_id());
|
|
if (window) {
|
|
window->close();
|
|
}
|
|
return {};
|
|
}
|
|
|
|
Messages::NotificationServer::UpdateNotificationIconResponse ClientConnection::handle(const Messages::NotificationServer::UpdateNotificationIcon& message)
|
|
{
|
|
auto window = NotificationWindow::get_window_by_id(client_id());
|
|
if (window) {
|
|
window->set_image(message.icon());
|
|
}
|
|
return !!window;
|
|
}
|
|
|
|
Messages::NotificationServer::UpdateNotificationTextResponse ClientConnection::handle(const Messages::NotificationServer::UpdateNotificationText& message)
|
|
{
|
|
auto window = NotificationWindow::get_window_by_id(client_id());
|
|
if (window) {
|
|
window->set_text(message.text());
|
|
window->set_title(message.title());
|
|
}
|
|
return !!window;
|
|
}
|
|
|
|
Messages::NotificationServer::IsShowingResponse ClientConnection::handle(const Messages::NotificationServer::IsShowing&)
|
|
{
|
|
auto window = NotificationWindow::get_window_by_id(client_id());
|
|
return !!window;
|
|
}
|
|
|
|
}
|