]> git.sesse.net Git - vlc/blob - modules/notify/notify.c
Add missing rpath
[vlc] / modules / notify / notify.c
1 /*****************************************************************************
2  * notify.c : libnotify notification plugin
3  *****************************************************************************
4  * Copyright (C) 2006-2009 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Christophe Mutricy <xtophe -at- videolan -dot- org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <vlc_plugin.h>
33 #include <vlc_interface.h>
34 #include <vlc_input.h>
35 #include <vlc_playlist.h>
36 #include <vlc_url.h>
37
38 #include <gtk/gtk.h>
39 #include <gdk-pixbuf/gdk-pixbuf.h>
40 #include <libnotify/notify.h>
41
42 #ifndef NOTIFY_CHECK_VERSION
43 # define NOTIFY_CHECK_VERSION(x,y,z) 0
44 #endif
45
46 /*****************************************************************************
47  * Module descriptor
48  ****************************************************************************/
49 static int  Open    ( vlc_object_t * );
50 static void Close   ( vlc_object_t * );
51
52 #define APPLICATION_NAME "VLC media player"
53
54 #define TIMEOUT_TEXT N_("Timeout (ms)")
55 #define TIMEOUT_LONGTEXT N_("How long the notification will be displayed ")
56
57 vlc_module_begin ()
58     set_category( CAT_INTERFACE )
59     set_subcategory( SUBCAT_INTERFACE_CONTROL )
60     set_shortname( N_( "Notify" ) )
61     set_description( N_("LibNotify Notification Plugin") )
62
63     add_integer( "notify-timeout", 4000,
64                  TIMEOUT_TEXT, TIMEOUT_LONGTEXT, true )
65
66     set_capability( "interface", 0 )
67     set_callbacks( Open, Close )
68 vlc_module_end ()
69
70
71 /*****************************************************************************
72  * Local prototypes
73  *****************************************************************************/
74 static int ItemChange( vlc_object_t *, const char *,
75                        vlc_value_t, vlc_value_t, void * );
76 static int Notify( vlc_object_t *, const char *, GdkPixbuf *, intf_thread_t * );
77 #define MAX_LENGTH 256
78
79 struct intf_sys_t
80 {
81     NotifyNotification *notification;
82     vlc_mutex_t     lock;
83     bool            b_has_actions;
84 };
85
86 /*****************************************************************************
87  * Open: initialize and create stuff
88  *****************************************************************************/
89 static int Open( vlc_object_t *p_this )
90 {
91     intf_thread_t   *p_intf = (intf_thread_t *)p_this;
92     intf_sys_t      *p_sys  = malloc( sizeof( *p_sys ) );
93
94     if( !p_sys )
95         return VLC_ENOMEM;
96
97     if( !notify_init( APPLICATION_NAME ) )
98     {
99         free( p_sys );
100         msg_Err( p_intf, "can't find notification daemon" );
101         return VLC_EGENERIC;
102     }
103     p_intf->p_sys = p_sys;
104
105     vlc_mutex_init( &p_sys->lock );
106     p_sys->notification = NULL;
107     p_sys->b_has_actions = false;
108
109     GList *p_caps = notify_get_server_caps ();
110     if( p_caps )
111     {
112         for( GList *c = p_caps; c != NULL; c = c->next )
113         {
114             if( !strcmp( (char*)c->data, "actions" ) )
115             {
116                 p_sys->b_has_actions = true;
117                 break;
118             }
119         }
120         g_list_foreach( p_caps, (GFunc)g_free, NULL );
121         g_list_free( p_caps );
122     }
123
124     /* */
125     var_AddCallback( pl_Get( p_intf ), "activity", ItemChange, p_intf );
126
127     return VLC_SUCCESS;
128 }
129
130 /*****************************************************************************
131  * Close: destroy interface stuff
132  *****************************************************************************/
133 static void Close( vlc_object_t *p_this )
134 {
135     intf_thread_t   *p_intf = ( intf_thread_t* ) p_this;
136     intf_sys_t      *p_sys  = p_intf->p_sys;
137
138     var_DelCallback( pl_Get( p_intf ), "activity", ItemChange, p_this );
139
140     if( p_sys->notification )
141     {
142         GError *p_error = NULL;
143         notify_notification_close( p_sys->notification, &p_error );
144         g_object_unref( p_sys->notification );
145     }
146
147     vlc_mutex_destroy( &p_sys->lock );
148     free( p_sys );
149     notify_uninit();
150 }
151
152 /*****************************************************************************
153  * ItemChange: Playlist item change callback
154  *****************************************************************************/
155 static int ItemChange( vlc_object_t *p_this, const char *psz_var,
156                        vlc_value_t oldval, vlc_value_t newval, void *param )
157 {
158     VLC_UNUSED(psz_var); VLC_UNUSED(oldval); VLC_UNUSED(newval);
159     char           psz_tmp[MAX_LENGTH];
160     char           psz_notify[MAX_LENGTH];
161     char           *psz_title;
162     char           *psz_artist;
163     char           *psz_album;
164     char           *psz_arturl;
165     input_thread_t *p_input = playlist_CurrentInput( (playlist_t*)p_this );
166     intf_thread_t  *p_intf  = param;
167     intf_sys_t     *p_sys   = p_intf->p_sys;
168
169     if( !p_input )
170         return VLC_SUCCESS;
171
172     if( p_input->b_dead )
173     {
174         /* Not playing anything ... */
175         vlc_object_release( p_input );
176         return VLC_SUCCESS;
177     }
178
179     /* Wait a tad so the meta has been fetched
180      * FIXME that's awfully wrong */
181     msleep( 10000 );
182
183     /* Playing something ... */
184     input_item_t *p_input_item = input_GetItem( p_input );
185     psz_title = input_item_GetTitleFbName( p_input_item );
186
187     /* We need at least a title */
188     if( EMPTY_STR( psz_title ) )
189     {
190         free( psz_title );
191         vlc_object_release( p_input );
192         return VLC_SUCCESS;
193     }
194
195     psz_artist = input_item_GetArtist( p_input_item );
196     psz_album = input_item_GetAlbum( p_input_item );
197
198     if( !EMPTY_STR( psz_artist ) )
199     {
200         if( !EMPTY_STR( psz_album ) )
201             snprintf( psz_tmp, MAX_LENGTH, "<b>%s</b>\n%s\n[%s]",
202                       psz_title, psz_artist, psz_album );
203         else
204             snprintf( psz_tmp, MAX_LENGTH, "<b>%s</b>\n%s",
205                       psz_title, psz_artist );
206     }
207     else
208         snprintf( psz_tmp, MAX_LENGTH, "<b>%s</b>", psz_title );
209
210     free( psz_title );
211     free( psz_artist );
212     free( psz_album );
213
214     GdkPixbuf *pix = NULL;
215     psz_arturl = input_item_GetArtURL( p_input_item );
216     vlc_object_release( p_input );
217
218     if( psz_arturl )
219     {
220         char *psz = make_path( psz_arturl );
221         free( psz_arturl );
222         psz_arturl = psz;
223     }
224
225     if( psz_arturl )
226     { /* scale the art to show it in notify popup */
227         GError *p_error = NULL;
228         pix = gdk_pixbuf_new_from_file_at_scale( psz_arturl,
229                                                  72, 72, TRUE, &p_error );
230     }
231     else /* else we show state-of-the art logo */
232     {
233         /* First try to get an icon from the current theme. */
234         GtkIconTheme* p_theme = gtk_icon_theme_get_default();
235         pix = gtk_icon_theme_load_icon( p_theme, "vlc", 72, 0, NULL);
236
237         if( !pix )
238         {
239         /* Load icon from share/ */
240             GError *p_error = NULL;
241             char *psz_pixbuf;
242             char *psz_data = config_GetDataDir();
243             if( asprintf( &psz_pixbuf, "%s/icons/48x48/vlc.png", psz_data ) >= 0 )
244             {
245                 pix = gdk_pixbuf_new_from_file( psz_pixbuf, &p_error );
246                 free( psz_pixbuf );
247             }
248             free( psz_data );
249         }
250     }
251
252     free( psz_arturl );
253
254     /* we need to replace '&' with '&amp;' because '&' is a keyword of
255      * notification-daemon parser */
256     const int i_len = strlen( psz_tmp );
257     int i_notify = 0;
258     for( int i = 0; i < i_len && i_notify < ( MAX_LENGTH - 5 ); i++ )
259     { /* we use MAX_LENGTH - 5 because if the last char of psz_tmp is '&'
260        * we will need 5 more characters: 'amp;\0' .
261        * however that's unlikely to happen because the last char is '\0' */
262         if( psz_tmp[i] != '&' )
263         {
264             psz_notify[i_notify] = psz_tmp[i];
265         }
266         else
267         {
268             strcpy( &psz_notify[i_notify], "&amp;" );
269             i_notify += 4;
270         }
271         i_notify++;
272     }
273     psz_notify[i_notify] = '\0';
274
275     vlc_mutex_lock( &p_sys->lock );
276
277     Notify( p_this, psz_notify, pix, p_intf );
278
279     vlc_mutex_unlock( &p_sys->lock );
280
281     return VLC_SUCCESS;
282 }
283
284 /* libnotify callback, called when the "Next" button is pressed */
285 static void Next( NotifyNotification *notification, gchar *psz, gpointer p )
286 {
287     intf_thread_t *p_object = (intf_thread_t *)p;
288
289     VLC_UNUSED(psz);
290     notify_notification_close( notification, NULL );
291     playlist_Next( pl_Get( p_object ) );
292 }
293
294 /* libnotify callback, called when the "Previous" button is pressed */
295 static void Prev( NotifyNotification *notification, gchar *psz, gpointer p )
296 {
297     intf_thread_t *p_object = (intf_thread_t *)p;
298
299     VLC_UNUSED(psz);
300     notify_notification_close( notification, NULL );
301     playlist_Prev( pl_Get( p_object ) );
302 }
303
304 static int Notify( vlc_object_t *p_this, const char *psz_temp, GdkPixbuf *pix,
305                    intf_thread_t *p_intf )
306 {
307     intf_sys_t *p_sys = p_intf->p_sys;
308
309     NotifyNotification * notification;
310
311     /* Close previous notification if still active */
312     if( p_sys->notification )
313     {
314         GError *p_error = NULL;
315         notify_notification_close( p_sys->notification, &p_error );
316         g_object_unref( p_sys->notification );
317     }
318
319     notification = notify_notification_new( _("Now Playing"),
320                                             psz_temp, NULL
321 #if NOTIFY_CHECK_VERSION (0, 7, 0)
322                                           );
323 #else
324                                           , NULL );
325 #endif
326     notify_notification_set_timeout( notification,
327                                 var_InheritInteger(p_this, "notify-timeout") );
328     notify_notification_set_urgency( notification, NOTIFY_URGENCY_LOW );
329     if( pix )
330     {
331         notify_notification_set_icon_from_pixbuf( notification, pix );
332         gdk_pixbuf_unref( pix );
333     }
334
335     /* Adds previous and next buttons in the notification if actions are supported. */
336     if( p_sys->b_has_actions )
337     {
338       notify_notification_add_action( notification, "previous", _("Previous"), Prev,
339                                       (gpointer*)p_intf, NULL );
340       notify_notification_add_action( notification, "next", _("Next"), Next,
341                                       (gpointer*)p_intf, NULL );
342     }
343
344     notify_notification_show( notification, NULL);
345
346     /* Stores the notification to be able to close it */
347     p_sys->notification = notification;
348     return VLC_SUCCESS;
349 }
350