diff -r f80f044d734c -r 9b94dce254d8 pidgin/pidginnotificationauthorizationrequest.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pidginnotificationauthorizationrequest.c Mon Sep 23 20:33:02 2024 -0500 @@ -0,0 +1,179 @@ +/* + * Pidgin - Internet Messenger + * Copyright (C) Pidgin Developers + * + * Pidgin is the legal property of its developers, whose names are too numerous + * to list here. Please refer to the COPYRIGHT file distributed with this + * source distribution. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, see . + */ + +#include + +#include + +#include "pidgin/pidginnotificationauthorizationrequest.h" + +struct _PidginNotificationAuthorizationRequest { + PidginNotification parent; +}; + +G_DEFINE_FINAL_TYPE(PidginNotificationAuthorizationRequest, + pidgin_notification_authorization_request, + PIDGIN_TYPE_NOTIFICATION) + +/****************************************************************************** + * Callbacks + *****************************************************************************/ +static void +pidgin_notification_authorization_request_create_dm_cb(GObject *self, + GAsyncResult *result, + G_GNUC_UNUSED gpointer data) +{ + PurpleContact *contact = PURPLE_CONTACT(self); + PurpleConversation *conversation = NULL; + GError *error = NULL; + + conversation = purple_contact_create_dm_finish(contact, result, &error); + if(error != NULL) { + g_warning("failed to create dm for %s: %s", + purple_contact_info_get_name_for_display(PURPLE_CONTACT_INFO(contact)), + error->message); + + g_clear_error(&error); + g_clear_object(&conversation); + + return; + } + + if(PURPLE_IS_CONVERSATION(conversation)) { + purple_conversation_present(conversation); + } + + g_clear_object(&conversation); +} + +/****************************************************************************** + * Actions + *****************************************************************************/ +static void +pidgin_notification_authorization_request_accept(GtkWidget *self, + G_GNUC_UNUSED const char *action_name, + G_GNUC_UNUSED GVariant *parameter) +{ + PidginNotification *pidgin_notification = PIDGIN_NOTIFICATION(self); + PurpleAuthorizationRequest *request = NULL; + PurpleNotification *purple_notification = NULL; + PurpleNotificationAuthorizationRequest *notification_authorization_request = NULL; + + purple_notification = pidgin_notification_get_notification(pidgin_notification); + notification_authorization_request = PURPLE_NOTIFICATION_AUTHORIZATION_REQUEST(purple_notification); + request = purple_notification_authorization_request_get_request(notification_authorization_request); + + purple_authorization_request_accept(request); + + purple_notification_delete(purple_notification); +} + +static void +pidgin_notification_authorization_request_message(GtkWidget *self, + G_GNUC_UNUSED const char *action_name, + G_GNUC_UNUSED GVariant *parameter) +{ + PidginNotification *pidgin_notification = PIDGIN_NOTIFICATION(self); + PurpleNotification *purple_notification = NULL; + PurpleNotificationAuthorizationRequest *notification_authorization_request = NULL; + PurpleAuthorizationRequest *request = NULL; + PurpleContact *contact = NULL; + PurpleConversation *conversation = NULL; + + purple_notification = pidgin_notification_get_notification(pidgin_notification); + notification_authorization_request = PURPLE_NOTIFICATION_AUTHORIZATION_REQUEST(purple_notification); + request = purple_notification_authorization_request_get_request(notification_authorization_request); + contact = purple_authorization_request_get_contact(request); + + conversation = purple_contact_find_dm(contact); + if(PURPLE_IS_CONVERSATION(conversation)) { + purple_conversation_present(conversation); + } else { + purple_contact_create_dm_async(contact, NULL, + pidgin_notification_authorization_request_create_dm_cb, + NULL); + } +} + +static void +pidgin_notification_authorization_request_deny(GtkWidget *self, + G_GNUC_UNUSED const char *action_name, + G_GNUC_UNUSED GVariant *parameter) +{ + PidginNotification *pidgin_notification = PIDGIN_NOTIFICATION(self); + PurpleAuthorizationRequest *request = NULL; + PurpleNotification *purple_notification = NULL; + PurpleNotificationAuthorizationRequest *notification_authorization_request = NULL; + + purple_notification = pidgin_notification_get_notification(pidgin_notification); + notification_authorization_request = PURPLE_NOTIFICATION_AUTHORIZATION_REQUEST(purple_notification); + request = purple_notification_authorization_request_get_request(notification_authorization_request); + + purple_authorization_request_deny(request, NULL); + + purple_notification_delete(purple_notification); +} + +/****************************************************************************** + * GObject Implementation + *****************************************************************************/ +static void +pidgin_notification_authorization_request_init(PidginNotificationAuthorizationRequest *notification) +{ + gtk_widget_init_template(GTK_WIDGET(notification)); +} + +static void +pidgin_notification_authorization_request_class_init(PidginNotificationAuthorizationRequestClass *klass) +{ + GtkWidgetClass *widget_class = GTK_WIDGET_CLASS(klass); + + gtk_widget_class_set_template_from_resource( + widget_class, + "/im/pidgin/Pidgin3/notificationauthorizationrequest.ui" + ); + + gtk_widget_class_install_action(widget_class, "notification.accept", + NULL, + pidgin_notification_authorization_request_accept); + gtk_widget_class_install_action(widget_class, "notification.message", + NULL, + pidgin_notification_authorization_request_message); + gtk_widget_class_install_action(widget_class, "notification.deny", + NULL, + pidgin_notification_authorization_request_deny); +} + +/****************************************************************************** + * API + *****************************************************************************/ +GtkWidget * +pidgin_notification_authorization_request_new(PurpleNotificationAuthorizationRequest *notification) +{ + g_return_val_if_fail(PURPLE_IS_NOTIFICATION_AUTHORIZATION_REQUEST(notification), + NULL); + + return g_object_new( + PIDGIN_TYPE_NOTIFICATION_AUTHORIZATION_REQUEST, + "notification", notification, + NULL); +}