File: from_url.c

package info (click to toggle)
growl-for-linux 0.8.5-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,464 kB
  • sloc: sh: 4,121; ansic: 3,748; makefile: 74
file content (162 lines) | stat: -rw-r--r-- 4,716 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#include <string.h>
#include <stdbool.h>
#include <stdlib.h>
#include <ctype.h>

#include <glib.h>
#include <gdk-pixbuf/gdk-pixbuf.h>

#ifdef _WIN32
# include <windows.h>
#endif

#include <curl/curl.h>

#include "memfile.h"
#include "from_url.h"

#define REQUEST_TIMEOUT (5)

CURLcode
memfile_from_url(const memfile_from_url_info info) {
  CURL* curl = curl_easy_init();
  if (!curl) return CURLE_FAILED_INIT;

  MEMFILE* body = memfopen();
  long code = 0;
  double csize = -1;
  char* ctype = NULL;

  curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
  curl_easy_setopt(curl, CURLOPT_URL, info.url);
  curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, REQUEST_TIMEOUT);
  curl_easy_setopt(curl, CURLOPT_TIMEOUT, REQUEST_TIMEOUT);
  curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, info.body_writer);
  curl_easy_setopt(curl, CURLOPT_WRITEDATA, body);
  curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1);
  const CURLcode res = curl_easy_perform(curl);

  if (res == CURLE_OK) {
    curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code);

    if (curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &csize) != CURLE_OK)
      csize = -1;
    curl_easy_getinfo(curl, CURLINFO_CONTENT_TYPE, &ctype);
  }

  if (info.code)  *info.code  = code;
  if (info.csize) *info.csize = csize;
  if (info.ctype) *info.ctype = ctype ? strdup(ctype) : NULL;
  if (info.body)  *info.body  = memfrelease(&body);
  memfclose(body);

  curl_easy_cleanup(curl);

  return res;
}

// Some error happened only if returns true.
static bool
gerror_set_or_free(GError** dest, GError* val) {
  if (!val) return false;

  if (dest) *dest = val;
  else g_error_free(val);
  return true;
}

// FIXME: More refactor this function.
static GdkPixbuf*
pixbuf_from_url_impl(const char* ctype, const MEMFILE* raw, GError** error) {
  GdkPixbuf* pixbuf = NULL;
#ifdef _WIN32
  if (ctype && (!strcmp(ctype, "image/jpeg") || !strcmp(ctype, "image/gif"))) {
    char temp_path[MAX_PATH];
    char temp_filename[MAX_PATH];
    GetTempPath(sizeof(temp_path), temp_path);
    GetTempFileName(temp_path, "growl-for-linux-", 0, temp_filename);
    FILE* const fp = fopen(temp_filename, "wb");
    if (fp) {
      fwrite(memfdata(raw), memfsize(raw), 1, fp);
      fclose(fp);
    }
    pixbuf = gdk_pixbuf_new_from_file(temp_filename, NULL);
    DeleteFile(temp_filename);
  } else
#endif
  {
    GError* _error = NULL;
    GdkPixbufLoader* const loader =
      ctype ? gdk_pixbuf_loader_new_with_mime_type(ctype, &_error)
            : gdk_pixbuf_loader_new();
    if (!gerror_set_or_free(error, _error)) {
      if (gdk_pixbuf_loader_write(loader, (const guchar*) memfcdata(raw), memfsize(raw), &_error))
        pixbuf = gdk_pixbuf_loader_get_pixbuf(loader);
      else
        gerror_set_or_free(error, _error);

      gdk_pixbuf_loader_close(loader, NULL);
    }
  }
  return pixbuf;
}

GdkPixbuf*
pixbuf_from_url(const char* url, GError** error) {
  if (!url) return NULL;
  if (!strncmp(url, "x-growl-resource://", 19)) {
    const gchar* const confdir = (const gchar*) g_get_user_config_dir();
    gchar* const resourcedir = g_build_path(G_DIR_SEPARATOR_S, confdir, "gol", "resource", NULL);
    const gchar* const newurl = g_build_filename(resourcedir, url + 19, NULL);
    GdkPixbuf* pixbuf = pixbuf_from_url_as_file(newurl, error);
    g_free(resourcedir);
	return pixbuf;
  }

  MEMFILE* mbody;
  long code;
  double csize;
  char* ctype;
  const CURLcode res = memfile_from_url((memfile_from_url_info){
    .url         = url,
    .body        = &mbody,
    .body_writer = memfwrite,
    .code        = &code,
    .csize       = &csize,
    .ctype       = &ctype,
  });
  if (res != CURLE_OK || code != 200 || !mbody) {
    if (error) *error = g_error_new_literal(G_FILE_ERROR, res, curl_easy_strerror(res));
    free(ctype);
    memfclose(mbody);
    return NULL;
  }

  memfresize(mbody, csize >= 0 ? (size_t) csize : memfsize(mbody));

  GdkPixbuf* const pixbuf = pixbuf_from_url_impl(ctype, mbody, error);

  free(ctype);
  memfclose(mbody);

  return pixbuf;
}

GdkPixbuf*
pixbuf_from_url_as_file(const char* url, GError** error) {
  if (!url) return NULL;
  gchar* newurl;
  if (!strncmp(url, "x-growl-resource://", 19)) {
    const gchar* const confdir = (const gchar*) g_get_user_config_dir();
    gchar* const resourcedir = g_build_path(G_DIR_SEPARATOR_S, confdir, "gol", "resource", NULL);
    newurl = g_build_filename(resourcedir, url + 19, NULL);
    g_free(resourcedir);
  } else
    newurl = g_filename_from_uri(url, NULL, NULL);
  GError* _error = NULL;
  GdkPixbuf* const pixbuf = gdk_pixbuf_new_from_file(newurl ? newurl : url, &_error);
  if (!pixbuf) gerror_set_or_free(error, _error);
  g_free(newurl);
  return pixbuf;
}