summary refs log blame commit diff stats
path: root/plugins/checksum/checksum.c
blob: 2c64ce398998212dbdc8e904f42d7bde9209bf78 (plain) (tree)
1
2
3
4
5
6
7
8
9
          
                                        
  





                                                                                
  

                                                                             
  






                                                                                

   

                   
                    
 
                           
 
                                                                                                                   

                                                                 
                              

           
                                                                                                                            
 








                                                                                                                                                      
            
                                                                                                 

 


                                                                                        
 



                                                                      
 




                                                                    
 
 

                                                                                    
 



                                                                      
 

                                                                    
 

                               

 

                                                                                            
 
                            









                                                          
 

                                                      

                                                                                                                       
 



                                                  
         
 
                                                                                          
                                   




                                         



                             
                                      
                       


                                                                                                                       
            

                                              




                                                                                   

         











                                                                                                    
                                




                                          



                             
 
                                                      
                                                       
 




                                                                                                
 

                              
 
                                


   
                                                                                                                             


                           


                                  
 

                                                                                         
 
                                                        



                 
                            
 
                                                          

                 
/* HexChat
 * Copyright (c) 2010-2012 Berke Viktor.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

#include "config.h"

#include <gio/gio.h>

#include "hexchat-plugin.h"

static hexchat_plugin *ph;									/* plugin handle */
static char name[] = "Checksum";
static char desc[] = "Calculate checksum for DCC file transfers";
static char version[] = "4.0";

static void
print_sha256_result (hexchat_context *ctx, gboolean send_message, const char *checksum, const char *filename, GError *error)
{
	/* Context may have been destroyed. */
	/* FIXME: This could still send the PRIVMSG even if the context was closed. */
	if (!hexchat_set_context (ph, ctx))
		return;

	if (error)
		hexchat_printf (ph, "Failed to create checksum for %s: %s", filename, error->message);
	else if (send_message)
		hexchat_commandf (ph, "quote PRIVMSG %s :SHA-256 checksum for %s (remote): %s", hexchat_get_info (ph, "channel"), filename, checksum);
	else
		hexchat_printf (ph, "SHA-256 checksum for %s (local): %s\n", filename, checksum);
}

/* TODO: We could put more info in task data and share the same callback. */
static void
on_received_file_sha256_complete (GFile *file, GAsyncResult *result, gpointer user_data)
{
	hexchat_context *ctx = user_data;
	GError *error = NULL;
	char *sha256 = NULL;
	const char *filename = g_task_get_task_data (G_TASK (result));

	sha256 = g_task_propagate_pointer (G_TASK (result), &error);
	print_sha256_result (ctx, FALSE, sha256, filename, error);

	g_free (sha256);
	g_clear_error (&error);
}

static void
on_sent_file_sha256_complete (GFile *file, GAsyncResult *result, gpointer user_data)
{
	hexchat_context *ctx = user_data;
	GError *error = NULL;
	char *sha256 = NULL;
	const char *filename = g_task_get_task_data (G_TASK (result));

	sha256 = g_task_propagate_pointer (G_TASK (result), &error);
	print_sha256_result (ctx, TRUE, sha256, filename, error);

	g_free (sha256);
	g_clear_error (&error);
}

static void
thread_sha256_file (GTask *task, GFile *file, gpointer task_data, GCancellable *cancellable)
{
	GChecksum *checksum;
	GFileInputStream *istream;
	guint8 buffer[32768];
	GError *error = NULL;
	gssize ret;

	istream = g_file_read (file, cancellable, &error);
	if (error) {
		g_task_return_error (task, error);
		return;
	}

	checksum = g_checksum_new (G_CHECKSUM_SHA256);

	while ((ret = g_input_stream_read (G_INPUT_STREAM (istream), buffer, sizeof(buffer), cancellable, &error)) > 0)
		g_checksum_update (checksum, buffer, ret);

	if (error) {
		g_checksum_free (checksum);
		g_task_return_error (task, error);
		return;
	}

	g_task_return_pointer (task, g_strdup (g_checksum_get_string (checksum)), g_free);
	g_checksum_free (checksum);
}

static int
dccrecv_cb (char *word[], void *userdata)
{
	GTask *task;
	char *filename_fs;
	GFile *file;
	hexchat_context *ctx;
	const char *dcc_completed_dir;
	char *filename;

	if (hexchat_get_prefs (ph, "dcc_completed_dir", &dcc_completed_dir, NULL) == 1 && dcc_completed_dir[0] != '\0')
		filename = g_build_filename (dcc_completed_dir, word[1], NULL);
	else
		filename = g_strdup (word[2]);

	filename_fs = g_filename_from_utf8 (filename, -1, NULL, NULL, NULL);
	if (!filename_fs) {
		hexchat_printf (ph, "Checksum: Invalid filename (%s)\n", filename);
		g_free (filename);
		return HEXCHAT_EAT_NONE;
	}

	/* Print in the privmsg tab of the sender */
	ctx = hexchat_find_context (ph, NULL, word[3]);

	file = g_file_new_for_path (filename_fs);
	task = g_task_new (file, NULL, (GAsyncReadyCallback) on_received_file_sha256_complete, ctx);
	g_task_set_task_data (task, filename, g_free);
	g_task_run_in_thread (task, (GTaskThreadFunc) thread_sha256_file);

	g_free (filename_fs);
	g_object_unref (file);
	g_object_unref (task);

	return HEXCHAT_EAT_NONE;
}

static int
dccoffer_cb (char *word[], void *userdata)
{
	GFile *file;
	GTask *task;
	hexchat_context *ctx;
	char *filename;

	/* Print in the privmsg tab of the receiver */
	ctx = hexchat_find_context (ph, NULL, word[3]);

	filename = g_strdup (word[3]);
	file = g_file_new_for_path (filename);
	task = g_task_new (file, NULL, (GAsyncReadyCallback) on_sent_file_sha256_complete, ctx);
	g_task_set_task_data (task, filename, g_free);
	g_task_run_in_thread (task, (GTaskThreadFunc) thread_sha256_file);

	g_object_unref (file);
	g_object_unref (task);

	return HEXCHAT_EAT_NONE;
}

int
hexchat_plugin_init (hexchat_plugin *plugin_handle, char **plugin_name, char **plugin_desc, char **plugin_version, char *arg)
{
	ph = plugin_handle;

	*plugin_name = name;
	*plugin_desc = desc;
	*plugin_version = version;

	hexchat_hook_print (ph, "DCC RECV Complete", HEXCHAT_PRI_NORM, dccrecv_cb, NULL);
	hexchat_hook_print (ph, "DCC Offer", HEXCHAT_PRI_NORM, dccoffer_cb, NULL);

	hexchat_printf (ph, "%s plugin loaded\n", name);
	return 1;
}

int
hexchat_plugin_deinit (void)
{
	hexchat_printf (ph, "%s plugin unloaded\n", name);
	return 1;
}