92 lines
2.5 KiB
C
92 lines
2.5 KiB
C
/*
|
|
* This file Copyright (C) 2008 Charles Kerr <charles@rebelbase.com>
|
|
*
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
|
* so that the bulk of its code can remain under the MIT license.
|
|
* This exemption does not extend to derived works not owned by
|
|
* the Transmission project.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifdef HAVE_GIO
|
|
#include <gio/gio.h>
|
|
#endif
|
|
#include <glib/gi18n.h>
|
|
#include "notify.h"
|
|
|
|
#ifndef HAVE_LIBNOTIFY
|
|
|
|
void tr_notify_init( void ) { }
|
|
void tr_notify_send( TrTorrent * tor UNUSED ) { }
|
|
|
|
#else
|
|
#include <libnotify/notify.h>
|
|
|
|
void
|
|
tr_notify_init( void )
|
|
{
|
|
notify_init( "Transmission" );
|
|
}
|
|
|
|
static void
|
|
notifyCallback( NotifyNotification * n UNUSED,
|
|
const char * action,
|
|
gpointer gdata )
|
|
{
|
|
TrTorrent * gtor = TR_TORRENT( gdata );
|
|
tr_torrent * tor = tr_torrent_handle( gtor );
|
|
const tr_info * info = tr_torrent_info( gtor );
|
|
char * path = NULL;
|
|
|
|
if( !strcmp( action, "folder" ) )
|
|
{
|
|
if( info->fileCount == 1 )
|
|
{
|
|
path = g_build_filename( tr_torrentGetFolder(tor), NULL );
|
|
}
|
|
else
|
|
{
|
|
path = g_build_filename( tr_torrentGetFolder(tor), info->name, NULL );
|
|
}
|
|
}
|
|
else if( !strcmp( action, "file" ) )
|
|
{
|
|
path = g_build_filename( tr_torrentGetFolder(tor), info->files[0].name, NULL );
|
|
}
|
|
|
|
if( path )
|
|
{
|
|
gboolean opened = FALSE;
|
|
#ifdef HAVE_GIO
|
|
GFile * file = g_file_new_for_path( path );
|
|
char * uri = g_file_get_uri( file );
|
|
opened = g_app_info_launch_default_for_uri( uri, NULL, NULL );
|
|
g_free( uri );
|
|
g_object_unref( G_OBJECT( file ) );
|
|
#endif
|
|
if( !opened ) {
|
|
char * argv[] = { "xdg-open", path, NULL };
|
|
g_spawn_async( NULL, argv, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, NULL, NULL );
|
|
}
|
|
g_free( path );
|
|
}
|
|
}
|
|
|
|
void
|
|
tr_notify_send(TrTorrent *tor)
|
|
{
|
|
const tr_info * info = tr_torrent_info( tor );
|
|
NotifyNotification * n = notify_notification_new( _( "Torrent Complete" ), info->name, "transmission", NULL );
|
|
|
|
if (info->fileCount == 1)
|
|
notify_notification_add_action( n, "file", _( "Open File" ),
|
|
NOTIFY_ACTION_CALLBACK(notifyCallback), tor, NULL);
|
|
notify_notification_add_action( n, "folder", _( "Open Folder" ),
|
|
NOTIFY_ACTION_CALLBACK(notifyCallback), tor, NULL );
|
|
notify_notification_show( n, NULL );
|
|
}
|
|
|
|
#endif
|