~cairo-dock-team/ubuntu/precise/cairo-dock-plug-ins/3.0.0.0rc1

« back to all changes in this revision

Viewing changes to dnd2share/src/applet-backend-imageshack.c

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne, Matthieu Baerts (matttbe), Julien Lavergne
  • Date: 2009-10-05 19:27:17 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20091005192717-mvqvb395guktr401
Tags: 2.0.9-0ubuntu1
[ Matthieu Baerts (matttbe) ]
* New upstream release (LP: #435590)
* debian/control: 
 - Remove ${shlibs:Depends} for integration plug-ins to avoid
   pulling shared libraries which are detected automatically.
 - Added curl as depends for cairo-dock-plug-ins
* debian/rules:
 - Add --enable-dnd2share and --enable-musicplayer to enable new applets.
 - Remove --enable-rhythmbox and --enable-nvidia to remove those applets,
   not maintained upstream.
* Update *.install to take all generated applets.

[ Julien Lavergne ]
* Adjust changelog with Daniel Holbach suggestions.
* cairo-dock-plug-ins.changelogs:  Install specific changelog for 2.0.9
* Build-depends on cairo-dock-dev (>= 2.0.9)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
* This file is a part of the Cairo-Dock project
 
3
*
 
4
* Copyright : (C) see the 'copyright' file.
 
5
* E-mail    : see the 'copyright' file.
 
6
*
 
7
* This program is free software; you can redistribute it and/or
 
8
* modify it under the terms of the GNU General Public License
 
9
* as published by the Free Software Foundation; either version 3
 
10
* of the License, or (at your option) any later version.
 
11
*
 
12
* This program is distributed in the hope that it will be useful,
 
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
* GNU General Public License for more details.
 
16
* You should have received a copy of the GNU General Public License
 
17
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
*/
 
19
 
 
20
#define _BSD_SOURCE
 
21
#include <stdlib.h>
 
22
#include <math.h>
 
23
#include <unistd.h>
 
24
#include <glib/gstdio.h>
 
25
 
 
26
#include "applet-struct.h"
 
27
#include "applet-dnd2share.h"
 
28
#include "applet-backend-uppix.h"
 
29
 
 
30
#define NB_URLS 2
 
31
static const gchar *s_UrlLabels[NB_URLS] = {"DirectLink", "Thumbnail"};
 
32
 
 
33
 
 
34
static void upload (const gchar *cFilePath)
 
35
{
 
36
        // On cree un fichier de log temporaire.
 
37
        gchar *cLogFile = g_strdup ("/tmp/dnd2share-log.XXXXXX");
 
38
        int fds = mkstemp (cLogFile);
 
39
        if (fds == -1)
 
40
        {
 
41
                g_free (cLogFile);
 
42
                return ;
 
43
        }
 
44
        close(fds);
 
45
        
 
46
        // On lance la commande d'upload.
 
47
        gchar *cCommand = NULL;
 
48
        cCommand = g_strdup_printf ("curl --connect-timeout 5 --retry 2 --limit-rate %dk http://imageshack.us -F xml=yes -F tags=Cairo-Dock -F fileupload=@'%s' -o '%s'", myConfig.iLimitRate, cFilePath, cLogFile);
 
49
        g_print ("%s\n", cCommand);
 
50
        int r = system (cCommand);
 
51
        g_free (cCommand);
 
52
        
 
53
        // On récupère l'URL dans le log :
 
54
        gchar *cURL = NULL, *cThumbnail = NULL;
 
55
        gchar *cContent = NULL;
 
56
        gsize length = 0;
 
57
        g_file_get_contents (cLogFile, &cContent, &length, NULL);
 
58
        
 
59
        gchar *str = g_strstr_len (cContent, -1, "<image_link>");
 
60
        if (str != NULL)
 
61
        {
 
62
                str += 12;  // <image_link>http://bla/bla/bla.png</image_link>
 
63
                gchar *end = g_strstr_len (str, -1, "</image_link>");
 
64
                if (end != NULL)
 
65
                {
 
66
                        cURL = g_strndup (str, end - str);
 
67
                }
 
68
        }
 
69
        
 
70
        str = g_strstr_len (cContent, -1, "<thumb_link>");
 
71
        if (str != NULL)
 
72
        {
 
73
                str += 12;  // <thumb_link>http://bla/bla/bla.png</thumb_link>
 
74
                gchar *end = g_strstr_len (str, -1, "</thumb_link>");
 
75
                if (end != NULL)
 
76
                {
 
77
                        cThumbnail = g_strndup (str, end - str);
 
78
                }
 
79
        }       
 
80
        
 
81
        g_free (cContent);
 
82
        g_remove (cLogFile);
 
83
        g_free (cLogFile);
 
84
        
 
85
        if (cURL == NULL)
 
86
        {
 
87
                return ;
 
88
        }
 
89
        
 
90
        // Enfin on remplit la memoire partagee avec nos URLs.
 
91
        myData.cResultUrls = g_new0 (gchar *, NB_URLS+1);
 
92
        myData.cResultUrls[0] = cURL;
 
93
        myData.cResultUrls[1] = cThumbnail;
 
94
}
 
95
 
 
96
 
 
97
void cd_dnd2share_register_imageshack_backend (void)
 
98
{
 
99
        cd_dnd2share_register_new_backend (CD_TYPE_IMAGE,
 
100
                "imageshack.us",
 
101
                NB_URLS,
 
102
                s_UrlLabels,
 
103
                0,
 
104
                upload);
 
105
}